diff options
Diffstat (limited to '1553/CH10/EX10.16/10Ex16.sce')
-rw-r--r-- | 1553/CH10/EX10.16/10Ex16.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH10/EX10.16/10Ex16.sce b/1553/CH10/EX10.16/10Ex16.sce new file mode 100644 index 000000000..9b6a988d0 --- /dev/null +++ b/1553/CH10/EX10.16/10Ex16.sce @@ -0,0 +1,12 @@ +//chapter 10 Ex 16
+
+clc;
+clear;
+close;
+JtoW=40/100; JtoS=20/100; amtRemain=12000; amtRemainPercent=1-JtoW;
+//let initial amount be x
+amtJtoS=3*JtoS*amtRemainPercent;
+bal=amtRemainPercent-amtJtoS;
+amtBank=(1/2)*bal;
+initialAmt=amtRemain/amtBank;
+mprintf("Mr. Jones initially had Rs.%d with him",initialAmt);
|