This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
very clean solution!
Log in to reply
Thanx @Marco Faustini :D Yours is the first positive comment on my solution.
Thanx a lot ^_^.
Evidently done!
Well done :-)
Well done! :-)
nice solution
brilliant solution
Nicely done!!
Nicely done
Holy cow,
x=6^2.5 right?
so x=6^(3/2)
x= 216^1/2
x= 6√6 Am I wrong?
Did it vai programming
using namespace std;
int main() {
double a,x,val;
cout<<"Write the base number "; cin>>a; cout<<endl;
cout<<"Write down the number whose log you want "; cin>>x; cout<<endl<<endl;
val=(log(x))/(log(a)); cout<<" log of "<<x<<" is "<<val<<endl;
double val2;
cout<<"Now if you want to calculate x from value then write down 1st the value "; cin>>val;
x=pow(a,val);
cout<<endl<<endl<<" x = "<<x<<endl;
return 0;
}
X=6^2.5 6^2.5 =6^5/2 = 6^2+1/2 -> x= 6^2•6^1/2 :. X=36√6
X = 6^(2.5) = 6^(2) x 6^(1/2) = 36sqrt(6)
log
6
x
=
2
.
5
x
=
6
2
.
5
and
6
2
.
5
=
6
2
x
6
0
.
5
=
3
6
6
by the algo 6^2.5=6^2 6^1/2=36 6^1/2
6 powered by 2.5, it just same like 6^2 x 6^0.5 = 36 V6 (V = root)
According to the relation,
x = 6^2.5 x = 6^(2+0.5) x = 6².6^(1/2) x = 36 × √6 x = 36√6
log N to the base a <=> a^x=N By using this, we get...., 6^2.5= x => x= 36 * 6^1/2
Problem Loading...
Note Loading...
Set Loading...
By definition of logarithm we get
x = 6 2 . 5 = 6 2 + 0 . 5 = 6 2 . 6 0 . 5 = 6 2 . 6 2 1 = 3 6 6
Hence the answer.