I have the following function to simplify and solve but there definitely is something wrong with my method as the initial conditions do not work with my final result so if anyone could pinpoint what I'm doing wrong, I would really appreciate it.
Solving: $\frac{(N-0.5)^4}{N^2(-N+1)^2}=Ae^t$ where A is a constant.
Essentially to solve for N my tutor recommended using the substitution $k=N-\frac{1}{2}$.
$\Rightarrow \frac{k^4}{(k+\frac{1}{2})^2(-k+\frac{1}{2})^2}=Ae^t$
$\Rightarrow \frac{k^2}{(k+(\frac{1}{2})(-k+\frac{1}{2})}=\sqrt{Ae^t}$
$\Rightarrow k^2=(k+\frac{1}{2})(-k+\frac{1}{2})\sqrt{Ae^t}$
$\Rightarrow k^2=(\frac{1}{4}-k^2)\sqrt{Ae^t}$
$\Rightarrow (1-\sqrt{Ae^t})k^2-\frac{1}{4}\sqrt{Ae^t}=0$
Then solving this like a quadratic gave me:
$k= \pm\frac{(\sqrt{Ae^t})^\frac{1}{4}}{2\sqrt(Ae^t)^\frac{1}{4}+1}$
Subbing back $N$ we get the following formula:
$N= \frac{1}{2}\pm\frac{(\sqrt{Ae^t})^\frac{1}{4}}{2\sqrt(Ae^t)^\frac{1}{4}+1}$
However, I was given the initial condition $N(0)=2$ which does not hold for either of my equations, so I have gone wrong somewhere but I'm not sure where personally. Any insight would be much appreciated.