summaryrefslogtreecommitdiff
path: root/1553/CH5/EX5.8/5Ex8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH5/EX5.8/5Ex8.sce')
-rw-r--r--1553/CH5/EX5.8/5Ex8.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH5/EX5.8/5Ex8.sce b/1553/CH5/EX5.8/5Ex8.sce
new file mode 100644
index 000000000..5c03d5dad
--- /dev/null
+++ b/1553/CH5/EX5.8/5Ex8.sce
@@ -0,0 +1,9 @@
+//chapter 5 Ex 8
+clc;
+clear;
+close;
+//let the value to be found out be x and y
+y=32.4/2^2; //after squaring both sides
+x=sqrt((12.3-sqrt(86.49))^2-5); //from the given equation
+mprintf("(i)y=%.1f",y);
+mprintf("\n(ii)x=%.0f",x);