blob: f03212a57ce35390d9d12f3c89172a69211355d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
////Given
m=10*10**-3 //mass of a ball in kg
v=1 //Speed in m/s
h=6.63*10**-34 //Js
//Calculation
V=h/(m*v) //Wavelength
//Result
printf("\n de broglie wavelength is %e m",V)
printf("\n This wavelength is negligible compared to the dimensions of the ball. therefore its effect can not be observed.")
|