diff options
Diffstat (limited to '1553/CH1/EX1.22/1Ex22.sce')
-rw-r--r-- | 1553/CH1/EX1.22/1Ex22.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH1/EX1.22/1Ex22.sce b/1553/CH1/EX1.22/1Ex22.sce new file mode 100644 index 000000000..55e6b731a --- /dev/null +++ b/1553/CH1/EX1.22/1Ex22.sce @@ -0,0 +1,9 @@ +//chapter 1 Ex 22
+clc;
+clear;
+close;
+//let value to be found is x
+numerator=658^3-328^3;
+denominator=658^2+658*328+328^2;
+x=(numerator/denominator);
+mprintf("x=%.0f",x);
|