For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

By the end of this section you should be able to:

  1. Understand the diffrence between unique solutions, no solutions, and infinitely many solutions.
  2. Reconize when a matrix has a unique solutions, no solutions, or infinitely many solutions.
  3. Reconize when a matrix has a unique solutions, no solutions, or infinitely many solutions using python.

The example shown previously in this module had a unique solution. The structure of the row reduced matrix was

\[\begin{split}\begin{vmatrix} 1 & 1 & -1 & | & 5 \\ 0 & 1 & -5 & | & 8 \\ 0 & 0 & 1 & | & -1 \end{vmatrix}\end{split}\]

and the solution was

\[x = 1\]

\[y = 3\]

\[z = -1\]

As you can see, each variable in the matrix can have only one possible value, and this is how you know that this matrix has one unique solution

Let’s suppose you have a system of linear equations that consist of:

\[x + y + z = 2\]

\[y - 3z = 1\]

\[2x + y + 5z = 0\]

The augmented matrix is

\[\begin{split}\begin{vmatrix} 1 & 1 & 1 & | & 2 \\ 0 & 1 & -3 & | & 1 \\ 2 & 1 & 5 & | & 0 \end{vmatrix}\end{split}\]

and the row reduced matrix is

\[\begin{split}\begin{vmatrix} 1 & 0 & 4 & | & 1 \\ 0 & 1 & -3 & | & 1 \\ 0 & 0 & 0 & | & -3 \end{vmatrix}\end{split}\]

As you can see, the final row states that

\[0x + 0y + 0z = -3\]

which impossible, 0 cannot equal -3. Therefore this system of linear equations has no solution.

Let’s use python and see what answer we get.

import numpy as py from scipy.linalg import solve A = [[1, 1, 1], [0, 1, -3], [2, 1, 5]] b = [[2], [1], [0]] x = solve(A,b) x

--------------------------------------------------------------------------- LinAlgError Traceback (most recent call last) <ipython-input-1-afc47691740d> in <module>() 5 b = [[2], [1], [0]] 6 ----> 7 x = solve(A,b) 8 x C:\Users\Said Zaid-Alkailani\Anaconda3\lib\site-packages\scipy\linalg\basic.py in solve(a, b, sym_pos, lower, overwrite_a, overwrite_b, debug, check_finite, assume_a, transposed) 217 return x 218 elif 0 < info <= n: --> 219 raise LinAlgError('Matrix is singular.') 220 elif info > n: 221 warnings.warn('scipy.linalg.solve\nIll-conditioned matrix detected.' LinAlgError: Matrix is singular.

As you can see the code gives us an error suggesting there is no solution to the matrix.

Let’s suppose you have a system of linear equations that consist of:

\[-3x - 5y + 36z = 10\]

\[-x + 7z = 5\]

\[x + y - 10z = -4\]

The augmented matrix is

\[\begin{split}\begin{vmatrix} -3 & -5 & 36 & | & 10 \\ -1 & 0 & 7 & | & 5 \\ 1 & 1 & -10 & | & -4 \end{vmatrix}\end{split}\]

and the row reduced matrix is

\[\begin{split}\begin{vmatrix} 1 & 0 & -7 & | & -5 \\ 0 & 2 & -3 & | & 1 \\ 0 & 0 & 0 & | & 0 \end{vmatrix}\end{split}\]

As you can see, the final row of the row reduced matrix consists of 0. This means that for any value of Z, there will be a unique solution of x and y, therefore this system of linear equations has infinite solutions.

Let’s use python and see what answer we get.

import numpy as py from scipy.linalg import solve A = [[-3, -5, 36], [-1, 0, 7], [1, 1, -10]] b = [[10], [5], [-4]] x = solve(A,b) x

C:\Users\Said Zaid-Alkailani\Anaconda3\lib\site-packages\scipy\linalg\basic.py:223: RuntimeWarning: scipy.linalg.solve Ill-conditioned matrix detected. Result is not guaranteed to be accurate. Reciprocal condition number: 3.808655316038273e-19 ' condition number: {}'.format(rcond), RuntimeWarning)

array([[-12.], [ -2.], [ -1.]])

As you can see we get a different type of error from this code. It states that the matrix is ill-conditioned and that there is a RuntimeWarning. This means that the computer took to long to find a unique solution so it spat out a random answer. When RuntimeWarings occur, the matrix is likely to have infinite solutions.

Math Expert

Joined: 02 Sep 2009

Posts: 87699

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
  20 Jan 2022, 07:45

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

00:00

Difficulty:

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
25% (medium)

Question Stats:

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
73% (01:03) correct
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
27% (01:37) wrong
For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
based on 26 sessions

Hide Show timer Statistics

For what values of k will the pair of equations \(3x + 4y = 12\) and \(kx + 12y = 30\) does not have a unique solution?A. 12B. 9C. 7.5D. 3

E. 2.5

_________________

Manager

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

Joined: 03 Aug 2017

Posts: 58

Location: India

Concentration: Finance, Strategy

GPA: 4

WE:Operations (Retail Banking)

Re: For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
  23 Jan 2022, 20:26

For the equation to not have the unique solutions, the equations should be parrallel.If 3x+4y=12 than on multiplying this equation by 3 we get 9x+12y=36 which is parallel to kx+12y=30 but for k=9,the two equations have values9x+12y= 36 and 9x+12y=30.Hence for k=9, equation will not have the unique solutions.

Posted from my mobile device

Re: For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
  23 Jan 2022, 23:11

Linear equations:1. ax + by = c2. ux + vy = wIf a/u = b/v = c/w -> Infinite solutionsIf a/u <>(not equal to) b/v -> Unique SolutionIf a/u = b/v <> c/w -> No Solution

So, the above Questions asks for a value that isn't unique. So, we can plug in the values in the options and validate the equation.

Senior Manager

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

Joined: 14 Jun 2014

Posts: 473

Re: For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
  24 Jan 2022, 07:05

Bunuel wrote:

For what values of k will the pair of equations \(3x + 4y = 12\) and \(kx + 12y = 30\) does not have a unique solution?A. 12B. 9C. 7.5D. 3

E. 2.5

uniique solution when two lines are parallel.3/k = 4/12

k =9

GMAT Tutor

Joined: 24 Jun 2008

Posts: 4087

Re: For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?
  24 Jan 2022, 07:41

Bunuel wrote:

For what values of k will the pair of equations \(3x + 4y = 12\) and \(kx + 12y = 30\) does not have a unique solution?

There are some issues with the wording that might make the question more confusing than it needs to be -- the word "does" should not be there, the word "values" should say "value", and when we say an equation or system of equations "does not have a unique solution", that invariably means "has more than one solution". But that's not what happens here -- here, the two equations either have one solution or no solution, depending on the value of k. The equations could only have infinitely many solutions if one equation was an exact multiple of the other, but we'd need to multiply the first equation by 3 to go from '4y' to '12y', and then the constant term 12 from the first equation becomes 36, which doesn't match the 30 in the second equation. That proves that k = 9 anyway, since when k = 9, multiplying the first equation by 3, we learn that 9x + 12y = 36 which contradicts the second equation, which says 9x + 12y = 30, so no solutions can exist. But the word "unique" shouldn't appear in the question. _________________

GMAT Tutor in MontrealContact me for online GMAT math tutoring, or about my higher-level GMAT Quant books and problem sets, at ianstewartgmat at gmail.com

ianstewartgmat.com

For what values of m the pair of equations 3x my 10 and 9x 12y 30 have a unique solution?

Re: For what values of k will the pair of equations 3x + 4y = 12 and kx + [#permalink]