Mr. Logan purchased $390 in clothing (excluding sales tax). He bought 5 identical shirts, 3 identical pairs of pants and 2 identical pairs of shoes. Each pair of shoes cost twice the combined value of one shirt and a pair of pants. Each pair of pants cost $10 more than one shirt.

Use let statements to express the cost of each item and relationship to each other.Write the equation to represent the situation.

Find the cost of 1 shirt, 1 pair of pants, 1 pair of shoes.

Help - I don't know how to use the let statements. Have already figured out the cost of each item (1 shirt is $20, 1 pants $30, 1 shoes $100)

In most cases it is advisable to define the smallest value, in this case the cost of a shirt

let each shirt cost x dollars
("Each pair of pants cost $10 more than one shirt. ---->)
let the cost of the pants be x+10

( "Each pair of shoes cost twice the combined value of one shirt and a pair of pants. ---->

let the cost of the shoes be 2(one shirt + one pants)
= 2(x + x+10)
= 4x + 20

5 shirts ----> 5x
3 pants ----> 3(x+10)
2 shoes ----> 2(4x+20)

5x + 3(x+10) + 2(4x+20) = 390
5x + 3x + 30 + 8x + 40 = 390
16x = 320
x = 20

so ...
1 shirt costs $20
1 pair of shoes costs $30
1 pair of pants costs $100

check:
5 shirts + 3 pants + 2 shoes
= 5(20) + 3(30) + 2(100)
= 390 YEAHHH

Thank you Reiny... you make it look so easy :)... thanks for the hint in starting with defining the smallest value.

You are welcome

another good idea is to underline or isolate key sentences, then "translate" them into "math"

when he left on vacation, the odometer in Carl's car read 32,654 miles. hen he returned from his trip it read 33,895. If he used 54.7 gallons of gas, how many miles per gallon did he get? Round to the nearest hundredth.

Let's use the let statements to represent the cost of each item:

Let S = cost of 1 shirt
Let P = cost of 1 pair of pants
Let Sh = cost of 1 pair of shoes

Based on the given information, we know that:

Each pair of shoes cost twice the combined value of one shirt and a pair of pants:
Sh = 2(S + P)

Each pair of pants cost $10 more than one shirt:
P = S + $10

We have also already figured out the cost of each item:
1 shirt is $20: S = $20
1 pair of pants is $30: P = $30
1 pair of shoes is $100: Sh = $100

Now, to find the equations representing these relationships:

Sh = 2(S + P) becomes 100 = 2(20 + 30)

P = S + $10 becomes 30 = 20 + $10

By simplifying these equations, we can find the values of S, P, and Sh:

From the first equation:
100 = 2(20 + 30)
100 = 2(50)
100 = 100

From the second equation:
30 = 20 + $10
30 = 30

We see that both equations are true, which confirms that our values are correct:

S = $20 (cost of 1 shirt)
P = $30 (cost of 1 pair of pants)
Sh = $100 (cost of 1 pair of shoes)

Therefore, the cost of 1 shirt is $20, 1 pair of pants is $30, and 1 pair of shoes is $100.