diff options
Diffstat (limited to '1847/CH4/EX4.20/Ch04Ex20.sce')
-rwxr-xr-x | 1847/CH4/EX4.20/Ch04Ex20.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1847/CH4/EX4.20/Ch04Ex20.sce b/1847/CH4/EX4.20/Ch04Ex20.sce new file mode 100755 index 000000000..da6261d32 --- /dev/null +++ b/1847/CH4/EX4.20/Ch04Ex20.sce @@ -0,0 +1,15 @@ +// Scilab Code Ex4.20:: Page-4.35 (2009)
+clc; clear;
+theta = 8; // Angle through which plane of polarization is rotated, degrees
+M = 10; // Amount of sugar, g
+l = 14; // Length of the tube, cm
+V = 44; // Volume of sugar solution, cc
+c = M/V; // Concentration of sugar, g/cc
+S = 10*theta/(l*c); // Specific rotation of sugar solution from the given data, degrees
+
+printf("\nThe specific rotation of sugar solution from the given data = %4.1f degrees", S);
+
+// Result
+// The specific rotation of sugar solution from the given data = 25.1 degrees
+
+
|