Lesson Find the numbers using system of equations

Algebra ->  Customizable Word Problem Solvers  -> Numbers -> Lesson Find the numbers using system of equations      Log On

Ad: Over 600 Algebra Word Problems at edhelper.com


   


This Lesson (Find the numbers using system of equations) was created by by ikleyn(52756) About Me : View Source, Show
About ikleyn:

Find the numbers using system of equations


Problem 1

If the larger of two numbers is divided by the smaller,  the quotient is  7  and the remainder is  19.
But if  3  times the greater is divided by twice the smaller,  the quotient is  11  and the remainder is  19.
What are the numbers?

Solution

Let x be the larger of the two numbers and y be the smaller.

Then the condition gives you these two equations


x = 7y + 19,           (1)

3x = 11*(2y) + 19.     (2)


Substitute (1) into (2). You will get


3*(7y + 19) = 22y + 19,    or

21y + 57 = 22y + 19  ====>  y = 57 - 19 = 38.


Then  x = 7*y + 19 = 7*38 + 19 = 285.


Answer.  The larger number is 285.  The smaller number is 38.


Check.   Check eq(1):  7*y+19 = 7*38+19 = 285 = x.             ! Correct !

         Check eq(2):  3x = 3*285 = 11*2*38+19 = 11*(2x)+19.   ! Correct !

Problem 2

Three times the smaller of two numbers plus  2  times the larger number is  27.
Four times the smaller number minus  2  times the larger number is  -6.  Find the numbers.

Solution

Let x be the smaller and y be the greater number.


Then your system is


3x + 2y = 27,    (1)
4x - 2y = -6.    (2)


To solve it, add the equations (both sides).  You will get

3x + 4x = 27 - 6,    or

7x = 21  ====>    x = 21/7 = 3.


Then from eq(1),  2y = 27 - 3x = 27 - 3*3 = 18  and  y = 18/2 = 9.


Answer.  The smaller number is 3.  The greater number is 9.

Problem 3

The tens digit of a two digit number is  2  less than the units digit.
The difference between the squares of the digits is  32.  What is the number ?

Solution

Let x = the ones digit and y = the tens digit.


You are given


    x - y = 2           (1)

    x^2 - y^2 = 32      (2)



Equation (2) is the same as


    (x-y)*(x+y) = 32.    (3)


In equation (3), replace the factor (x-y) by 2, based on the given (1). You will get

    2*(x+y) = 32,

    x + y = 16.           (4)



We are at the finish line now . . . 

Add equations (1) and (2). You will get


    2x = 16 + 2 = 18,


hence,  x = 18/2 = 9.


Then  y is 2 less than 9, i.e. 7.


ANSWER.  The two-digit number is 79.


CHECK.   9^2 - 7^2 = 81 - 49 = 32.    ! Correct !

Problem 4

The sum of three numbers is  14.  The sum of twice the first number,  4  times the second number,  and  5  times the third number is  62.
The difference between  4  times the first number and the second number is negative  1.  Find the three numbers.

Solution

Let x, y and z be the 1-st, the 2-nd and the 3-rd numbers, respectively.

Then from the condition you have these three equations in 3 unknowns


 x +  y +  z = 14,        (1)
2x + 4y + 5z = 62,        (2)
4x -  y      = -1.        (3)


From eq(3), express  y = 4x +1  and substitute it into eq(1) and eq(2). You will get


 x + (4x+1)  +  z = 14    (1')
2x + 4(4x+1) + 5z = 62    (2')


Simplify and write it in the standard form


 5x +  z = 13             (1'')
18x + 5z = 58             (2'')


Congratulations !  You reduced the 3x3-system to 2x2-system, which is much easier to solve.


To solve it, apply Elimination method.  For it, multiply eq(1'') by 5  (both sides). You will get


25x + 5z = 65             (1''')
18x + 5z = 58.            (2''')


Now subtract eq((1''')  from eq(2'''). You will get


7x = 65 - 58 = 7  ====>  x = 1.


Then from eq(1'')  z = 13-5x = 13 - 5*1 = 8.


Finally,  y = 14 - x - z = 14 - 1 - 8 = 5.


Answer.  x = 1;  y = 5;  z = 8.

Problem 5

The sum of three numbers is  1.  If the second number is subtracted from the sum of the first and third numbers,  the result is  -1.
If the third number is subtracted from the sum of the first and second numbers,  the result is  -9.  Find the three numbers.

Solution

Let the numbers be x, y and z.


Then the problem says


x + y + z =  1      (1)
x - y + z = -1      (2)
x + y - z = -9      (3)


Do not be afraid.  Simply subtract equation (2) from equation (1).  The terms  "x"  and  "z"  will cancel each other and you will get

    2y     = 1 - (-1) = 2   =====>  y = 2/2 = 1.


Next subtract equation (3) from equation (1).  The terms "x" and "y" will cancel each other and you will get


       2z = 1 - (-9) = 10   =====>  z = 10/2 = 5.


As the last step, substitute  y= 1  and  z= 5 into equation (1). You will get


x + 1 + 5 = 1  =====>  x = -5.


Answer.  x= -5;  y= 1;  z= 5.

Problem 6

The sum of three numbers is  8.  The first number minus the second plus the third is  4.
The first minus the third is  2  more than the second.  Find the numbers.

Solution

x + y + z = 8     (1)
x - y + z = 4     (2)
x - z = y + 2     (3)


Subtract  equation (2) from equation (1). You will get


2y = 4  ====>  y = 4/2 = 2.


Substitute y= 2 into equations  (1)  and  (3).   You will get


x + z = 6     (4)
x - z = 4     (5)


Add equations (4) and (5).  You will get


2x = 10  ====>  x = 10/2 = 5.


Substitute  x= 5  and  y= 2 into equation (1). You will get


5 + 2 + z = 8  ====>  z = 1.


Answer.  x= 5,  y= 2,  z= 1.

Problem 7

The difference between two positive integers is  5  and the difference between their reciprocals is   5%2F24.   Find the integers.

Solution

x - y = 5            (1)

1%2Fy - 1%2Fx = 5%2F24         (2)


From equation (2),

%28x+-+y%29%2F%28xy%29 = 5%2F24.


Replace here x-y in the numerator by 5, based on (1).  You will get

    5%2Fxy = 5%2F24,


which implies

    xy = 24.    (3).



Now the problem is to find two positive integers with the difference 5 and the product 24.


It requires 5 seconds to guess the ANSWER mentally :  the numbers are  3 and 8.



Or, if you want to solve it algebraically, write this quadratic equation

    x*(x-5) = 24


and complete the solution by a standard way.


My other lessons in this site for word problems on finding numbers are
    - Simple and simplest word problems on finding numbers solved by different methods
    - Find the number using a single linear equation
    - Find the number using quadratic equation
    - Digit problems - Find the number using system of equations
    - Entertainment problems on finding numbers
    - OVERVIEW of lessons for word problems on finding numbers

Use this file/link  ALGEBRA-I - YOUR ONLINE TEXTBOOK  to navigate over all topics and lessons of the online textbook  ALGEBRA-I.


This lesson has been accessed 1798 times.