Factorisation would help

Algebra Level 2

{ x y + 2 x + y = 28 x z + 3 x + z = 37 y z + 3 y + 2 z = 42 \begin{cases} xy+2x+y=28\\ xz+3x+z=37\\ yz+3y+2z=42 \end{cases} Positive reals x x , y y , and z z satisfy the equation above. Find x + y + z x+\sqrt y+z .


The answer is 11.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Mahdi Raza
Jun 12, 2020

\[\begin{cases} xy + 2x + y {\color{red}{ +2}} = 28 {\color{red}{ +2}} \\ xz + 3x + z {\color{green}{ +3}} = 37 {\color{green}{ +3}} \\ yz + 3y + 2z {\color{blue}{ +6}} = 42 {\color{blue}{ +6}} \end{cases}

\implies

\begin{cases} (x+1)(y+2) = 30 &\ldots {\color{red}{(1)}} \\ (x+1)(z+3) = 40 &\ldots {\color{green}{(2)}} \\ (y+2)(z+3) = 48 &\ldots {\color{blue}{(3)}} \end{cases} \]


( x + 1 ) ( y + 2 ) ( x + 1 ) ( z + 3 ) ( y + 2 ) ( z + 3 ) = ( 1 ) ( 2 ) ( 3 ) ( x + 1 ) 2 = 30 40 48 ( x + 1 ) 2 = 25 x = 4 \begin{aligned} \dfrac{(x+1)(y+2) \cdot (x+1)(z+3)}{(y+2)(z+3)} &= \dfrac{(1)(2)}{(3)} \\ (x+1)^2 &= \dfrac{30 \cdot 40}{48} \\ (x+1)^2 &= 25 \\ x &= 4 \end{aligned}

Similarly, all the values can be found by either substituting or by doing the method above. We get y = 4 , z = 5 y = 4, z = 5

Answer = x + y + z = 4 + 4 + 5 = 11 \begin{aligned} \text{Answer } &= x+ \sqrt{y} + z \\ &= 4+ \sqrt{4} + 5 \\ &= \boxed{11} \end{aligned}

@Chew-Seong Cheong , why did you delete your solution?

Mahdi Raza - 1 year ago

(everything copied from one of your solutions and only changed values)

for x in range(0,100):

    for y in range(0, 100):

          for z in range(0, 100):

               if (x*y+2*x+y==28):

                   if (x*z+3*x+z==37):

                       if(y*z+3*y+2*z==42):

                         print(x,y,z)

Output:

4 4 5

(and this is how I "wrote" my first python code)

Vinayak Srivastava - 12 months ago

Log in to reply

Nice, Keep coding!

Mahdi Raza - 12 months ago
Jeff Giff
Jun 12, 2020

The set of equations are equal to { x y + 2 x + y + 2 = ( x + 1 ) ( y + 2 ) = 30 x z + 3 x + z + 3 = ( x + 1 ) ( z + 3 ) = 40 y z + 3 y + 2 z + 6 = ( y + 2 ) ( z + 3 ) = 48. \begin{cases} xy+2x+y+2=(x+1)(y+2)=30\\ xz+3x+z+3=(x+1)(z+3)=40\\ yz+3y+2z+6=(y+2)(z+3)=48. \end{cases} Substitute a , b , c a,b,c into x + 1 , y + 2 , z + 3 x+1,y+2,z+3 . With some reasoning, we get ( a b c ) 2 = 30 × 40 × 48 = 57600 , a b c = 240 , (abc)^2=30\times40\times48=57600, abc=240, So a = a b c b c = 5 , e t c . a=\frac{abc}{bc}=5, etc. and we get a = 5 , b = 6 , c = 8 , a=5, b=6, c=8, i.e. x = 4 , y = 4 , z = 5. x=4,y=4,z=5.
So the answer is 4 + 4 + 5 = 4 + 2 + 5 = 11 . 4+\sqrt 4+5=4+2+5=\boxed{11}.
This method can be used in general for different values and more unknowns, and might give multiple sets of answers.

Nice! @Jeff Giff More of these type of questions - I've got your back!

P.S Can I also submit my idea for the next question (of this type)?

Log in to reply

Thanks! Feel free to give any suggestions! :)

Jeff Giff - 1 year ago

Log in to reply

Can we do like 4 equations in the format above but the final answer is... imaginary! What do you think?

Log in to reply

@A Former Brilliant Member Good idea! :)

Jeff Giff - 1 year ago

The first half of your solution is same as mine, the latter differs. Nice Problem!

Mahdi Raza - 1 year ago

Log in to reply

Thank you for your appreciation! :)

Jeff Giff - 1 year ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...