diff options
Diffstat (limited to '1553/CH23/EX23.3/23Ex3.sce')
-rw-r--r-- | 1553/CH23/EX23.3/23Ex3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1553/CH23/EX23.3/23Ex3.sce b/1553/CH23/EX23.3/23Ex3.sce new file mode 100644 index 000000000..47e4495d2 --- /dev/null +++ b/1553/CH23/EX23.3/23Ex3.sce @@ -0,0 +1,8 @@ +// Chapter 23 Ex3
+
+clc;
+clear;
+close;
+ans=(10/3); n1=sqrt(8);
+x=(n1)^ans; // derived from equation log x to the base n1=ans.
+mprintf("The value of x is %.0f",x);
|