import { type PracticeQuestion } from "../../types/lesson";
export const LINEAR_INEQ_EASY: PracticeQuestion[] = [
{
id: "2c121b25",
type: "mcq",
questionHtml:
"Valentina bought two containers of beads. In the first container 30% of the beads are red, and in the second container 70% of the beads are red. Together, the containers have at least 400 red beads. Which inequality shows this relationship, where x is the total number of beads in the first container and y is the total number of beads in the second container?",
choices: [
{ label: "A", text: "0 . 3 x + 0 . 7 y ≥ 400" },
{ label: "B", text: "0 . 7 x + 0 . 3 y ≤ 400" },
{
label: "C",
text: "the fraction x over 3, end fraction + the fraction y over 7, end fraction ≤ 400",
},
{ label: "D", text: "30 x + 70 y ≥ 400" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. It is given that x is the total number of beads in the first container and that 30% of those beads are red; therefore, the expression 0.3x represents the number of red beads in the first container. It is given that y is the total number of beads in the second container and that 70% of those beads are red; therefore, the expression 0.7y represents the number of red beads in the second container. It is also given that, together, the containers have at least 400 red beads, so the inequality that shows this relationship is 0.3x + 0.7y ≥ 400.Choice B is incorrect because it represents the containers having a total of at most, rather than at least, 400 red beads. Choice C is incorrect and may be the result of misunderstanding how to represent a percentage of beads in each container. Also, the inequality shows the containers having a combined total of at most, rather than at least, 400 red beads. Choice D is incorrect because the percentages were not converted to decimals.",
hasFigure: false,
},
{
id: "563407e5",
type: "mcq",
questionHtml:
"A bakery sells trays of cookies. Each tray contains at least 50 cookies but no more than 60. Which of the following could be the total number of cookies on 4 trays of cookies?",
choices: [
{ label: "A", text: "165" },
{ label: "B", text: "205" },
{ label: "C", text: "245" },
{ label: "D", text: "285" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. If each tray contains the least number of cookies possible, 50 cookies, then the least number of cookies possible on 4 trays is 50 × 4 = 200 cookies. If each tray contains the greatest number of cookies possible, 60 cookies, then the greatest number of cookies possible on 4 trays is 60 × 4 = 240 cookies. If the least number of cookies on 4 trays is 200 and the greatest number of cookies is 240, then 205 could be the total number of cookies on these 4 trays of cookies because 200 ≤ 205, which ≤ 240..Choices A, C, and D are incorrect. The least number of cookies on 4 trays is 200 cookies, and the greatest number of cookies on 4 trays is 240 cookies. The choices 165, 245, and 285 are each either less than 200 or greater than 240; therefore, they cannot represent the total number of cookies on 4 trays.",
hasFigure: false,
},
{
id: "59a49431",
type: "mcq",
questionHtml:
"The boundary of the inequality is a solid line.
The line slants sharply down from left to right.
The line passes through the following points:
(1.0 comma 6.5)
(3.0 comma negative 4.5)
The area above and to the right of the boundary is shaded.
The shaded region shown represents solutions to an inequality. Which ordered pair (x, y) is a solution to this inequality?",
choices: [
{ label: "A", text: "(0 −4)" },
{ label: "B", text: "(0, 4)" },
{ label: "C", text: "(−4, 0)" },
{ label: "D", text: "(4, 0)" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. Since the shaded region shown represents solutions to an inequality, an ordered pair (x, y) is a solution to the inequality if it's represented by a point in the shaded region. Of the given choices, only (4, 0) is represented by a point in the shaded region. Therefore, (4, 0) is a solution to the inequality.
Choice A is incorrect and may result from conceptual errors.
Choice B is incorrect and may result from conceptual errors.
Choice C is incorrect and may result from conceptual errors.",
hasFigure: true,
figureUrl: "/practice-images/59a49431_svg1.svg",
},
{
id: "68f2cbaf",
type: "mcq",
questionHtml:
"Ty set a goal to walk at least 24 kilometers every day to prepare for a multiday hike. On a certain day, Ty plans to walk at an average speed of 4 kilometers per hour. What is the minimum number of hours Ty must walk on that day to fulfill the daily goal?",
choices: [
{ label: "A", text: "4" },
{ label: "B", text: "6" },
{ label: "C", text: "20" },
{ label: "D", text: "24" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It's given that Ty plans to walk at an average speed of 4 kilometers per hour. The number of kilometers Ty will walk is determined by the expression 4 s, where s is the number of hours Ty walks. The given goal of at least 24 kilometers means that the inequality 4 s > or = 24 represents the situation. Dividing both sides of this inequality by 4 gives s > or = 6 , which corresponds to a minimum of 6 hours Ty must walk.
Choice A is incorrect and may result from conceptual or calculation errors.
Choice C is incorrect and may result from conceptual or calculation errors.
Choice D is incorrect and may result from conceptual or calculation errors.",
hasFigure: false,
},
{
id: "7d6928bd",
type: "mcq",
questionHtml:
"A cleaning service that cleans both offices and homes can clean at most 14 places per day. Which inequality represents this situation, where f is the number of offices and h is the number of homes?",
choices: [
{ label: "A", text: "f + h < or = 14" },
{ label: "B", text: "f + h > or = 14" },
{ label: "C", text: "f − h < or = 14" },
{ label: "D", text: "f − h > or = 14" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. It's given that the cleaning service cleans both offices and homes, where f is the number of offices and h is the number of homes the cleaning service can clean per day. Therefore, the expression f + h represents the number of places the cleaning service can clean per day. It's also given that the cleaning service can clean at most 14 places per day. Since f + h represents the number of places the cleaning service can clean per day and the service can clean at most 14 places per day, it follows that the inequality f + h < or = 14 represents this situation.
Choice B is incorrect. This inequality represents a cleaning service that cleans at least 14 places per day.
Choice C is incorrect. This inequality represents a cleaning service that cleans at most 14 more offices than homes per day.
Choice D is incorrect. This inequality represents a cleaning service that cleans at least 14 more offices than homes per day.",
hasFigure: false,
},
{
id: "84d0d07e",
type: "mcq",
questionHtml:
"A clothing store is having a sale on shirts and pants. During the sale, the cost of each shirt is $15 and the cost of each pair of pants is $25. Geoff can spend at most $120 at the store. If Geoff buys s shirts and p pairs of pants, which of the following must be true?",
choices: [
{ label: "A", text: "15 s + 25 p ≤ 120" },
{ label: "B", text: "15 s + 25 p ≥ 120" },
{ label: "C", text: "25 s + 15 p ≤ 120" },
{ label: "D", text: "25 s + 15 p ≥ 120" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. Since the cost of each shirt is $15 and Geoff buys s shirts, the expression 15 s represents the amount Geoff spends on shirts. Since the cost of each pair of pants is $25 and Geoff buys p pairs of pants, the expression 25 p represents the amount Geoff spends on pants. Therefore, the sum 15 s + 25 p represents the total amount Geoff spends at the store. Since Geoff can spend at most $120 at the store, the total amount he spends must be less than or equal to 120. Thus, 15 s + 25 p ≤ 120.Choice B is incorrect. This represents the situation in which Geoff spends at least, rather than at most, $120 at the store. Choice C is incorrect and may result from reversing the cost of a shirt and that of a pair of paints. Choice D is incorrect and may result from both reversing the cost of a shirt and that of a pair of pants and from representing a situation in which Geoff spends at least, rather than at most, $120 at the store.",
hasFigure: false,
},
{
id: "89541f9b",
type: "mcq",
questionHtml:
"Which of the following ordered pairs x, y satisfies the inequality 5 x − 3 y < 4 ?
Statement 1, 1, 1
Statement 2, 2, 5
Statement 3, 3, 2",
choices: [
{ label: "A", text: "I only" },
{ label: "B", text: "II only" },
{ label: "C", text: "I and II only" },
{ label: "D", text: "I and III only" },
],
correctAnswer: "C",
explanation:
"Choice C is correct. Substituting the ordered pair 1, 1 into the inequality gives 5 · 1 − 3 · 1 < 4, or 2 < 4, which is a true statement. Substituting the ordered pair 2, 5 into the inequality gives 5 · 2 − 3 · 5 < 4, or −5 < 4, which is a true statement. Substituting the ordered pair 3, 2 into the inequality gives 5 · 3 − 3 · 2 < 4, or 9 < 4, which is not a true statement. Therefore, the ordered pair 1, 1 and the ordered pair 2, 5 are the only ordered pairs shown that satisfy the given inequality.Choice A is incorrect because the ordered pair 2, 5 also satisfies the inequality. Choice B is incorrect because the ordered pair 1, 1 also satisfies the inequality. Choice D is incorrect because the ordered pair 3, 2 does not satisfy the inequality.",
hasFigure: false,
},
{
id: "915463e0",
type: "mcq",
questionHtml:
"Normal body temperature for an adult is between 97 . 8 ° Fahrenheit and 99 ° Fahrenheit, inclusive. If Kevin, an adult male, has a body temperature that is considered to be normal, which of the following could be his body temperature?",
choices: [
{ label: "A", text: "96 . 7 ° Fahrenheit" },
{ label: "B", text: "97 . 6 ° Fahrenheit" },
{ label: "C", text: "97 . 9 ° Fahrenheit" },
{ label: "D", text: "99 . 7 ° Fahrenheit" },
],
correctAnswer: "C",
explanation:
"Choice C is correct. Normal body temperature must be greater than or equal to 97.8°F but less than or equal to 99°F. Of the given choices, 97.9°F is the only temperature that fits these restrictions.Choices A and B are incorrect. These temperatures are less than 97.8°F, so they don’t fit the given restrictions. Choice D is incorrect. This temperature is greater than 99°F, so it doesn’t fit the given restrictions.",
hasFigure: false,
},
{
id: "b64e2c7f",
type: "mcq",
questionHtml:
"Monarch butterflies can fly only with a body temperature of at least 55.0 ° Fahrenheit (° F). If a monarch butterfly's body temperature is 51.3 ° F, what is the minimum increase needed in its body temperature, in ° F, so that it can fly?",
choices: [
{ label: "A", text: "1.3" },
{ label: "B", text: "3.7" },
{ label: "C", text: "5.0" },
{ label: "D", text: "6.3" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It's given that monarch butterflies can fly only with a body temperature of at least 55.0 ° Fahrenheit (° F). Let x represent the minimum increase needed in the monarch butterfly's body temperature to fly. If the monarch butterfly's body temperature is 51.3 ° F, the inequality 51.3 + x > or = 55.0 represents this situation. Subtracting 51.3 from both sides of this inequality yields x > or = 3.7. Therefore, if the monarch butterfly's body temperature is 51.3 ° F, the minimum increase needed in its body temperature, in ° F, so that it can fly is 3.7.
Choice A is incorrect. This is the minimum increase needed in body temperature if the monarch butterfly's body temperature is 53.7 ° F, not 51.3 ° F.
Choice C is incorrect. This is the minimum increase needed in body temperature if the monarch butterfly's body temperature is 50.0 ° F, not 51.3 ° F.
Choice D is incorrect. This is the minimum increase needed in body temperature if the monarch butterfly's body temperature is 48.7 ° F, not 51.3 ° F.",
hasFigure: false,
},
{
id: "b75f7812",
type: "spr",
questionHtml:
"Maria plans to rent a boat. The boat rental costs $60 per hour, and she will also have to pay for a water safety course that costs $10. Maria wants to spend no more than $280 for the rental and the course. If the boat rental is available only for a whole number of hours, what is the maximum number of hours for which Maria can rent the boat?",
choices: [],
correctAnswer: "",
explanation:
"The correct answer is 4. The equation 60 h + 10 ≤ 280, where h is the number of hours the boat has been rented, can be written to represent the situation. Subtracting 10 from both sides and then dividing by 60 yields h ≤ 4 . 5. Since the boat can be rented only for whole numbers of hours, the maximum number of hours for which Maria can rent the boat is 4.",
hasFigure: false,
},
{
id: "c50ede6d",
type: "mcq",
questionHtml:
"The total cost, in dollars, to rent a surfboard consists of a dollar sign 25 service fee and a dollar sign 10 per hour rental fee. A person rents a surfboard for t hours and intends to spend a maximum of dollar sign 75 to rent the surfboard. Which inequality represents this situation?",
choices: [
{ label: "A", text: "10 t < or = 75" },
{ label: "B", text: "10 + 25 t < or = 75" },
{ label: "C", text: "25 t < or = 75" },
{ label: "D", text: "25 + 10 t < or = 75" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. The cost of the rental fee depends on the number of hours the surfboard is rented. Multiplying t hours by 10 dollars per hour yields a rental fee of 10 t dollars. The total cost of the rental consists of the rental fee plus the 25 dollar service fee, which yields a total cost of 25 + 10 t dollars. Since the person intends to spend a maximum of 75 dollars to rent the surfboard, the total cost must be at most 75 dollars. Therefore, the inequality 25 + 10 t < or = 75 represents this situation.
Choice A is incorrect. This represents a situation where the rental fee, not the total cost, is at most 75 dollars.
Choice B is incorrect and may result from conceptual or calculation errors.
Choice C is incorrect and may result from conceptual or calculation errors.",
hasFigure: false,
},
{
id: "cfe67646",
type: "mcq",
questionHtml:
"The point (8, 2) in the xy-plane is a solution to which of the following systems of inequalities?",
choices: [
{ label: "A", text: "x > 0
y > 0" },
{ label: "B", text: "x > 0
y < 0" },
{ label: "C", text: "x < 0
y > 0" },
{ label: "D", text: "x < 0
y < 0" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. The given point, (8, 2), is located in the first quadrant in the xy-plane. The system of inequalities in choice A represents all the points in the first quadrant in the xy-plane. Therefore, (8, 2) is a solution to the system of inequalities in choice A.
Alternate approach: Substituting 8 for x in the first inequality in choice A, x > 0, yields 8 > 0, which is true. Substituting 2 for y in the second inequality in choice A, y > 0, yields 2 > 0, which is true. Since the coordinates of the point (8, 2) make the inequalities x > 0 and y > 0 true, the point (8, 2) is a solution to the system of inequalities consisting of x > 0 and y > 0.
Choice B is incorrect. This system of inequalities represents all the points in the fourth quadrant, not the first quadrant, in the xy-plane.
Choice C is incorrect. This system of inequalities represents all the points in the second quadrant, not the first quadrant, in the xy-plane.
Choice D is incorrect. This system of inequalities represents all the points in the third quadrant, not the first quadrant, in the xy-plane.",
hasFigure: false,
},
{
id: "df32b09c",
type: "mcq",
questionHtml:
"Tom scored 85, 78, and 98 on his first three exams in history class. Solving which inequality gives the score, G, on Tom’s fourth exam that will result in a mean score on all four exams of at least 90 ?",
choices: [
{ label: "A", text: "90 − (85 + 78 + 98, ) ≤ 4 G" },
{ label: "B", text: "4 G + 85 + 78 + 98 ≥ 360" },
{
label: "C",
text: "the fraction with numerator, (G + 85 + 78 + 98, ), and denominator 4, end fraction ≥ 90",
},
{
label: "D",
text: "the fraction with numerator, (85 + 78 + 98, ), and denominator 4, end fraction ≥ 90 − 4 G",
},
],
correctAnswer: "C",
explanation:
"Choice C is correct. The mean of the four scores (G, 85, 78, and 98) can be expressed as the fraction with numerator G + 85 + 78 + 98, and denominator 4. The inequality that expresses the condition that the mean score is at least 90 can therefore be written as the fraction with numerator G + 85 + 78 + 98, and denominator 4 ≥ 90.Choice A is incorrect. The sum of the scores (G, 85, 78, and 98) isn’t divided by 4 to express the mean. Choice B is incorrect and may be the result of an algebraic error when multiplying both sides of the inequality by 4. Choice D is incorrect because it doesn’t include G in the mean with the other three scores.",
hasFigure: false,
},
{
id: "e744499e",
type: "mcq",
questionHtml:
"An elementary school teacher is ordering x workbooks and y sets of flash cards for a math class. The teacher must order at least 20 items, but the total cost of the order must not be over $80. If the workbooks cost $3 each and the flash cards cost $4 per set, which of the following systems of inequalities models this situation?",
choices: [
{ label: "A", text: "x + y ≥ 20, and, 3 x + 4 y ≤ 80" },
{ label: "B", text: "x + y ≥ 20, and, 3 x + 4 y ≥ 80" },
{ label: "C", text: "3 x + 4 y ≤ 20, and, x + y ≥ 80" },
{ label: "D", text: "x + y ≤ 20, and, 3 x + 4 y ≥ 80" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. The total number of workbooks and sets of flash cards ordered is represented by x + y. Since the teacher must order at least 20 items, it must be true that x + y ≥ 20. Each workbook costs $3; therefore, 3x represents the cost, in dollars, of x workbooks. Each set of flashcards costs $4; therefore, 4y represents the cost, in dollars, of y sets of flashcards. It follows that the total cost for x workbooks and y sets of flashcards is 3x + 4y. Since the total cost of the order must not be over $80, it must also be true that 3x + 4y ≤ 80. Of the choices given, these inequalities are shown only in choice A.
Choice B is incorrect. The second inequality says that the total cost must be greater, not less than or equal to $80. Choice C incorrectly limits the cost by the minimum number of items and the number of items with the maximum cost. Choice D is incorrect. The first inequality incorrectly says that at most 20 items must be ordered, and the second inequality says that the total cost of the order must be at least, not at most, $80.",
hasFigure: false,
},
{
id: "ee439cff",
type: "mcq",
questionHtml:
"On a car trip, Rhett and Jessica each drove for part of the trip, and the total distance they drove was under 220 miles. Rhett drove at an average speed of 35 miles per hour (mph), and Jessica drove at an average speed of 40 mph. Which of the following inequalities represents this situation, where r is the number of hours Rhett drove and j is the number of hours Jessica drove?",
choices: [
{ label: "A", text: "35 r + 40 j > 220" },
{ label: "B", text: "35 r + 40 j < 220" },
{ label: "C", text: "40 r + 35 j > 220" },
{ label: "D", text: "40 r + 35 j < 220" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It’s given that Rhett drove at an average speed of 35 miles per hour and that he drove for r hours. Multiplying 35 miles per hour by r hours yields 35 r miles, or the distance that Rhett drove. It’s also given that Jessica drove at an average speed of 40 miles per hour and that she drove for j hours. Multiplying 40 miles per hour by j hours yields 40 j miles, or the distance that Jessica drove. The total distance, in miles, that Rhett and Jessica drove can be represented by the expression 35 r + 40 j. It’s given that the total distance they drove was under 220 miles. Therefore, the inequality 35 r + 40 j < 220 represents this situation.
Choice A is incorrect. This inequality represents a situation in which the total distance Rhett and Jessica drove was over, rather than under, 220 miles.
Choice C is incorrect. This inequality represents a situation in which Rhett drove at an average speed of 40, rather than 35, miles per hour, Jessica drove at an average speed of 35, rather than 40, miles per hour, and the total distance they drove was over, rather than under, 220 miles.
Choice D is incorrect. This inequality represents a situation in which Rhett drove at an average speed of 40, rather than 35, miles per hour, and Jessica drove at an average speed of 35, rather than 40, miles per hour.",
hasFigure: false,
},
];
export const LINEAR_INEQ_MEDIUM: PracticeQuestion[] = [
{
id: "64c85440",
type: "mcq",
questionHtml:
"In North America, the standard width of a parking space is at least 7.5 feet and no more than 9.0 feet. A restaurant owner recently resurfaced the restaurant’s parking lot and wants to determine the number of parking spaces, n, in the parking lot that could be placed perpendicular to a curb that is 135 feet long, based on the standard width of a parking space. Which of the following describes all the possible values of n ?",
choices: [
{ label: "A", text: "18 ≤ n, which ≤ 135" },
{ label: "B", text: "7 . 5 ≤ n, which ≤ 9" },
{ label: "C", text: "15 ≤ n, which ≤ 135" },
{ label: "D", text: "15 ≤ n, which ≤ 18" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. Placing the parking spaces with the minimum width of 7.5 feet gives the maximum possible number of parking spaces. Thus, the maximum number that can be placed perpendicular to a 135-foot-long curb is 135 over 7 . 5 = 18. Placing the parking spaces with the maximum width of 9 feet gives the minimum number of parking spaces. Thus, the minimum number that can be placed perpendicular to a 135-foot-long curb is 135 over 9 = 15. Therefore, if n is the number of parking spaces in the lot, the range of possible values for n is 15 ≤ n, which ≤ 18.Choices A and C are incorrect. These choices equate the length of the curb with the maximum possible number of parking spaces. Choice B is incorrect. This is the range of possible values for the width of a parking space instead of the range of possible values for the number of parking spaces.",
hasFigure: false,
},
{
id: "74c98c82",
type: "spr",
questionHtml:
"An event planner is planning a party. It costs the event planner a onetime fee of dollar sign 35 to rent the venue and dollar sign 10.25 per attendee. The event planner has a budget of dollar sign 200. What is the greatest number of attendees possible without exceeding the budget?",
choices: [],
correctAnswer: "16",
explanation:
"The correct answer is 16. The total cost of the party is found by adding the onetime fee of the venue to the cost per attendee times the number of attendees. Let x be the number of attendees. The expression 35 + 10.25 x thus represents the total cost of the party. It's given that the budget is dollar sign 200, so this situation can be represented by the inequality 35 + 10.25 x < or = 200. The greatest number of attendees can be found by solving this inequality for x. Subtracting 35 from both sides of this inequality gives 10.25 x < or = 165. Dividing both sides of this inequality by 10.25 results in approximately x < or = 16.098. Since the question is stated in terms of attendees, rounding x down to the nearest whole number, 16, gives the greatest number of attendees possible.",
hasFigure: false,
},
{
id: "80da233d",
type: "mcq",
questionHtml:
"A certain elephant weighs 200 pounds at birth and gains more than 2 but less than 3 pounds per day during its first year. Which of the following inequalities represents all possible weights w, in pounds, for the elephant 365 days after birth?",
choices: [
{ label: "A", text: "400 < w, which < 600" },
{ label: "B", text: "565 < w, which < 930" },
{ label: "C", text: "730 < w, which < 1, 095" },
{ label: "D", text: "930 < w, which < 1, 295" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. It’s given that the elephant weighs 200 pounds at birth and gains more than 2 pounds but less than 3 pounds per day during its first year. The inequality 200 + 2 d < w, which < 200 + 3 d represents this situation, where d is the number of days after birth. Substituting 365 for d in the inequality gives 200 + 2 · 365 < w, which < 200 + 3 · 365, or 930 < w, which < 1, 295.Choice A is incorrect and may result from solving the inequality 200 · 2 < w, which < 200 · 3. Choice B is incorrect and may result from solving the inequality for a weight range of more than 1 pound but less than 2 pounds: 200 + 1 · 365 < w, which < 200 + 2 · 365. Choice C is incorrect and may result from calculating the possible weight gained by the elephant during the first year without adding the 200 pounds the elephant weighed at birth.",
hasFigure: false,
},
{
id: "8f0c82e2",
type: "mcq",
questionHtml:
"The minimum value of x is 12 less than 6 times another number n. Which inequality shows the possible values of x?",
choices: [
{ label: "A", text: "x < or = 6 n − 12" },
{ label: "B", text: "x > or = 6 n − 12" },
{ label: "C", text: "x < or = 12 − 6 n" },
{ label: "D", text: "x > or = 12 − 6 n" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It’s given that the minimum value of x is 12 less than 6 times another number n. Therefore, the possible values of x are all greater than or equal to the value of 12 less than 6 times n. The value of 6 times n is given by the expression 6 n. The value of 12 less than 6 n is given by the expression 6 n − 12. Therefore, the possible values of x are all greater than or equal to 6 n − 12. This can be shown by the inequality x > or = 6 n − 12.
Choice A is incorrect. This inequality shows the possible values of x if the maximum, not the minimum, value of x is 12 less than 6 times n.
Choice C is incorrect. This inequality shows the possible values of x if the maximum, not the minimum, value of x is 6 times n less than 12, not 12 less than 6 times n.
Choice D is incorrect. This inequality shows the possible values of x if the minimum value of x is 6 times n less than 12, not 12 less than 6 times n.",
hasFigure: false,
},
{
id: "90bd9ef8",
type: "mcq",
questionHtml:
"The average annual energy cost for a certain home is $4,334. The homeowner plans to spend $25,000 to install a geothermal heating system. The homeowner estimates that the average annual energy cost will then be $2,712. Which of the following inequalities can be solved to find t, the number of years after installation at which the total amount of energy cost savings will exceed the installation cost?",
choices: [
{
label: "A",
text: "25, 000 > (4, 334 − 2, 712, ) · t",
},
{
label: "B",
text: "25, 000 < (4, 334 − 2, 712, ) · t",
},
{ label: "C", text: "25, 000 − 4, 334 > 2, 712 t" },
{
label: "D",
text: "25, 000 > the fraction with numerator 4, 332, and denominator 2, 712, end fraction, t",
},
],
correctAnswer: "B",
explanation:
"Choice B is correct. The savings each year from installing the geothermal heating system will be the average annual energy cost for the home before the geothermal heating system installation minus the average annual energy cost after the geothermal heating system installation, which is 4, 334 − 2, 712 dollars. In t years, the savings will be (4, 334 − 2, 712, ) · t dollars. Therefore, the inequality that can be solved to find the number of years after installation at which the total amount of energy cost savings will exceed (be greater than) the installation cost, $25,000, is 25, 000 < (4, 334 − 2, 712, ) · t.Choice A is incorrect. It gives the number of years after installation at which the total amount of energy cost savings will be less than the installation cost. Choice C is incorrect and may result from subtracting the average annual energy cost for the home from the onetime cost
of the geothermal heating system installation. To find the predicted total savings, the predicted average cost should be subtracted from the average annual energy cost before the installation, and the result should be multiplied by the number of years, t. Choice D is incorrect and may result from misunderstanding the context. The ratio 4, 332 over 2, 712 compares the average energy cost before installation and the average energy cost after installation; it does not represent the savings.",
hasFigure: false,
},
{
id: "948087f2",
type: "mcq",
questionHtml:
"Which of the following ordered pairs (x, y) satisfies the system of inequalities above?",
choices: [
{ label: "A", text: "−2 −1" },
{ label: "B", text: "−1, 3" },
{ label: "C", text: "1, 5" },
{ label: "D", text: "2 −1" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. Any point (x, y) that is a solution to the given system of inequalities must satisfy both inequalities in the system. The second inequality in the system can be rewritten as x > y + 1. Of the given answer choices, only choice D satisfies this inequality, because inequality 2 > −1 + 1 is a true statement. The point with coordinates 2 −1 also satisfies the first inequality.Alternate approach: Substituting the ordered pair 2 −1 into the first inequality gives −1 ≤ 3 · 2 + 1, or −1 ≤ 7, which is a true statement. Substituting the ordered pair 2 −1 into the second inequality gives 2 − −1 > 1, or 3 > 1, which is a true statement. Therefore, since the ordered pair 2 −1 satisfies both inequalities, it is a solution to the system.
Choice A is incorrect because substituting −2 for x and −1 for y in the first inequality gives −1 ≤ 3 · −2 + 1, or −1 ≤ −5, which is false. Choice B is incorrect because substituting −1 for x and 3 for y in the first inequality gives 3 ≤ 3 · −1 + 1, or 3 ≤ −2, which is false. Choice C is incorrect because substituting 1 for x and 5 for y in the first inequality gives 5 ≤ 3 · 1 + 1, or 5 ≤ 4, which is false.",
hasFigure: false,
},
{
id: "968e9e51",
type: "mcq",
questionHtml:
"Which of the following ordered pairs x, y is a solution to the system of inequalities above?",
choices: [
{ label: "A", text: "1, 0" },
{ label: "B", text: "−1, 0" },
{ label: "C", text: "0, 1" },
{ label: "D", text: "0 −1" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. The solutions to the given system of inequalities is the set of all ordered pairs x, y that satisfy both inequalities in the system. For an ordered pair to satisfy the inequality y ≤ x, the value of the ordered pair’s y-coordinate must be less than or equal to the value of the ordered pair’s x-coordinate. This is true of the ordered pair 0 −1, because −1 ≤ 0. To satisfy the inequality y ≤ −x, the value of the ordered pair’s y-coordinate must be less than or equal to the value of the additive inverse of the ordered pair’s x-coordinate. This is also true of the ordered pair 0 −1. Because 0 is its own additive inverse, −1 ≤ the − of 0 is the same as −1 ≤ 0. Therefore, the ordered pair 0 −1 is a solution to the given system of inequalities.Choice A is incorrect. This ordered pair satisfies only the inequality y ≤ x in the given system, not both inequalities. Choice B incorrect. This ordered pair satisfies only the inequality y ≤ −x in the system, but not both inequalities. Choice C is incorrect. This ordered pair satisfies neither inequality.",
hasFigure: false,
},
{
id: "b1228811",
type: "mcq",
questionHtml:
"Marisa needs to hire at least 10 staff members for an upcoming project. The staff members will be made up of junior directors, who will be paid $640 per week, and senior directors, who will be paid $880 per week. Her budget for paying the staff members is no more than $9,700 per week. She must hire at least 3 junior directors and at least 1 senior director. Which of the following systems of inequalities represents the conditions described if x is the number of junior directors and y is the number of senior directors?",
choices: [
{
label: "A",
text: "640 x + 880 y ≥ 9, 700; x + y ≤ 10; x ≥ 3; y ≥ 1",
},
{
label: "B",
text: "640 x + 880 y ≤ 9, 700; x + y ≥ 10; x ≥ 3; y ≥ 1",
},
{
label: "C",
text: "640 x + 880 y ≥ 9, 700; x + y ≥ 10; x ≤ 3; y ≤ 1",
},
{
label: "D",
text: "640 x + 880 y ≤ 9, 700; x + y ≤ 10; x ≤ 3; y ≤ 1",
},
],
correctAnswer: "B",
explanation:
"Choice B is correct. Marisa will hire x junior directors and y senior directors. Since she needs to hire at least 10 staff members, x + y ≥ 10. Each junior director will be paid $640 per week, and each senior director will be paid $880 per week. Marisa’s budget for paying the new staff is no more than $9,700 per week; in terms of x and y, this condition is 640 x + 880 y ≤ 9, 700. Since Marisa must hire at least 3 junior directors and at least 1 senior director, it follows that x ≥ 3 and y ≥ 1. All four of these conditions are represented correctly in choice B.Choices A and C are incorrect. For example, the first condition, 640 x + 880 y ≥ 9, 700, in each of these options implies that Marisa can pay the new staff members more than her budget of $9,700. Choice D is incorrect because Marisa needs to hire at least 10 staff members, not at most 10 staff members, as the inequality x + y ≤ 10 implies.",
hasFigure: false,
},
{
id: "b31c3117",
type: "mcq",
questionHtml:
"The Karvonen formula above shows the relationship between Alice’s target heart rate H, in beats per minute (bpm), and the intensity level p of different activities. When p = 0, Alice has a resting heart rate. When p = 1, Alice has her maximum heart rate. It is recommended that p be between 0.5 and 0.85 for Alice when she trains. Which of the following inequalities describes Alice’s target training heart rate?",
choices: [
{ label: "A", text: "120 ≤ H, which ≤ 162" },
{ label: "B", text: "102 ≤ H, which ≤ 120" },
{ label: "C", text: "60 ≤ H, which ≤ 162" },
{ label: "D", text: "60 ≤ H, which ≤ 102" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. When Alice trains, it’s recommended that p be between 0.5 and 0.85. Therefore, her target training heart rate is represented by the values of H corresponding to 0 . 5 ≤ p, which ≤ 0 . 8 5. When p = 0 . 5, H = 120 · 0 . 5 + 60, or H = 120. When p = 0 . 8 5, H = 120 · 0 . 8 5 + 60, or H = 162. Therefore, the inequality that describes Alice’s target training heart rate is 120 ≤ H, which ≤ 162.Choice B is incorrect. This inequality describes Alice’s target heart rate for 0 . 3 5 ≤ p, which ≤ 0 . 5. Choice C is incorrect. This inequality describes her target heart rate for 0 ≤ p, which ≤ 0 . 8 5. Choice D is incorrect. This inequality describes her target heart rate for 0 ≤ p, which ≤ 0 . 3 5.",
hasFigure: false,
},
{
id: "bf5f80c6",
type: "mcq",
questionHtml:
"(expression)
Which point ((expression), (expression)) is a solution to the given inequality in the (expression)-plane?",
choices: [
{ label: "A", text: "((expression), (expression))" },
{ label: "B", text: "((expression), (expression))" },
{ label: "C", text: "((expression), (expression))" },
{ label: "D", text: "((expression), (expression))" },
],
correctAnswer: "A",
explanation:
"Choice D is correct. For a point (x, y) to be a solution to the given inequality in the xy-plane, the value of the point’s y-coordinate must be less than the value of − 4 x + 4, where x is the value of the x-coordinate of the point. This is true of the point (−4, 0) because 0 < − 4 (−4) + 4, or 0 < 20. Therefore, the point (−4, 0) is a solution to the given inequality.
Choices A, B, and C are incorrect. None of these points are a solution to the given inequality because each point’s y-coordinate is greater than the value of − 4 x + 4 for the point’s x-coordinate.",
hasFigure: false,
},
{
id: "c17d9ba9",
type: "spr",
questionHtml:
"A number x is at most 17 less than 5 times the value of y. If the value of y is 3, what is the greatest possible value of x?",
choices: [],
correctAnswer: "-2",
explanation:
"The correct answer is −2. It's given that a number x is at most 17 less than 5 times the value of y, or x < or = 5 y − 17. Substituting 3 for y in this inequality yields x < or = 5 (3) − 17, or x < or = −2. Thus, if the value of y is 3, the greatest possible value of x is −2.",
hasFigure: false,
},
{
id: "d02193fb",
type: "mcq",
questionHtml:
"The boundary of the inequality is a dashed line.
The line slants sharply down from left to right.
The line passes through the following points:
(negative 1 comma 5)
(0 comma 1)
(1 comma negative 3)
The area above and to the right of the boundary is shaded.
The shaded region shown represents the solutions to which inequality?",
choices: [
{ label: "A", text: "y < 1 + 4 x" },
{ label: "B", text: "y < 1 − 4 x" },
{ label: "C", text: "y > 1 + 4 x" },
{ label: "D", text: "y > 1 − 4 x" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. The equation for the line representing the boundary of the shaded region can be written in slope-intercept form y = b + m x, where m is the slope and (0, b) is the y-intercept of the line. For the graph shown, the boundary line passes through the points (0, 1) and (1 −3). Given two points on a line, (x 1, y 1) and (x 2, y 2), the slope of the line can be calculated using the equation m = (y 2 − y 1) / (x 2 − x 1). Substituting the points (0, 1) and (1 −3) for (x 1, y 1) and (x 2, y 2) in this equation yields m = (−3 − 1) / (1 − 0), which is equivalent to m = (−4) / (1), or m = −4. Since the point (0, 1) represents the y-intercept, it follows that b = 1. Substituting −4 for m and 1 for b in the equation y = b + m x yields y = 1 − 4 x as the equation of the boundary line. Since the shaded region represents all the points above this boundary line, it follows that the shaded region shown represents the solutions to the inequality y > 1 − 4 x.
Choice A is incorrect. This inequality represents a region below, not above, a boundary line with a slope of 4, not −4.
Choice B is incorrect. This inequality represents a region below, not above, the boundary line shown.
Choice C is incorrect. This inequality represents a region whose boundary line has a slope of 4, not −4.",
hasFigure: true,
figureUrl: "/practice-images/d02193fb_svg1.svg",
},
{
id: "e9ef0e6b",
type: "mcq",
questionHtml:
"A model estimates that whales from the genus Eschrichtius travel 72 to 77 miles in the ocean each day during their migration. Based on this model, which inequality represents the estimated total number of miles, x, a whale from the genus Eschrichtius could travel in 16 days of its migration?",
choices: [
{ label: "A", text: "72 + 16 < or = x < or = 77 + 16" },
{
label: "B",
text: "(72) (16) < or = x < or = (77) (16)",
},
{ label: "C", text: "72 < or = 16 + x < or = 77" },
{ label: "D", text: "72 < or = 16 x < or = 77" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It's given that the model estimates that whales from the genus Eschrichtius travel 72 to 77 miles in the ocean each day during their migration. If one of these whales travels 72 miles each day for 16 days, then the whale travels 72 (16) miles total. If one of these whales travels 77 miles each day for 16 days, then the whale travels 77 (16) miles total. Therefore, the model estimates that in 16 days of its migration, a whale from the genus Eschrichtius could travel at least 72 (16) and at most 77 (16) miles total. Thus, the inequality (72) (16) < or = x < or = (77) (16) represents the estimated total number of miles, x, a whale from the genus Eschrichtius could travel in 16 days of its migration.
Choice A is incorrect and may result from conceptual errors.
Choice C is incorrect and may result from conceptual errors.
Choice D is incorrect and may result from conceptual errors.",
hasFigure: false,
},
{
id: "f02b4509",
type: "mcq",
questionHtml:
"A moving truck can tow a trailer if the combined weight of the trailer and the boxes it contains is no more than 4, 600 pounds. What is the maximum number of boxes this truck can tow in a trailer with a weight of 500 pounds if each box weighs 120 pounds?",
choices: [
{ label: "A", text: "34" },
{ label: "B", text: "35" },
{ label: "C", text: "38" },
{ label: "D", text: "39" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. It’s given that the truck can tow a trailer if the combined weight of the trailer and the boxes it contains is no more than 4, 600 pounds. If the trailer has a weight of 500 pounds and each box weighs 120 pounds, the expression 500 + 120 b, where b is the number of boxes, gives the combined weight of the trailer and the boxes. Since the combined weight must be no more than 4, 600 pounds, the possible numbers of boxes the truck can tow are given by the inequality 500 + 120 b < or = 4, 600. Subtracting 500 from both sides of this inequality yields 120 b < or = 4, 100. Dividing both sides of this inequality by 120 yields b < or = (205) / (6), or b is less than or equal to approximately 34.17. Since the number of boxes, b, must be a whole number, the maximum number of boxes the truck can tow is the greatest whole number less than 34.17, which is 34.
Choice B is incorrect. Towing the trailer and 35 boxes would yield a combined weight of 4, 700 pounds, which is greater than 4, 600 pounds.
Choice C is incorrect. Towing the trailer and 38 boxes would yield a combined weight of 5, 060 pounds, which is greater than 4, 600 pounds.
Choice D is incorrect. Towing the trailer and 39 boxes would yield a combined weight of 5, 180 pounds, which is greater than 4, 600 pounds.",
hasFigure: false,
},
{
id: "f224df07",
type: "mcq",
questionHtml:
"A cargo helicopter delivers only 100-pound packages and 120-pound packages. For each delivery trip, the helicopter must carry at least 10 packages, and the total weight of the packages can be at most 1,100 pounds. What is the maximum number of 120-pound packages that the helicopter can carry per trip?",
choices: [
{ label: "A", text: "2" },
{ label: "B", text: "4" },
{ label: "C", text: "5" },
{ label: "D", text: "6" },
],
correctAnswer: "C",
explanation:
"Choice C is correct. Let a equal the number of 120-pound packages, and let b equal the number of 100-pound packages. It’s given that the total weight of the packages can be at most 1,100 pounds: the inequality 120 a + 100 b ≤ 1, 100 represents this situation. It’s also given that the helicopter must carry at least 10 packages: the inequality a + b ≥ 10 represents this situation. Values of a and b that satisfy these two inequalities represent the allowable numbers of 120-pound packages and 100-pound packages the helicopter can transport. To maximize the number of 120-pound packages, a, in the helicopter, the number of 100-pound packages, b, in the helicopter needs to be minimized. Expressing b in terms of a in the second inequality yields b ≥ 10 − a, so the minimum value of b is equal to 10 − a. Substituting 10 − a for b in the first inequality results in 120 a + 100 · (10 − a, ) ≤ 1, 100. Using the distributive property to rewrite this inequality yields 120 a + 1, 000 − 100 a ≤ 1, 100, or 20 a + 1, 000 ≤ 1, 100. Subtracting 1,000 from both sides of this inequality yields 20 a ≤ 100. Dividing both sides of this inequality by 20 results in a ≤ 5. This means that the maximum number of 120-pound packages that the helicopter can carry per trip is 5.Choices A, B, and D are incorrect and may result from incorrectly creating or solving the system of inequalities.",
hasFigure: false,
},
{
id: "f2bbd43d",
type: "mcq",
questionHtml:
"y > 14
4 x + y < 18
The point (x, 53) is a solution to the system of inequalities in the xy-plane. Which of the following could be the value of x?",
choices: [
{ label: "A", text: "−9" },
{ label: "B", text: "−5" },
{ label: "C", text: "5" },
{ label: "D", text: "9" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. It’s given that the point (x, 53) is a solution to the given system of inequalities in the xy-plane. This means that the coordinates of the point, when substituted for the variables x and y, make both of the inequalities in the system true. Substituting 53 for y in the inequality y > 14 yields 53 > 14, which is true. Substituting 53 for y in the inequality 4 x + y < 18 yields 4 x + 53 < 18. Subtracting 53 from both sides of this inequality yields 4 x < −35. Dividing both sides of this inequality by 4 yields x < −8.75. Therefore, x must be a value less than −8.75. Of the given choices, only −9 is less than −8.75.
Choice B is incorrect. Substituting −5 for x and 53 for y in the inequality 4 x + y < 18 yields 4 (−5) + 53 < 18, or 33 < 18, which is not true.
Choice C is incorrect. Substituting 5 for x and 53 for y in the inequality 4 x + y < 18 yields 4 (5) + 53 < 18, or 73 < 18, which is not true.
Choice D is incorrect. Substituting 9 for x and 53 for y in the inequality 4 x + y < 18 yields 4 (9) + 53 < 18, or 89 < 18, which is not true.",
hasFigure: false,
},
];
export const LINEAR_INEQ_HARD: PracticeQuestion[] = [
{
id: "03503d49",
type: "mcq",
questionHtml:
"A business owner plans to purchase the same model of chair for each of the 81 employees. The total budget to spend on these chairs is dollar sign 14, 000, which includes a 7 % sign sales tax. Which of the following is closest to the maximum possible price per chair, before sales tax, the business owner could pay based on this budget?",
choices: [
{ label: "A", text: "dollar sign 148.15" },
{ label: "B", text: "dollar sign 161.53" },
{ label: "C", text: "dollar sign 172.84" },
{ label: "D", text: "dollar sign 184.94" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. It’s given that a business owner plans to purchase 81 chairs. If p is the price per chair, the total price of purchasing 81 chairs is 81 p. It’s also given that 7 % sign sales tax is included, which is equivalent to 81 p multiplied by 1.07, or 81 (1.07) p. Since the total budget is dollar sign 14, 000, the inequality representing the situation is given by 81 (1.07) p < or = 14, 000. Dividing both sides of this inequality by 81 (1.07) and rounding the result to two decimal places gives p < or = 161.53. To not exceed the budget, the maximum possible price per chair is dollar sign 161.53.
Choice A is incorrect and may result from conceptual or calculation errors.
Choice C is incorrect. This is the maximum possible price per chair including sales tax, not the maximum possible price per chair before sales tax.
Choice D is incorrect. This is the maximum possible price if the sales tax is added to the total budget, not the maximum possible price per chair before sales tax.",
hasFigure: false,
},
{
id: "1035faea",
type: "mcq",
questionHtml:
"A psychologist set up an experiment to study the tendency of a person to select the first item when presented with a series of items. In the experiment, 300 people were presented with a set of five pictures arranged in random order. Each person was asked to choose the most appealing picture. Of the first 150 participants, 36 chose the first picture in the set. Among the remaining 150 participants, p people chose the first picture in the set. If more than 20% of all participants chose the first picture in the set, which of the following inequalities best describes the possible values of p ?",
choices: [
{
label: "A",
text: "p > 0 . 20 · (300 − 36, ), where p ≤ 150",
},
{
label: "B",
text: "p > 0 . 20 · (300 + 36, ), where p ≤ 150",
},
{
label: "C",
text: "p − 36 > 0 . 20 · 300, where p ≤ 150",
},
{
label: "D",
text: "p + 36 > 0 . 20 · 300, where p ≤ 150",
},
],
correctAnswer: "D",
explanation:
"Choice D is correct. Of the first 150 participants, 36 chose the first picture in the set, and of the 150 remaining participants, p chose the first picture in the set. Hence, the proportion of the participants who chose the first picture in the set is the fraction with numerator 36 + p, and denominator 300. Since more than 20% of all the participants chose the first picture, it follows that the fraction with numerator 36 + p, and denominator 300 > 0 . 2 0.This inequality can be rewritten as p + 36 > 0 . 2 0 · 300. Since p is a number of people among the remaining 150 participants, p ≤ 150.
Choices A, B, and C are incorrect and may be the result of some incorrect interpretations of the given information or of computational errors.",
hasFigure: false,
},
{
id: "1a621af4",
type: "spr",
questionHtml:
"A number x is at most 2 less than 3 times the value of y. If the value of y is −4, what is the greatest possible value of x?",
choices: [],
correctAnswer: "-14",
explanation:
"The correct answer is −14. It's given that a number x is at most 2 less than 3 times the value of y. Therefore, x is less than or equal to 2 less than 3 times the value of y. The expression 3 y represents 3 times the value of y. The expression 3 y − 2 represents 2 less than 3 times the value of y. Therefore, x is less than or equal to 3 y − 2. This can be shown by the inequality x < or = 3 y − 2. Substituting −4 for y in this inequality yields x < or = 3 (−4) − 2 or, x < or = −14. Therefore, if the value of y is −4, the greatest possible value of x is −14.",
hasFigure: false,
},
{
id: "45cfb9de",
type: "mcq",
questionHtml:
"Adam’s school is a 20-minute walk or a 5-minute bus ride away from his house. The bus runs once every 30 minutes, and the number of minutes, w, that Adam waits for the bus varies between 0 and 30. Which of the following inequalities gives the values of w for which it would be faster for Adam to walk to school?",
choices: [
{ label: "A", text: "w − 5 < 20" },
{ label: "B", text: "w − 5 > 20" },
{ label: "C", text: "w + 5 < 20" },
{ label: "D", text: "w + 5 > 20" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. It is given that w is the number of minutes that Adam waits for the bus. The total time it takes Adam to get to school on a day he takes the bus is the sum of the minutes, w, he waits for the bus and the 5 minutes the bus ride takes; thus, this time, in minutes, is w + 5. It is also given that the total amount of time it takes Adam to get to school on a day that he walks is 20 minutes. Therefore, w + 5 > 20 gives the values of w for which it would be faster for Adam to walk to school.Choices A and B are incorrect because w – 5 is not the total length of time for Adam to wait for and then take the bus to school. Choice C is incorrect because the inequality should be true when walking 20 minutes is faster than the time it takes Adam to wait for and ride the bus, not less.",
hasFigure: false,
},
{
id: "48fb34c8",
type: "mcq",
questionHtml:
"y > 13 x − 18
For which of the following tables are all the values of x and their corresponding values of y solutions to the given inequality?",
choices: [
{
label: "A",
text: "x
y
3
21
5
47
8
86",
},
{
label: "B",
text: "x
y
3
26
5
42
8
86",
},
{
label: "C",
text: "x
y
3
16
5
42
8
81",
},
{
label: "D",
text: "x
y
3
26
5
52
8
91",
},
],
correctAnswer: "D",
explanation:
"Choice D is correct. All the tables in the choices have the same three values of x, so each of the three values of x can be substituted in the given inequality to compare the corresponding values of y in each of the tables. Substituting 3 for x in the given inequality yields y > 13 (3) − 18, or y > 21. Therefore, when x = 3, the corresponding value of y is greater than 21. Substituting 5 for x in the given inequality yields y > 13 (5) − 18, or y > 47. Therefore, when x = 5, the corresponding value of y is greater than 47. Substituting 8 for x in the given inequality yields y > 13 (8) − 18, or y > 86. Therefore, when x = 8, the corresponding value of y is greater than 86. For the table in choice D, when x = 3, the corresponding value of y is 26, which is greater than 21; when x = 5, the corresponding value of y is 52, which is greater than 47; when x = 8, the corresponding value of y is 91, which is greater than 86. Therefore, the table in choice D gives values of x and their corresponding values of y that are all solutions to the given inequality.
Choice A is incorrect. In the table for choice A, when x = 3, the corresponding value of y is 21, which is not greater than 21; when x = 5, the corresponding value of y is 47, which is not greater than 47; when x = 8, the corresponding value of y is 86, which is not greater than 86.
Choice B is incorrect. In the table for choice B, when x = 5, the corresponding value of y is 42, which is not greater than 47; when x = 8, the corresponding value of y is 86, which is not greater than 86.
Choice C is incorrect. In the table for choice C, when x = 3, the corresponding value of y is 16, which is not greater than 21; when x = 5, the corresponding value of y is 42, which is not greater than 47; when x = 8, the corresponding value of y is 81, which is not greater than 86.",
hasFigure: false,
},
{
id: "541bef2f",
type: "mcq",
questionHtml:
"y < or = x + 7
y > or = −2 x − 1
Which point (x, y) is a solution to the given system of inequalities in the xy-plane?",
choices: [
{ label: "A", text: "(−14, 0)" },
{ label: "B", text: "(0 −14)" },
{ label: "C", text: "(0, 14)" },
{ label: "D", text: "(14, 0)" },
],
correctAnswer: "D",
explanation:
"Choice D is correct. A point (x, y) is a solution to a system of inequalities in the xy-plane if substituting the x-coordinate and the y-coordinate of the point for x and y, respectively, in each inequality makes both of the inequalities true. Substituting the x-coordinate and the y-coordinate of choice D, 14 and 0, for x and y, respectively, in the first inequality in the given system, y < or = x + 7, yields 0 < or = 14 + 7, or 0 < or = 21, which is true. Substituting 14 for x and 0 for y in the second inequality in the given system, y > or = − 2 x − 1, yields 0 > or = − 2 (14) − 1, or 0 > or = −29, which is true. Therefore, the point (14, 0) is a solution to the given system of inequalities in the xy-plane.
Choice A is incorrect. Substituting −14 for x and 0 for y in the inequality y < or = x + 7 yields 0 < or = −14 + 7, or 0 < or = −7, which is not true.
Choice B is incorrect. Substituting 0 for x and −14 for y in the inequality y > or = − 2 x − 1 yields −14 > or = − 2 (0) − 1, or −14 > or = −1, which is not true.
Choice C is incorrect. Substituting 0 for x and 14 for y in the inequality y < or = x + 7 yields 14 < or = 0 + 7, or 14 < or = 7, which is not true.",
hasFigure: false,
},
{
id: "5bf5136d",
type: "mcq",
questionHtml:
"The triangle inequality theorem states that the sum of any two sides of a triangle must be greater than the length of the third side. If a triangle has side lengths of 6 and 12, which inequality represents the possible lengths, x, of the third side of the triangle?",
choices: [
{ label: "A", text: "x < 18" },
{ label: "B", text: "x > 18" },
{ label: "C", text: "6 < x < 18" },
{ label: "D", text: "x < 6 or x > 18" },
],
correctAnswer: "C",
explanation:
"Choice C is correct. It’s given that a triangle has side lengths of 6 and 12, and x represents the length of the third side of the triangle. It’s also given that the triangle inequality theorem states that the sum of any two sides of a triangle must be greater than the length of the third side. Therefore, the inequalities 6 + x > 12, 6 + 12 > x, and 12 + x > 6 represent all possible values of x. Subtracting 6 from both sides of the inequality 6 + x > 12 yields x > 12 − 6, or x > 6. Adding 6 and 12 in the inequality 6 + 12 > x yields 18 > x, or x < 18. Subtracting 12 from both sides of the inequality 12 + x > 6 yields x > 6 − 12, or x > −6. Since all x-values that satisfy the inequality x > 6 also satisfy the inequality x > −6, it follows that the inequalities x > 6 and x < 18 represent the possible values of x. Therefore, the inequality 6 < x < 18 represents the possible lengths, x, of the third side of the triangle.
Choice A is incorrect. This inequality gives the upper bound for x but does not include its lower bound.
Choice B is incorrect and may result from conceptual or calculation errors.
Choice D is incorrect and may result from conceptual or calculation errors.",
hasFigure: false,
},
{
id: "6c71f3ec",
type: "mcq",
questionHtml:
"A salesperson’s total earnings consist of a base salary of x dollars per year, plus commission earnings of 11 % sign of the total sales the salesperson makes during the year. This year, the salesperson has a goal for the total earnings to be at least 3 times and at most 4 times the base salary. Which of the following inequalities represents all possible values of total sales s, in dollars, the salesperson can make this year in order to meet that goal?",
choices: [
{ label: "A", text: "2 x < or = s < or = 3 x" },
{
label: "B",
text: "(2) / (0.11) x < or = s < or = (3) / (0.11) x",
},
{ label: "C", text: "3 x < or = s < or = 4 x" },
{
label: "D",
text: "(3) / (0.11) x < or = s < or = (4) / (0.11) x",
},
],
correctAnswer: "B",
explanation:
"Choice B is correct. It’s given that a salesperson's total earnings consist of a base salary of x dollars per year plus commission earnings of 11 % sign of the total sales the salesperson makes during the year. If the salesperson makes s dollars in total sales this year, the salesperson’s total earnings can be represented by the expression x + 0.11 s. It’s also given that the salesperson has a goal for the total earnings to be at least 3 times and at most 4 times the base salary, which can be represented by the expressions 3 x and 4 x, respectively. Therefore, this situation can be represented by the inequality 3 x < or = x + 0.11 s < or = 4 x. Subtracting x from each part of this inequality yields 2 x < or = 0.11 s < or = 3 x. Dividing each part of this inequality by 0.11 yields (2) / (0.11) x < or = s < or = (3) / (0.11) x. Therefore, the inequality (2) / (0.11) x < or = s < or = (3) / (0.11) x represents all possible values of total sales s, in dollars, the salesperson can make this year in order to meet their goal.
Choice A is incorrect. This inequality represents a situation in which the total sales, rather than the total earnings, are at least 2 times and at most 3 times, rather than at least 3 times and at most 4 times, the base salary.
Choice C is incorrect. This inequality represents a situation in which the total sales, rather than the total earnings, are at least 3 times and at most 4 times the base salary.
Choice D is incorrect. This inequality represents a situation in which the total earnings are at least 4 times and at most 5 times, rather than at least 3 times and at most 4 times, the base salary.",
hasFigure: false,
},
{
id: "830120b0",
type: "mcq",
questionHtml:
"Which of the following consists of the y-coordinates of all the points that satisfy the system of inequalities above?",
choices: [
{ label: "A", text: "y > 6" },
{ label: "B", text: "y > 4" },
{ label: "C", text: "y > five-halves" },
{ label: "D", text: "y > three-halves" },
],
correctAnswer: "B",
explanation:
"Choice B is correct. Subtracting the same number from each side of an inequality gives an equivalent inequality. Hence, subtracting 1 from each side of the inequality 2 x > 5 gives 2 x − 1 > 4. So the given system of inequalities is equivalent to the system of inequalities y > 2 x − 1 and 2 x − 1 > 4, which can be rewritten as y > 2 x − 1, which > 4. Using the transitive property of inequalities, it follows that y > 4.Choice A is incorrect because there are points with a y-coordinate less than 6 that satisfy the given system of inequalities. For example, 3, 5 . 5 satisfies both inequalities. Choice C is incorrect. This may result from solving the inequality 2 x > 5 for x, then replacing x with y. Choice D is incorrect because this inequality allows y-values that are not the y-coordinate of any point that satisfies both inequalities. For example, y = 2 is contained in the set y > three halves; however, if 2 is substituted into the first inequality for y, the result is x < three halves. This cannot be true because the second inequality gives x > five halves.",
hasFigure: false,
},
{
id: "95cad55f",
type: "mcq",
questionHtml:
"A laundry service is buying detergent and fabric softener from its supplier. The supplier will deliver no more than 300 pounds in a shipment. Each container of detergent weighs 7.35 pounds, and each container of fabric softener weighs 6.2 pounds. The service wants to buy at least twice as many containers of detergent as containers of fabric softener. Let d represent the number of containers of detergent, and let s represent the number of containers of fabric softener, where d and s are nonnegative integers. Which of the following systems of inequalities best represents this situation?",
choices: [
{
label: "A",
text: "7 . three five d + 6 . 2 s ≤ 300, and, d ≥ 2 s",
},
{
label: "B",
text: "7 . three five d + 6 . 2 s ≤ 300, and, 2 d ≥ s",
},
{
label: "C",
text: "14 . 7 d + 6 . 2 s ≤ 300, and, d ≥ 2 s",
},
{
label: "D",
text: "14 . 7 d + 6 . 2 s ≤ 300, and, 2 d ≥ s",
},
],
correctAnswer: "A",
explanation:
"Choice A is correct. The number of containers in a shipment must have a weight less than or equal to 300 pounds. The total weight, in pounds, of detergent and fabric softener that the supplier delivers can be expressed as the weight of each container multiplied by the number of each type of container, which is 7.35d for detergent and 6.2s for fabric softener. Since this total cannot exceed 300 pounds, it follows that 7 . 3 5 d + 6 . 2 s ≤ 300. Also, since the laundry service wants to buy at least twice as many containers of detergent as containers of fabric softener, the number of containers of detergent should be greater than or equal to two times the number of containers of fabric softener. This can be expressed by the inequality d ≥ 2 s.
Choice B is incorrect because it misrepresents the relationship between the numbers of each container that the laundry service wants to buy. Choice C is incorrect because the first inequality of the system incorrectly doubles the weight per container of detergent. The weight of each container of detergent is 7.35, not 14.7 pounds. Choice D is incorrect because it doubles the weight per container of detergent and transposes the relationship between the numbers of containers.",
hasFigure: false,
},
{
id: "963da34c",
type: "mcq",
questionHtml:
"A shipping service restricts the dimensions of the boxes it will ship for a certain type of service. The restriction states that for boxes shaped like rectangular prisms, the sum of the perimeter of the base of the box and the height of the box cannot exceed 130 inches. The perimeter of the base is determined using the width and length of the box. If a box has a height of 60 inches and its length is 2.5 times the width, which inequality shows the allowable width x, in inches, of the box?",
choices: [
{ label: "A", text: "zero < x, which ≤ 10" },
{
label: "B",
text: "zero < x, which ≤ 11 and two-thirds",
},
{
label: "C",
text: "zero < x, which ≤ 17 and one-half",
},
{ label: "D", text: "zero < x, which ≤ 20" },
],
correctAnswer: "A",
explanation:
"Choice A is correct. If x is the width, in inches, of the box, then the length of the box is 2.5x inches. It follows that the perimeter of the base is 2 · (2 . 5 x + x, ), or 7x inches. The height of the box is given to be 60 inches. According to the restriction, the sum of the perimeter of the base and the height of the box should not exceed 130 inches. Algebraically, this can be represented by 7 x + 60 ≤ 130, or 7 x ≤ 70. Dividing both sides of the inequality by 7 gives x ≤ 10. Since x represents the width of the box, x must also be a positive number. Therefore, the inequality 0 < x, which ≤ 10 represents all the allowable values of x that satisfy the given conditions.Choices B, C, and D are incorrect and may result from calculation errors or misreading the given information.",
hasFigure: false,
},
{
id: "b8e73b5b",
type: "mcq",
questionHtml:
"Ken is working this summer as part of a crew on a farm. He earned $8 per hour for the first 10 hours he worked this week. Because of his performance, his crew leader raised his salary to $10 per hour for the rest of the week. Ken saves 90% of his earnings from each week. What is the least number of hours he must work the rest of the week to save at least $270 for the week?",
choices: [
{ label: "A", text: "38" },
{ label: "B", text: "33" },
{ label: "C", text: "22" },
{ label: "D", text: "16" },
],
correctAnswer: "C",
explanation:
"Choice C is correct. Ken earned $8 per hour for the first 10 hours he worked, so he earned a total of $80 for the first 10 hours he worked. For the rest of the week, Ken was paid at the rate of $10 per hour. Let x be the number of hours he will work for the rest of the week. The total of Ken’s earnings, in dollars, for the week will be 10 x + 80. He saves 90% of his earnings each week, so this week he will save 0 . 9 · (10 x + 80, ) dollars. The inequality 0 . 9 · (10 x + 80, ) ≥ 270 represents the condition that he will save at least $270 for the week. Factoring 10 out of the expression 10 x + 80 gives 10 · (x + 8, ). The product of 10 and 0.9 is 9, so the inequality can be rewritten as 9 · (x + 8, ) ≥ 270. Dividing both sides of this inequality by 9 yields x + 8 ≥ 30, so x ≥ 22. Therefore, the least number of hours Ken must work the rest of the week to save at least $270 for the week is 22.Choices A and B are incorrect because Ken can save $270 by working fewer hours than 38 or 33 for the rest of the week. Choice D is incorrect. If Ken worked 16 hours for the rest of the week, his total earnings for the week will be 80 dollars + 160 dollars = 240 dollars, which is less than $270. Since he saves only 90% of his earnings each week, he would save even less than $240 for the week.",
hasFigure: false,
},
{
id: "d8539e09",
type: "mcq",
questionHtml:
"y < 6 x + 2
For which of the following tables are all the values of x and their corresponding values of y solutions to the given inequality?",
choices: [
{
label: "A",
text: "x
y
3
20
5
32
7
44",
},
{
label: "B",
text: "x
y
3
16
5
36
7
40",
},
{
label: "C",
text: "x
y
3
16
5
28
7
40",
},
{
label: "D",
text: "x
y
3
24
5
36
7
48",
},
],
correctAnswer: "C",
explanation:
"Choice C is correct. All the tables in the choices have the same three values of x, so each of the three values of x can be substituted in the given inequality to compare the corresponding values of y in each of the tables. Substituting 3 for x in the given inequality yields y < 6 (3) + 2, or y < 20. Therefore, when x = 3, the corresponding value of y is less than 20. Substituting 5 for x in the given inequality yields y < 6 (5) + 2, or y < 32. Therefore, when x = 5, the corresponding value of y is less than 32. Substituting 7 for x in the given inequality yields y < 6 (7) + 2, or y < 44. Therefore, when x = 7, the corresponding value of y is less than 44. For the table in choice C, when x = 3, the corresponding value of y is 16, which is less than 20; when x = 5, the corresponding value of y is 28, which is less than 32; when x = 7, the corresponding value of y is 40, which is less than 44. Therefore, the table in choice C gives values of x and their corresponding values of y that are all solutions to the given inequality.
Choice A is incorrect. In the table for choice A, when x = 3, the corresponding value of y is 20, which is not less than 20; when x = 5, the corresponding value of y is 32, which is not less than 32; when x = 7, the corresponding value of y is 44, which is not less than 44.
Choice B is incorrect. In the table for choice B, when x = 5, the corresponding value of y is 36, which is not less than 32.
Choice D is incorrect. In the table for choice D, when x = 3, the corresponding value of y is 24, which is not less than 20; when x = 5, the corresponding value of y is 36, which is not less than 32; when x = 7, the corresponding value of y is 48, which is not less than 44.",
hasFigure: false,
},
{
id: "e8f9e117",
type: "spr",
questionHtml:
"The formula above is Ohm’s law for an electric circuit with current I, in amperes, potential difference V, in volts, and resistance R, in ohms. A circuit has a resistance of 500 ohms, and its potential difference will be generated by n six-volt batteries that produce a total potential difference of 6 n volts. If the circuit is to have a current of no more than 0.25 ampere, what is the greatest number, n, of six-volt batteries that can be used?",
choices: [],
correctAnswer: "",
explanation:
"The correct answer is 20. For the given circuit, the resistance R is 500 ohms, and the total potential difference V generated by n batteries is 6 n volts. It’s also given that the circuit is to have a current of no more than 0.25 ampere, which can be expressed as I < 0 . 2 5. Since Ohm’s law says that I = V over R, the given values for V and R can be substituted for I in this inequality, which yields 6 n over 500 < 0 . 2 5. Multiplying both sides of this inequality by 500 yields 6 n < 125, and dividing both sides of this inequality by 6 yields n < 20 . 8 3 3. Since the number of batteries must be a whole number less than 20.833, the greatest number of batteries that can be used in this circuit is 20.",
hasFigure: false,
},
{
id: "ee2f611f",
type: "spr",
questionHtml:
"A local transit company sells a monthly pass for $95 that allows an unlimited number of trips of any length. Tickets for individual trips cost $1.50, $2.50, or $3.50, depending on the length of the trip. What is the minimum number of trips per month for which a monthly pass could cost less than purchasing individual tickets for trips?",
choices: [],
correctAnswer: "",
explanation:
"The correct answer is 28. The minimum number of individual trips for which the cost of the monthly pass is less than the cost of individual tickets can be found by assuming the maximum cost of the individual tickets, $3.50. If n tickets costing $3.50 each are purchased in one month, the inequality 95 n represents this situation. Dividing both sides of the inequality by 3.50 yields 27.14 n, which is equivalent to n > 27.14. Since only a whole number of tickets can be purchased, it follows that 28 is the minimum number of trips.",
hasFigure: false,
},
{
id: "ee7b1de1",
type: "spr",
questionHtml:
"A small business owner budgets dollar sign 2, 200 to purchase candles. The owner must purchase a minimum of 200 candles to maintain the discounted pricing. If the owner pays dollar sign 4.90 per candle to purchase small candles and dollar sign 11.60 per candle to purchase large candles, what is the maximum number of large candles the owner can purchase to stay within the budget and maintain the discounted pricing?",
choices: [],
correctAnswer: "182",
explanation:
"The correct answer is 182. Let s represent the number of small candles the owner can purchase, and let script l represent the number of large candles the owner can purchase. It’s given that the owner pays dollar sign 4.90 per candle to purchase small candles and dollar sign 11.60 per candle to purchase large candles. Therefore, the owner pays 4.90 s dollars for s small candles and 11.60 script l dollars for script l large candles, which means the owner pays a total of 4.90 s + 11.60 script l dollars to purchase candles. It’s given that the owner budgets dollar sign 2, 200 to purchase candles. Therefore, 4.90 s + 11.60 script l < or = 2, 200. It’s also given that the owner must purchase a minimum of 200 candles. Therefore, s + script l > or = 200. The inequalities 4.90 s + 11.60 script l < or = 2, 200 and s + script l > or = 200 can be combined into one compound inequality by rewriting the second inequality so that its left-hand side is equivalent to the left-hand side of the first inequality. Subtracting script l from both sides of the inequality s + script l > or = 200 yields s > or = 200 − script l. Multiplying both sides of this inequality by 4.90 yields 4.90 s > or = 4.90 (200 − script l), or 4.90 s > or = 980 − 4.90 script l. Adding 11.60 script l to both sides of this inequality yields 4.90 s + 11.60 script l > or = 980 − 4 . 90 script l + 11 . 60 script l, or 4.90 s + 11.60 script l > or = 980 + 6.70 script l. This inequality can be combined with the inequality 4.90 s + 11.60 script l < or = 2, 200, which yields the compound inequality 980 + 6.70 script l < or = 4.90 s + 11.60 script l < or = 2, 200. It follows that 980 + 6.70 script l < or = 2, 200. Subtracting 980 from both sides of this inequality yields 6.70 script l < or = 2, 200. Dividing both sides of this inequality by 6.70 yields approximately script l < or = 182.09. Since the number of large candles the owner purchases must be a whole number, the maximum number of large candles the owner can purchase is the largest whole number less than 182.09, which is 182.",
hasFigure: false,
},
];