$$ \frac{4^n-1}{n-1} > 4 × 10^6 $$
What is an easy way to solve it by hand? I need to find the minimum integral value of n
to satisfy this equation.
$$ \frac{4^n-1}{n-1} > 4 × 10^6 $$
What is an easy way to solve it by hand? I need to find the minimum integral value of n
to satisfy this equation.
Instead of solving $\frac{4^n-1}{n-1} > 4×10^6$ try solving
$\frac{4^n}{n-1} > 4×10^6 = 4^4 ×5^6$
i.e
$\frac{4^{n-4}}{n-1} > 5^6$
Clearly $n> 10$.
Try a binary search method.
$n = 20$ is too large.
$n=15$ too large.
$n=12$ is too small.
$n=13$ seems to give the answer.
If $n$ has to be an integer, you can find the solution by brute force. Once you have the solution, you can show that it is correct and unique by showing that the function $f(n) = \dfrac{4^n - 1}{n-1}$ is increasing for $n \ge 2$.
If $n$ is allowed to be real, you can use your integer guess as the starting point for Newton's method and find the solution numerically to as much precision as you'd like. Since f(n) is increasing, you can even find a good interval estimate. if $f(a) < 4\times 10^6$ and $f(b) > 4\times 10^6$, you know the solution is in the interval $(a, b)$.
Wolfram Alpha will solve it for you if you write: solve "your inequality". But as you want to solve it by hand you can rearrange it to: $$ n > (4+3\log_2{5}) + \frac{1}{2} \log_2(n-1) - \log\left(1-\frac{1}{2^{2n}}\right)/2\log(2) $$ Now the first term in brackets is about 10.96578, use that value for n in the next log term to get 1.65849... This shows you that n>12.6, and so you get n=13. Note that the last term is too small to worry about.