I've done a bit of calculus/diff.eq./lin.alg. in the past. But that was a long time ago and to be honest I was always better at the actual applying than the pure math.
Anyway, I have a function which I am trying to get into a certain form. I want to do this by isolating/extracting one variable.
I've been trying on paper, Mathematica, Wolfram|Alpha and it's just not making sense to me anymore.
Here's the function:
$$((x+y)^n - x^n)^{1/n}$$
And I'm trying to extract the x out of this so I get something of the form:
$$xa^\text{exponent}$$
Whatever the exponent is or 'a' is or if x has any +something/-something/divided by/exponents, or even if 'a' still contains x's I want x times something to an exponent.
What I have come up with myself so far is driving me mad: I get two forms for 'a' depending on if I do
$$(xa)^{1/n}$$
or
$$x(a^{1/n})$$
As I said, I am really rusty and tried a lot of things which I think are oh-so wrong, but this is what I got trying to extracate x:
$$x^n ((1+((1/x)y)^n -1)^{1/n}$$
OR
$$x^n ((((1/x) + ((1/(x^n))y))^n)-1)^{1/n}$$
I'm not too proud to say I even got:
$$x((1+(1/x)y)^n - x(1/n))^{1/n}$$
I'm doing this all for a hobby programming project of mine (lead android programmer) and I just can't get it to work out ... plus I would like to be sure the answer is correct!
If it helps, $x$,$y$ and $n$ are all positive integers. $y<x$ and $y\geq 1$, $x\geq3$ and $n\geq2$.
Your given equation is equivalent to $$\sqrt[n]{\binom{n}{1} x^{n-1} y + \binom{n}{2} x^{n-2}y^2 + \cdots + \binom{n}{n} y^n}$$ which you could rewrite into $$x \left[ \binom{n}{1} \frac{y}{x} + \binom{n}{2} \frac{y^2}{x^2} + \cdots + \binom{n}{n} \frac{y^n}{x^n} \right]^{1/n}$$ or possibly more usefully as $$ x \left[ \left( \frac{y}{x} + 1\right)^n - 1 \right]^{1/n} $$ but I doubt there's any better simplification.