Basic question :)

Nakani

New member
Joined
Jan 23, 2020
Messages
1
So, I have a fairly easy problem-solving question. But I don't fully get the 'best' way to solve it, other than guessing. It goes like this:
"How much is X*Y if X+Y=45, X-Y=27, and X/Y=4?"
Anyone know how to efficiently solve it? Maybe I'm just stupid, but I would appreciate the help! :)
 
You put this under arithmetic, even though you used variables to state it. I'll assume you don't want to use algebra to solve it (though that might be the best way).

You want two numbers, X and Y, which differ by 27 and sum to 45. If you reduced the larger one (X) by 27, the sum would be reduced by 27: 45 - 27 = 18. But that would be the sum of two copies of Y; so Y must be 9. (You could do the same thinking by drawing pictures.)

What is X, then?

And is it true that X/Y = 4? If not, then this would be an invalid problem!

Finally, what is the product XY?

Since there is more information than you need, there are several ways to solve this, with or without algebra, depending on which facts you choose to start with. I wouldn't say any of them is "best".
 
It looks like algebra was probably the intended way to solve this, since it works out so cleanly. It is a system of equations.
Take two equations:
[MATH]x + y = 45[/MATH][MATH]x - y = 27[/MATH]​

Solve for [MATH]x[/MATH] by adding both equations to eliminate [MATH]y[/MATH]:
[MATH]2x = 72[/MATH][MATH]x = 36[/MATH]​

Solve for [MATH]y[/MATH] by substituting [MATH]x[/MATH] in one of the equations:
[MATH]36 + y = 45[/MATH][MATH]y = 9[/MATH]​

Verify:
[MATH]x / y = 4 = 36 / 9[/MATH]​
 
x/y = 4 means that x=4y. That is whatever y equals, x is 4 times that.
So pick values for y
y=1, then x=4. The sum is 5, NOT 45.
y=2, then x=8. The sum is 10, not 45. We are moving in the right direction but still far away from 45. So don't try y=3, but maybe try y=7.
y=7, then x=28. The sum is 35, still too low.
y=8, x=32. Sum is 40.
y=9, x= 36. The sum is 45. Now we check to see if the difference is 27. 36-9 = 27.
The answer is y=9 and x=36.
 
We could square the first two equations to get:

[MATH]X^2+2XY+Y^2=45^2[/MATH]
[MATH]X^2-2XY+Y^2=27^2[/MATH]
Subtract the latter from the former:

[MATH]4XY=45^2-27^2=72\cdot18[/MATH]
Divide by 4 to get:

[MATH]XY=18^2=324[/MATH]
 
I think if you follow the following steps, you can easily get answer-
1) Add 2 equations X+Y=45 & X-Y=27, Y is eliminated & you will get 2X=72, & X=36.
2) Now consider, X/Y=4. Here, replace the value of X=36, you will get Y=9.
3)Thus, you got both the values, X=36 & Y=9. Now, it's easy to calculate X*Y=36*9=324.
 
Top