summaryrefslogtreecommitdiff
path: root/1322/CH19/EX19.4
diff options
context:
space:
mode:
Diffstat (limited to '1322/CH19/EX19.4')
-rwxr-xr-x1322/CH19/EX19.4/167ex1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1322/CH19/EX19.4/167ex1.sce b/1322/CH19/EX19.4/167ex1.sce
new file mode 100755
index 000000000..2a666a5af
--- /dev/null
+++ b/1322/CH19/EX19.4/167ex1.sce
@@ -0,0 +1,12 @@
+
+//value of (57.86*4.385)
+clear;
+clc;
+close;
+//log(p*q)=log(p)+log(q)
+p=57.86;q=4.385;
+logx=log10(p)+log10(q);
+format(6)
+x=10^logx
+
+