Hailing from the programming world here, maths has never been my strongest area.
I have a width (TW), and that width must be divided by a given number(N) of smaller widths which decrease incrementally. They should decrease by the same percentage each time(P). The sum of these widths should be equal to TW.
I need to solve for P.
I have been scribbling down on paper for a few hours now, and I am unable to work out the solution.
Please let me know if the equation is solvable (if not then what is missing), and if so how to solve it?
Thanks guys!
You have to clarify your post. Nevertheless I have a suggestion:
$\sum_{t=0}^N w \cdot (1-P)^t=TW$
w is the smaller width.
Proof the equation according to what you want to calculate. The LHS can be expressed by the formula for the partial sum of a series.
$\sum_{t=0}^N w \cdot (1-P)^t= w\frac{1-(1-P)^{N+1}}{P}=TW$
To solve this equation you have to use a approximation procedure.