blob: 323f5db240b300f2891fdf472e77c08c27dd5561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
////Given
p=0.2*10**-3*10 //Kg m/s
h=1.054*10**-34
x=1*10**-2 //m
//Calculation
p1=h/x
a=p1/p
//Result
printf("\n uncertainty in the angle of emergence %e radians",a)
printf("\n 1.1*10**-24 seconds of arc")
|