How much of a 5 gallon 40% salt solution should be replaced

AI Thread Summary
To obtain a 5-gallon solution with 15% salt from a 40% salt solution, a specific volume of the original solution must be replaced with pure water. The initial calculations show that there are 2 gallons of salt in the 5-gallon solution, and the target solution should contain 0.75 gallons of salt. By setting up the equation 0.4x = 0.75, where x is the volume of the 40% solution retained, it is determined that 1.875 gallons of the 40% solution should remain. Consequently, 3.125 gallons of pure water must be added to achieve the desired concentration. The discussion highlights that while a system of linear equations can be constructed, the problem can be solved more straightforwardly without complex methods.
ducmod
Messages
86
Reaction score
0
Hello!
1. Homework Statement

Here is the problem I can't solve, and will be grateful for your help on this - please, guid me to the understanding of how to solve such problems. The difficulty lies in replacing some of the solution with water. It would be much easier to solve if we add water.

How much of a 5 gallon 40% salt solution should be replaced with pure water to obtain 5

gallons of a 15% solution?

I have to solve it by creating a system of linear equations.

Homework Equations


The Attempt at a Solution

[/B]
Here are my initial thoughts, but I couldn't go beyond:

If we have 5 gallons of 40% salt solution, hence we have 2 gallons of salt in 5 gallons.
The final solution should contain 0.75 gallons of salt (5 x 0.15); therefore, I have to replace X amount of 5 gallons of 40% solution with Y amount of water to get 5 gallons of 15% solution.

X + Y = 5
Thank you!
 
Physics news on Phys.org
ducmod said:
Hello!
1. Homework Statement

Here is the problem I can't solve, and will be grateful for your help on this - please, guid me to the understanding of how to solve such problems. The difficulty lies in replacing some of the solution with water. It would be much easier to solve if we add water.

How much of a 5 gallon 40% salt solution should be replaced with pure water to obtain 5

gallons of a 15% solution?

I have to solve it by creating a system of linear equations.

Homework Equations


The Attempt at a Solution

[/B]
Here are my initial thoughts, but I couldn't go beyond:

If we have 5 gallons of 40% salt solution, hence we have 2 gallons of salt in 5 gallons.
The final solution should contain 0.75 gallons of salt (5 x 0.15); therefore, I have to replace X amount of 5 gallons of 40% solution with Y amount of water to get 5 gallons of 15% solution.

X + Y = 5
Thank you!

You need to replace X gallons or 40% solution with X gallons of pure water, to keep the volume at 5 gallons.
 
  • Like
Likes ducmod
You already figured out how much salt you want.
What volume of 40% solution would give you that much salt?
Keep that much in there, and fill the rest up with pure water.
 
  • Like
Likes ducmod
RUber said:
You already figured out how much salt you want.
What volume of 40% solution would give you that much salt?
Keep that much in there, and fill the rest up with pure water.
Oh ) Thank you very much! Had a "writer's block" yesterday )
0.4x = 0.75
x = 1.875 the amount of 40% solution in the final 15% solution
5 - 1.875 = 3.125
I don't see, though, why would I need to construct a system of linear equations, and then turn them into a matrix to solve with Cramer's rule
 
If you were going to build a system of equations, you would do something like:
## \frac{0.40x + 0y }{x+y} = 0.15 \\ x+y = 5, ##
where x is the volume of 40% solution and y is the volume of pure water.
To write this as a matrix equation, it would look like:
##\begin{bmatrix} 0.4& 0 \\ 1 & 1 \end{bmatrix} \begin{bmatrix} x\\ y \end{bmatrix} = \begin{bmatrix} .75\\ 5 \end{bmatrix}##
However, this is a very simple system and you were able to solve it without using Cramer's rule.
The simplified system works out to exactly what you did above:
##0.40 x = .75\\ x+y = 5.##
 
  • Like
Likes ducmod
Back
Top