summaryrefslogtreecommitdiff
path: root/1322/CH19/EX19.5/167ex2.sce
blob: fdd5f8d63f53e11e284e6257f252eac9c63929ae (plain)
1
2
3
4
5
6
7
8
9
10

//value of (5.672*18.94)/1.758
clear; 
clc;
close;
//log(p*q)=log(p)+log(q) , log(p/q)=log(p)-log(q)
p=5.672;q=18.94;r=1.758;
logx=log10(p)+log10(q)-log10(r);
format(6)
x=10^logx