summaryrefslogtreecommitdiff
path: root/2855/CH1/EX1.13/Ex1_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '2855/CH1/EX1.13/Ex1_13.sce')
-rwxr-xr-x2855/CH1/EX1.13/Ex1_13.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2855/CH1/EX1.13/Ex1_13.sce b/2855/CH1/EX1.13/Ex1_13.sce
new file mode 100755
index 000000000..f397c1c8a
--- /dev/null
+++ b/2855/CH1/EX1.13/Ex1_13.sce
@@ -0,0 +1,12 @@
+//Example no 1-13
+//page no. 27
+clc;
+clear;
+//I1/I0=cos(w)^2
+//Given I1/I0=0.55
+
+k=sqrt(0.55); //from above formulae
+printf("\n cos w is %0.2f ",k);
+printf("\n The angle bw polarizer and analyser , w is %0.0f degree",acos(k)*180/%pi);//Result
+
+