To whom it may concern,
It's been forever since I learned trig and I've not used it sense.
I'm trying to isolate "x" in terms of "y" from the following: y=x*arcsin(x/4)
and y=x(2*arcsin(x/4)-sin(2*arcsin(x/4)))
Thanks!
I think you want to
solve for x in terms of y. Am I right? But given a pair of equations in two variables, typically you will solve for specific values of each variable (that is, x = this and y = that), rather than y = f(x). Perhaps you will need to tell us where the equations came from.
When I see x both inside and outside a transcendental function, as in y=
x*arcsin(
x/4), I expect algebra not to work too well (though it might). Algebra can't do everything.
My first thought here is to temporarily define a third variable, z = arcsin(x/4), just to hide that function. Then the system becomes
y = xz
y = x(2z - sin(2z))
That doesn't help a lot, but it does make it easy to see that y can be eliminated by setting the two expressions equal, so we have to solve
xz = x(2z - sin(2z))
Subtracting xz from both sides and simplifying, we find that
x(z - sin(2z)) = 0
Ah! This tells you that either x must have a particular value, or z must have a particular value (which can be solved for x). I think the latter can only be solved numerically -- the difficulty actually lies with that sine, not the arcsin!
There are probably quicker ways to approach it, but this is my train of thought.