
David W. answered 08/10/15
Experienced Prof
There are three helpful guidelines (best practices) to follow with this type of problem:
- if possible, assign variables to the amount the problem asks you to find
- correctly translate the words into concise, precise math expressions (with variables and operations)
- be careful to use the correct units (and to convert then if necessary).
O.K. variables: Let x = the number of downloads of the high-quality version
Then, translate:
“there were 1060 downloads” means
there were 1060-x downloads of standard version
“size of the standard version is 2.9 MB” means (2.9 MB * (1060-x)) of standard downloaded
“size of the high-quality version is 4.6 MB” means (4.6 MB * x) MB of h-q
“total download size of 3431 MB” means add the two values above
“How many downloads of the high-quality version were there?” means Report x
Now, the easy math:
2.9(1060-x) + 4.6x = 3431
29(1060-x) +46x = 34310 (multiply everything by 10 because I often forget decimals)
-29x + 46x = 34310 – 30740
x = 210
Checking (very important):
Is 2.9(1060-210) + 4.6(210) = 3431 ?
2465 + 966 = 3431 ? yes!