diff options
Diffstat (limited to '2234/CH3/EX3.2')
-rwxr-xr-x | 2234/CH3/EX3.2/ex3_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2234/CH3/EX3.2/ex3_2.sce b/2234/CH3/EX3.2/ex3_2.sce new file mode 100755 index 000000000..358d78a08 --- /dev/null +++ b/2234/CH3/EX3.2/ex3_2.sce @@ -0,0 +1,8 @@ +clc;
+f=80; //focal length in cm
+f1=20; //focallength of first lens in cm
+f2=(80/3); //using (1/F)=(1/f1)+(1/f2)
+P=(100/f); //power in D
+P1=100/20; //power of first lens
+P2=P1-P; //power in D
+disp(P2,"Power in D = "); //displaying result
\ No newline at end of file |