Solve Matrix Application for Single Women's Poll Answers

AI Thread Summary
The discussion revolves around solving a matrix application related to poll responses from single women, where the percentage of "no" responses exceeds the combined "yes" and "not sure" responses by 22%. The initial setup of equations was problematic due to having more unknowns than equations, leading to an underspecified system. Participants emphasized the need for a square coefficient matrix and suggested incorporating additional information to resolve the issue. A successful matrix setup was ultimately achieved, allowing for the correct percentages of "yes," "no," and "not sure" to be determined as 34%, 61%, and 5%, respectively. The conversation highlights the importance of proper matrix formulation in solving simultaneous equations.
kuahji
Messages
390
Reaction score
2
The question is "For single women in the poll, the percentage who said no exceeded the combined percentages for those who said yes and those who said not sure by 22%. If the percentage who said yes is doubled, it is 7% more than the percentage who said no. Find the percentage of single women who responded yes, no, and not sure."

The chapter deals with matrices so I naturally tried to setup the problem as follows
1 1 -1 | -22 (yes, no, not sure)
2 0 -1 | 7

The back of the book setups on an equations as follows
x + z = y - 22
2x = y + 7

I tried to eliminate one of the variables, but then I always end up with two unknowns in the final equation. The main problem I'm running into is that the chapter provides examples that Gaussian Elimination works nicely on, but this method does not appear to work so nicely on this problem. Is the way I setup it up the first time correct & is there a particular method that would work better than another to solve the problem?

Fyi, the back of the book as yes 34%, no 61%, & not sure 5% for the answer.
 
Physics news on Phys.org
kuahji said:
I tried to eliminate one of the variables, but then I always end up with two unknowns in the final equation.
What does this fact tell you about the original system of equations? This result is giving you a big hint about what you need to do... if you know how to read the hint.
 
If you have a system of equations with three unknowns but only two equations, what do you know about the system(can there be a unique solution)? Do you know about free variables yet?

Basically you reduce the system to echelon form, reduced echelon form if you like(easier as you will need to use back-substitution later if you don't, but some people like doing that for some odd reason), and the variables that do not appear as leading 1's in the system are called 'free variables', you can assign any number to them and get a solution, in other words the system has an infinite number of solutions. You can also solve the system by solving for the non-free variables in terms of the free variables.

I am assuming that in your problem you find the general solution for the system by solving for the non-free variables in terms of the free variables, then plug in a value for the free variable z and find the solution you are looking for. Can you do it with this information?
 
You have an underspecified system of equations. A unique solution cannot exist. To illustrate, suppose you had but two unknowns and the single equation 2x=y+7. What is the solution? It is a line, not a point. Some other piece of information is needed to reduce the problem to a single solution.

In this case, such information exists. What else can you say about the percentages for yes, no, and not sure?
 
kuahji said:
The chapter deals with matrices so I naturally tried to setup the problem as follows
1 1 -1 | -22 (yes, no, not sure)
2 0 -1 | 7
.

Your trying to solve a simultaneous equation using a matrix, Yeah? Well, the co-efficient matrix has to be square, and the number of collumns in the co-efficient matrix has to equal the number of rows in the other one.

kuahji said:
The back of the book setups on an equations as follows
x + z = y - 22
2x = y + 7

It seems to me like there is information missing? Why does one equation have two variables, the other three?

You need either two equations with two variables, or three equations with three variables.
 
D H said:
In this case, such information exists. What else can you say about the percentages for yes, no, and not sure?

This here really did the trick.

I set the matrix up as

1 1 -1 | -22
2 0 -1 | 7
1 1 1 | 100

Then broke it down to

1 0 0 | 34
0 1 0 | 5
0 0 1 | 61

So it worked, thanks for the tip, was working on this one for a long time & just couldn't solve the two equations by themselves, but that makes sense now why not.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top