Calculate the power, given all other numbers in an equation

788 Views Asked by At

$$100 = 200(2)^x$$

Given all numbers in the equation, how do I find $x$?

4

There are 4 best solutions below

1
On BEST ANSWER

If you divide both sides by 200 you end up with $$ \frac12 = 2^x $$ At this point you have to remember that $\frac12$ is exactly how $2^{-1}$ is defined, such that $x=-1$ is a solution.

3
On

Hint : Take the logarithm on both sides and use $log(a^n)=n\ log(a)$ and $log(ab)=log(a)+log(b)$

1
On

cancalling with $100$ we get $$2^{-1}=2^x$$ thus we get $$x=-1$$

0
On

Notice, we have $$100=200\cdot 2^x$$ Diving both the sides by $100$ we get $$\frac{100}{100}=\frac{200}{100}\cdot 2^x$$

$$1=2\cdot2^x$$ $$1=2^{x+1}$$ $$2^0=2^{x+1}$$ Comparing powers on both the sides, we get $$x+1=0\iff x=-1$$