From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1847/CH4/EX4.18/Ch04Ex18.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1847/CH4/EX4.18/Ch04Ex18.sce (limited to '1847/CH4/EX4.18') diff --git a/1847/CH4/EX4.18/Ch04Ex18.sce b/1847/CH4/EX4.18/Ch04Ex18.sce new file mode 100755 index 000000000..2a46ccc3e --- /dev/null +++ b/1847/CH4/EX4.18/Ch04Ex18.sce @@ -0,0 +1,14 @@ +// Scilab Code Ex4.18: : Page-4.34 (2009) +clc; clear; +theta = 15.2; // Angle through which plane of polarization is rotated, degrees +S = 65; // Specific rotation of sugar solution, degrees +l = 15; // Length of sugar, cm +// As S = 10*theta/(l*c), solving for c +c = 10*theta/(l*S); // Concentration of sugar, g/cc + +printf("\nThe strength of sugar solution = %4.2f g/cc", c); + +// Result +// The strength of sugar solution = 0.16 g/cc + + -- cgit