This is my problem:
I need x or y for the triangle area that forms between the vertical axis(y) and the function y=100+2x where the area is equal to 2500.
so I used for condition to the linear function:
knowing that the triangle area in this case should be like:
x*y/2=area, so:
x-100*y/2=2500
x-100*y=5000
y=5100/x
and then:
5100/x=100+2x
5100=100+2x*x
5000=2x^2
sqrt(2500)=x
50=x
the weird thing is that works for any area, and gives me the correct result for what I'm looking for, wich is x=50 and y=f(50)=200, if the area is calculated as is shown in the condition: 200-100*50/2=2500 !
5100/x=100+2x [http://www.wolframalpha.com/input/?i=5100%2Fx%3D100%2B2x][1]
it outputs x=-5 (5+sqrt(127)) and x=5 (-5+sqrt(127))
how can I get the same results on wolframalhpa ?
thank you ! (:
You made an error when multiplying $x$ on both sides.
You had $$\frac{5100}{x} = 100 + 2x$$
In order to remove the $x$ from the denominator you correctly decided to multiply by $x$ on both sides. However, when you do this you should get $$x \frac{5100}{x} = x(100 + 2x)$$ And multiplying $x$ through the equation becomes $$ 5100 = 100x + 2x^2$$ and now I'm sure you can solve it!
EDIT: To address the edit in your question, be careful when setting up the area of this triangle because it is actually $$\frac{1}{2} x(y-100)$$ since the bottom part of our triangle is located at $y = 100$.
And to solve this area to be 2500, we would plug in $$ \frac{1}{2} x(y-100) = 2500$$ And we know that $y = 100 + 2x$, so plugging that in for $y$ gives us $$ \frac{1}{2}x(100 + 2x - 100) = 2500$$ and canceling out the $100$s and multiplying through by the $x$ and $\frac{1}{2}$ gives $$ x^2 = 2500$$ or $x = 50$.