summaryrefslogtreecommitdiff
path: root/1847/CH4/EX4.19/Ch04Ex19.sce
diff options
context:
space:
mode:
Diffstat (limited to '1847/CH4/EX4.19/Ch04Ex19.sce')
-rwxr-xr-x1847/CH4/EX4.19/Ch04Ex19.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1847/CH4/EX4.19/Ch04Ex19.sce b/1847/CH4/EX4.19/Ch04Ex19.sce
new file mode 100755
index 000000000..4f468f6a9
--- /dev/null
+++ b/1847/CH4/EX4.19/Ch04Ex19.sce
@@ -0,0 +1,16 @@
+// Scilab Code Ex4.19:: Page-4.34 (2009)
+clc; clear;
+theta = 15; // Angle through which plane of polarization is rotated, degrees
+S = 69; // Specific rotation of sugar solution, degrees
+l = 10; // Length of sugar, cm
+V = 50; // Volume of the tube, cc
+// As S = 10*theta/(l*c), solving for c
+c = 10*theta/(l*S); // Concentration of sugar, g/cc
+M = c*V; // Mass of sugar in solution, g
+
+printf("\nThe quantity of sugar contained in the tube in the form of solution = %5.2f g", M);
+
+// Result
+// The quantity of sugar contained in the tube in the form of solution = 10.87 g
+
+