summaryrefslogtreecommitdiff
path: root/1847/CH4/EX4.24
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1847/CH4/EX4.24
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1847/CH4/EX4.24')
-rwxr-xr-x1847/CH4/EX4.24/Ch04Ex24.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1847/CH4/EX4.24/Ch04Ex24.sce b/1847/CH4/EX4.24/Ch04Ex24.sce
new file mode 100755
index 000000000..ec8935fbd
--- /dev/null
+++ b/1847/CH4/EX4.24/Ch04Ex24.sce
@@ -0,0 +1,16 @@
+// Scilab Code Ex4.24:: Page-4.36 (2009)
+clc; clear;
+l = 17; // Length of the tube, cm
+V = 37; // Volume of sugar solution, cc
+theta = 15; // Angle of rotation of the plane of polarization, degrees
+S = 68; // Specific rotation of sugar solution, degrees
+// As S = 10*theta/(l*c), solving for c
+c = 10*theta/(l*S); // Concentration of sugar solution, g/cc
+m = c*V; // Mass of sugar in the solution contained in the tube, g
+
+printf("\nThe mass of sugar in the solution contained in the tube = %3.1f g", m);
+
+// Result
+// The mass of sugar in the solution contained in the tube = 4.8 g
+
+