summaryrefslogtreecommitdiff
path: root/1553/CH1/EX1.21/1Ex21.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH1/EX1.21/1Ex21.sce')
-rw-r--r--1553/CH1/EX1.21/1Ex21.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH1/EX1.21/1Ex21.sce b/1553/CH1/EX1.21/1Ex21.sce
new file mode 100644
index 000000000..d11d29f8c
--- /dev/null
+++ b/1553/CH1/EX1.21/1Ex21.sce
@@ -0,0 +1,9 @@
+//chapter 1 Ex 21
+clc;
+clear;
+close;
+//let value to be found is x
+numerator=789*789*789+211*211*211;
+denominator=789*789-789*211+211*211;
+x=(numerator/denominator);
+mprintf("x=%.0f",x);