diff options
Diffstat (limited to '1553/CH23/EX23.7/23Ex7.sce')
-rw-r--r-- | 1553/CH23/EX23.7/23Ex7.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1553/CH23/EX23.7/23Ex7.sce b/1553/CH23/EX23.7/23Ex7.sce new file mode 100644 index 000000000..e2a2323f4 --- /dev/null +++ b/1553/CH23/EX23.7/23Ex7.sce @@ -0,0 +1,8 @@ +// Chapter 23 Ex7
+
+clc;
+clear;
+close;
+x=1; y=2; z=3;
+ans=(1/(log((x)*(y)*(z))/log((x)*(y))))+(1/(log((x)*(y)*(z))/log((z)*(y))))+(1/(log((x)*(y)*(z))/log((x)*(z))));
+mprintf("The answer is %d",ans);
\ No newline at end of file |