diff options
Diffstat (limited to '3648/CH9/EX9.6/Ex9_6.sce')
-rw-r--r-- | 3648/CH9/EX9.6/Ex9_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3648/CH9/EX9.6/Ex9_6.sce b/3648/CH9/EX9.6/Ex9_6.sce new file mode 100644 index 000000000..0aac909ec --- /dev/null +++ b/3648/CH9/EX9.6/Ex9_6.sce @@ -0,0 +1,14 @@ + +//Example 9_6
+clc();
+clear;
+//To find wheter the crown is solid gold
+m=1.3 //units in Kg
+g=9.8 //units in meter/Sec^2
+W=m*g //units in Kg meter/Sec^2
+w1=1.14 //units in Kg
+Wapp=w1*g //units in Kg meter/Sec^2
+Pf=1000 //units in Kg/meter^3
+P=Pf*(W/(W-Wapp)) //units in Kg/meter^3
+
+printf("Density of gold in given substance is P=%d Kg/Meter^3\n But the density of original gold is 19,300 Kg / Meter^3 so the Crown is either hallow or made of something",P)
|