diff options
Diffstat (limited to '3769/CH22/EX22.3/Ex22_3.sce')
-rw-r--r-- | 3769/CH22/EX22.3/Ex22_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3769/CH22/EX22.3/Ex22_3.sce b/3769/CH22/EX22.3/Ex22_3.sce new file mode 100644 index 000000000..b20195b70 --- /dev/null +++ b/3769/CH22/EX22.3/Ex22_3.sce @@ -0,0 +1,17 @@ +clear +//Given +l=7500*10**-10 +d=1.0*10**-6 +c=20 + +//Calculation +// +a=l/d +b=asin(a)*180/3.14 +A=2*b +x=c*tan(a*3.14/180.0) +w=2*x + +//Result +printf("\n (i) Width of central maximum is %0.0f Degree",A) +printf("\n (ii) Width of central maximum is %0.0f cm",w*10**2) |