diff options
Diffstat (limited to '3753/CH1/EX1.11')
-rw-r--r-- | 3753/CH1/EX1.11/Ex1_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH1/EX1.11/Ex1_11.sce b/3753/CH1/EX1.11/Ex1_11.sce new file mode 100644 index 000000000..261f99c2f --- /dev/null +++ b/3753/CH1/EX1.11/Ex1_11.sce @@ -0,0 +1,14 @@ +//Example number 1.11, Page number 1.38 + +clc;clear;close + + +//Variable declaration +lamda=5.5*10**-7 // in m +d=2.54 // in m +x=1.22// unitless +//Calculation +dtheta=(x*lamda)/d // radian + +//Result +printf("Smallest angular separation of two stars = %0.3e radian",dtheta) |