671 lines
72 KiB
TypeScript
671 lines
72 KiB
TypeScript
import { type PracticeQuestion } from "../../types/lesson";
|
||
|
||
export const AREA_VOL_EASY: PracticeQuestion[] = [
|
||
{
|
||
id: "02b02213",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"What is the perimeter, in inches, of a rectangle with a length of <strong>4</strong> inches and a width of <strong>9</strong> inches?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>13</strong>" },
|
||
{ label: "B", text: "<strong>17</strong>" },
|
||
{ label: "C", text: "<strong>22</strong>" },
|
||
{ label: "D", text: "<strong>26</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The perimeter of a figure is equal to the sum of the measurements of the sides of the figure. It’s given that the rectangle has a length of <strong>4</strong> inches and a width of <strong>9</strong> inches. Since a rectangle has <strong>4</strong> sides, of which opposite sides are parallel and equal, it follows that the rectangle has two sides with a length of <strong>4</strong> inches and two sides with a width of <strong>9</strong> inches. Therefore, the perimeter of this rectangle is <strong>4 + 4 + 9 + 9</strong>, or <strong>26</strong> inches.<br>Choice A is incorrect. This is the sum, in inches, of the length and the width of the rectangle.<br>Choice B is incorrect. This is the sum, in inches, of the two lengths and the width of the rectangle.<br>Choice C is incorrect. This is the sum, in inches, of the length and the two widths of the rectangle.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "0837c3b9",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"Triangle ABC and triangle DEF are similar triangles, where <strong>A B</strong> and <strong>D E</strong> are corresponding sides. If <strong>the length of D E = 2 · the length of A B</strong> and the perimeter of triangle ABC is 20, what is the perimeter of triangle DEF ?",
|
||
choices: [
|
||
{ label: "A", text: "10" },
|
||
{ label: "B", text: "40" },
|
||
{ label: "C", text: "80" },
|
||
{ label: "D", text: "120" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. Since triangles ABC and DEF are similar and <strong>the length of side D E = 2 · the length of side A B</strong>, the length of each side of triangle DEF is two times the length of its corresponding side in triangle ABC. Therefore, the perimeter of triangle DEF is two times the perimeter of triangle ABC. Since the perimeter of triangle ABC is 20, the perimeter of triangle DEF is 40.Choice A is incorrect. This is half, not two times, the perimeter of triangle ABC. Choice C is incorrect. This is two times the perimeter of triangle DEF rather than two times the perimeter of triangle ABC. Choice D is incorrect. This is six times, not two times, the perimeter of triangle ABC.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "165c30c4",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A rectangle has a length of <strong>64</strong> inches and a width of <strong>32</strong> inches. What is the area, in square inches, of the rectangle?",
|
||
choices: [],
|
||
correctAnswer: "2048",
|
||
explanation:
|
||
"The correct answer is <strong>2, 048</strong>. The area <strong>A</strong>, in square inches, of a rectangle is equal to the product of its length <strong>script l</strong>, in inches, and its width <strong>w</strong>, in inches, or <strong>A = script l w</strong>. It's given that the rectangle has a length of <strong>64</strong> inches and a width of <strong>32</strong> inches. Substituting <strong>64</strong> for <strong>script l</strong> and <strong>32</strong> for <strong>w</strong> in the equation <strong>A = script l w</strong> yields <strong>A = (64) (32)</strong>, or <strong>A = 2, 048</strong>. Therefore, the area, in square inches, of the rectangle is <strong>2, 048</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "29e9b28c",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The lengths of the sides are x, y, and z.<br>A note indicates the figure is not drawn to scale.<br><br> <br>The triangle shown has a perimeter of <strong>22</strong> units. If <strong>x = 9</strong> units and <strong>y = 7</strong> units, what is the value of <strong>z</strong>, in units?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>6</strong>" },
|
||
{ label: "B", text: "<strong>7</strong>" },
|
||
{ label: "C", text: "<strong>9</strong>" },
|
||
{ label: "D", text: "<strong>16</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The perimeter of a triangle is the sum of the lengths of its three sides. The triangle shown has side lengths <strong>x</strong>, <strong>y</strong>, and <strong>z</strong>. It's given that the triangle has a perimeter of <strong>22</strong> units. Therefore, <strong>x + y + z = 22</strong>. If <strong>x = 9</strong> units and <strong>y = 7</strong> units, the value of <strong>z</strong>, in units, can be found by substituting <strong>9</strong> for <strong>x</strong> and <strong>7</strong> for <strong>y</strong> in the equation <strong>x + y + z = 22</strong>, which yields <strong>9 + 7 + z = 22</strong>, or <strong>16 + z = 22</strong>. Subtracting <strong>16</strong> from both sides of this equation yields <strong>z = 6</strong>. Therefore, if <strong>x = 9</strong> units and <strong>y = 7</strong> units, the value of <strong>z</strong>, in units, is <strong>6</strong>.<br>Choice B is incorrect. This is the value of <strong>y</strong>, in units, not the value of <strong>z</strong>, in units.<br>Choice C is incorrect. This is the value of <strong>x</strong>, in units, not the value of <strong>z</strong>, in units.<br>Choice D is incorrect. This is the value of <strong>x + y</strong>, in units, not the value of <strong>z</strong>, in units.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/29e9b28c_svg1.svg",
|
||
},
|
||
{
|
||
id: "3453aafc",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"What is the area, in square centimeters, of a rectangle with a length of <strong>36</strong> centimeters and a width of <strong>34</strong> centimeters?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>70</strong>" },
|
||
{ label: "B", text: "<strong>140</strong>" },
|
||
{ label: "C", text: "<strong>1, 156</strong>" },
|
||
{ label: "D", text: "<strong>1, 224</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The area <strong>A</strong>, in square centimeters, of a rectangle can be found using the formula <strong>A = script l w</strong>, where <strong>script l</strong> is the length, in centimeters, of the rectangle and <strong>w</strong> is its width, in centimeters. It's given that the rectangle has a length of <strong>36</strong> centimeters and a width of <strong>34</strong> centimeters. Substituting <strong>36</strong> for <strong>script l</strong> and <strong>34</strong> for <strong>w</strong> in the formula <strong>A = script l w</strong> yields <strong>A = 36 (34)</strong>, or <strong>A = 1, 224</strong>. Therefore, the area, in square centimeters, of this rectangle is <strong>1, 224</strong>.<br>Choice A is incorrect and may result from conceptual or calculation errors.<br>Choice B is incorrect. This is the perimeter, in centimeters, not the area, in square centimeters, of the rectangle.<br>Choice C is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "4420e500",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"What is the area of a rectangle with a length of <strong>4 centimeters (cm)</strong> and a width of <strong>2 cm</strong>?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>6 cm²</strong>" },
|
||
{ label: "B", text: "<strong>8 cm²</strong>" },
|
||
{ label: "C", text: "<strong>12 cm²</strong>" },
|
||
{ label: "D", text: "<strong>36 cm²</strong>" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. The area of a rectangle with length <strong>script l</strong> and width <strong>w</strong> can be found using the formula <strong>A = script l w</strong>. It’s given that the rectangle has a length of <strong>4 cm</strong> and a width of <strong>2 cm</strong>. Therefore, the area of this rectangle is <strong>(4 cm) (2 cm)</strong>, or <strong>8 cm²</strong>.<br>Choice A is incorrect. This is the sum, <strong>in cm</strong>, of the length and width of the rectangle, not the area, <strong>in cm²</strong>.<br>Choice C is incorrect. This is the perimeter, <strong>in cm</strong>, of the rectangle, not the area, <strong>in cm²</strong>.<br>Choice D is incorrect. This is the sum of the length and width of the rectangle squared, not the area.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "5252e606",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The side length of a square is <strong>55 centimeters (cm)</strong>. What is the area, <strong>in cm²</strong>, of the square?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>110</strong>" },
|
||
{ label: "B", text: "<strong>220</strong>" },
|
||
{ label: "C", text: "<strong>3, 025</strong>" },
|
||
{ label: "D", text: "<strong>12, 100</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The area <strong>A</strong>, <strong>in square centimeters (cm²)</strong>, of a square with side length <strong>s</strong>, <strong>in cm</strong>, is given by the formula <strong>A = s²</strong>. It’s given that the square has a side length of <strong>55 cm</strong>. Substituting <strong>55</strong> for <strong>s</strong> in the formula <strong>A = s²</strong> yields <strong>A = 55²</strong>, or <strong>A = 3, 025</strong>. Therefore, the area, <strong>in cm²</strong>, of the square is <strong>3, 025</strong>.<br>Choice A is incorrect and may result from conceptual or calculation errors.<br>Choice B is incorrect. This is the perimeter, <strong>in cm</strong>, of the square, not its area, <strong>in cm²</strong>.<br>Choice D is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "575f1e12",
|
||
type: "spr",
|
||
questionHtml:
|
||
"What is the area, in square centimeters, of a rectangle with a length of <strong>34 centimeters (cm)</strong> and a width of <strong>29 cm</strong>?",
|
||
choices: [],
|
||
correctAnswer: "986",
|
||
explanation:
|
||
"The correct answer is <strong>986</strong>. The area, <strong>A</strong>, of a rectangle is given by <strong>A = script l w</strong>, where <strong>script l</strong> is the length of the rectangle and <strong>w</strong> is its width. It’s given that the length of the rectangle is <strong>34</strong> centimeters (cm) and the width is <strong>29</strong> cm. Substituting <strong>34</strong> for <strong>script l</strong> and <strong>29</strong> for <strong>w</strong> in the equation <strong>A = script l w</strong> yields <strong>A = (34) (29)</strong>, or <strong>A = 986</strong>. Therefore, the area, in square centimeters, of this rectangle is <strong>986</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "59cb654c",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The area of a square is <strong>64</strong> square inches. What is the side length, in inches, of this square?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>8</strong>" },
|
||
{ label: "B", text: "<strong>16</strong>" },
|
||
{ label: "C", text: "<strong>64</strong>" },
|
||
{ label: "D", text: "<strong>128</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. It's given that the area of a square is <strong>64</strong> square inches. The area <strong>A</strong>, in square inches, of a square is given by the formula <strong>A = s²</strong>, where <strong>s</strong> is the side length, in inches, of the square. Substituting <strong>64</strong> for <strong>A</strong> in this formula yields <strong>64 = s²</strong>. Taking the positive square root of both sides of this equation yields <strong>8 = s</strong>. Thus, the side length, in inches, of this square is <strong>8</strong>.<br>Choice B is incorrect and may result from conceptual or calculation errors.<br>Choice C is incorrect. This is the area, in square inches, of the square, not the side length, in inches, of the square.<br>Choice D is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "76670c80",
|
||
type: "spr",
|
||
questionHtml:
|
||
"Each side of a square has a length of <strong>45</strong>. What is the perimeter of this square?",
|
||
choices: [],
|
||
correctAnswer: "180",
|
||
explanation:
|
||
"The correct answer is <strong>180</strong>. The perimeter of a polygon is equal to the sum of the lengths of the sides of the polygon. It’s given that each side of the square has a length of <strong>45</strong>. Since a square is a polygon with <strong>4</strong> sides, the perimeter of this square is <strong>45 + 45 + 45 + 45</strong>, or <strong>180</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "c88183f7",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A rectangle has a length of <strong>13</strong> and a width of <strong>6</strong>. What is the perimeter of the rectangle?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>12</strong>" },
|
||
{ label: "B", text: "<strong>26</strong>" },
|
||
{ label: "C", text: "<strong>38</strong>" },
|
||
{ label: "D", text: "<strong>52</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The perimeter of a quadrilateral is the sum of the lengths of its four sides. It's given that the rectangle has a length of <strong>13</strong> and a width of <strong>6</strong>. It follows that the rectangle has two sides with length <strong>13</strong> and two sides with length <strong>6</strong>. Therefore, the perimeter of the rectangle is <strong>13 + 13 + 6 + 6</strong>, or <strong>38</strong>.<br>Choice A is incorrect. This is the sum of the lengths of the two sides with length <strong>6</strong>, not the sum of the lengths of all four sides of the rectangle.<br>Choice B is incorrect. This is the sum of the lengths of the two sides with length <strong>13</strong>, not the sum of the lengths of all four sides of the rectangle.<br>Choice D is incorrect. This is the perimeter of a rectangle that has four sides with length <strong>13</strong>, not two sides with length <strong>13</strong> and two sides with length <strong>6</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "d0b6d927",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A rectangle has an area of <strong>63</strong> square meters and a length of <strong>9</strong> meters. What is the width, in meters, of the rectangle?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>7</strong>" },
|
||
{ label: "B", text: "<strong>54</strong>" },
|
||
{ label: "C", text: "<strong>81</strong>" },
|
||
{ label: "D", text: "<strong>567</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The area <strong>A</strong>, in square meters, of a rectangle is the product of its length <strong>script l</strong>, in meters, and its width <strong>w</strong>, in meters; thus, <strong>A = script l w</strong>. It's given that a rectangle has an area of <strong>63</strong> square meters and a length of <strong>9</strong> meters. Substituting <strong>63</strong> for <strong>A</strong> and <strong>9</strong> for <strong>script l</strong> in the equation <strong>A = script l w</strong> yields <strong>63 = 9 w</strong>. Dividing both sides of this equation by <strong>9</strong> yields <strong>7 = w</strong>. Therefore, the width, in meters, of the rectangle is <strong>7</strong>.<br>Choice B is incorrect. This is the difference between the area, in square meters, and the length, in meters, of the rectangle, not the width, in meters, of the rectangle.<br>Choice C is incorrect. This is the square of the length, in meters, not the width, in meters, of the rectangle.<br>Choice D is incorrect. This is the product of the area, in square meters, and the length, in meters, of the rectangle, not the width, in meters, of the rectangle.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "d2047497",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"What is the area of a rectangle with a length of <strong>17 centimeters (cm)</strong> and a width of <strong>7 cm</strong>?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>24 cm²</strong>" },
|
||
{ label: "B", text: "<strong>48 cm²</strong>" },
|
||
{ label: "C", text: "<strong>119 cm²</strong>" },
|
||
{ label: "D", text: "<strong>576 cm²</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The area of a rectangle with length <strong>l</strong> and width <strong>w</strong> can be found using the formula <strong>A = l w</strong>. It’s given that the rectangle has a length of <strong>17 cm</strong> and a width of <strong>7 cm</strong>. Therefore, the area of this rectangle is <strong>A = 17 (7)</strong>, or <strong>119 cm²</strong>.<br>Choice A is incorrect. This is the sum of the length and width of the rectangle, not the area.<br>Choice B is incorrect. This is the perimeter of the rectangle, not the area.<br>Choice D is incorrect. This is the sum of the length and width of the rectangle squared, not the area.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "d683a9cc",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The figure shows the lengths, in centimeters (cm), of the edges of a right rectangular prism. The volume V of a right rectangular prism is <strong>l w h</strong>, where <strong>l</strong> is the length of the prism, w is the width of the prism, and h is the height of the prism. What is the volume, in cubic centimeters, of the prism?",
|
||
choices: [
|
||
{ label: "A", text: "36" },
|
||
{ label: "B", text: "24" },
|
||
{ label: "C", text: "12" },
|
||
{ label: "D", text: "11" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. It’s given that the volume of a right rectangular prism is <strong>l w h</strong>. The prism shown has a length of 6 cm, a width of 2 cm, and a height of 3 cm. Thus, <strong>l w h = 6 · 2 · 3</strong>, or 36 cubic centimeters.Choice B is incorrect. This is the volume of a rectangular prism with edge lengths of 6, 2, and 2. Choice C is incorrect and may result from only finding the product of the length and width of the base of the prism. Choice D is incorrect and may result from finding the sum, not the product, of the edge lengths of the prism.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/d683a9cc_img1.png",
|
||
},
|
||
{
|
||
id: "f60bb551",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The area of a rectangle is <strong>630</strong> square inches. The length of the rectangle is <strong>70</strong> inches. What is the width, in inches, of this rectangle?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>9</strong>" },
|
||
{ label: "B", text: "<strong>70</strong>" },
|
||
{ label: "C", text: "<strong>315</strong>" },
|
||
{ label: "D", text: "<strong>560</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The area <strong>A</strong>, in square inches, of a rectangle is the product of its length <strong>script l</strong>, in inches, and its width <strong>w</strong>, in inches; thus, <strong>A = script l w</strong>. It's given that the area of a rectangle is <strong>630</strong> square inches and the length of the rectangle is <strong>70</strong> inches. Substituting <strong>630</strong> for <strong>A</strong> and <strong>70</strong> for <strong>script l</strong> in the equation <strong>A = script l w</strong> yields <strong>630 = 70 w</strong>. Dividing both sides of this equation by <strong>70</strong> yields <strong>9 = w</strong>. Therefore, the width, in inches, of this rectangle is <strong>9</strong>.<br>Choice B is incorrect. This is the length, not the width, in inches, of the rectangle.<br>Choice C is incorrect. This is half the area, in square inches, not the width, in inches, of the rectangle.<br>Choice D is incorrect. This is the difference between the area, in square inches, and the length, in inches, of the rectangle, not the width, in inches, of the rectangle.",
|
||
hasFigure: false,
|
||
},
|
||
];
|
||
|
||
export const AREA_VOL_MEDIUM: PracticeQuestion[] = [
|
||
{
|
||
id: "08b7a3f5",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A triangular prism has a height of <strong>8 centimeters (cm)</strong> and a volume of <strong>216 cm³</strong>. What is the area, <strong>in cm²</strong>, of the base of the prism? (The volume of a triangular prism is equal to <strong>B h</strong>, where <strong>B</strong> is the area of the base and <strong>h</strong> is the height of the prism.)",
|
||
choices: [],
|
||
correctAnswer: "27",
|
||
explanation:
|
||
"The correct answer is <strong>27</strong>. It's given that a triangular prism has a volume of <strong>216 cubic centimeters (cm³)</strong> and the volume of a triangular prism is equal to <strong>B h</strong>, where <strong>B</strong> is the area of the base and <strong>h</strong> is the height of the prism. Therefore, <strong>216 = B h</strong>. It's also given that the triangular prism has a height of <strong>8 cm</strong>. Therefore, <strong>h = 8</strong>. Substituting <strong>8</strong> for <strong>h</strong> in the equation <strong>216 = B h</strong> yields <strong>216 = B (8)</strong>. Dividing both sides of this equation by <strong>8</strong> yields <strong>27 = B</strong>. Therefore, the area, <strong>in cm²</strong>, of the base of the prism is <strong>27</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "151eda3c",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A manufacturing company produces two sizes of cylindrical containers that each have a height of 50 centimeters. The radius of container A is 16 centimeters, and the radius of container B is 25% longer than the radius of container A. What is the volume, in cubic centimeters, of container B?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>16, 000 π</strong>" },
|
||
{ label: "B", text: "<strong>20, 000 π</strong>" },
|
||
{ label: "C", text: "<strong>25, 000 π</strong>" },
|
||
{ label: "D", text: "<strong>31, 250 π</strong>" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. If the radius of container A is 16 centimeters and the radius of container B is 25% longer than the radius of container A, then the radius of container B is <strong>16 + 0 . 2 5 · 16 = 20</strong> centimeters. The volume of a cylinder is <strong>π · r² · h</strong>, where r is the radius of the cylinder and h is its height. Substituting <strong>r = 20</strong> and <strong>h = 50</strong> into <strong>π · r² · h</strong> yields that the volume of cylinder B is <strong>π · (20, ), ² · 50 = 20, 000 π</strong> cubic centimeters.Choice A is incorrect and may result from multiplying the radius of cylinder B by the radius of cylinder A rather than squaring the radius of cylinder B. Choice C is incorrect and may result from multiplying the radius of cylinder B by 25 rather than squaring it. Choice D is incorrect and may result from taking the radius of cylinder B to be 25 centimeters rather than 20 centimeters.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "1f0b582e",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"Square X has a side length of <strong>12</strong> centimeters. The perimeter of square Y is <strong>2</strong> times the perimeter of square X. What is the length, in centimeters, of one side of square Y?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>6</strong>" },
|
||
{ label: "B", text: "<strong>10</strong>" },
|
||
{ label: "C", text: "<strong>14</strong>" },
|
||
{ label: "D", text: "<strong>24</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The perimeter, <strong>P</strong>, of a square can be found using the formula <strong>P = 4 s</strong>, where <strong>s</strong> is the length of each side of the square. It's given that square X has a side length of <strong>12</strong> centimeters. Substituting <strong>12</strong> for <strong>s</strong> in the formula for the perimeter of a square yields <strong>P = 4 (12)</strong>, or <strong>P = 48</strong>. Therefore, the perimeter of square X is <strong>48</strong> centimeters. It’s also given that the perimeter of square Y is <strong>2</strong> times the perimeter of square X. Therefore, the perimeter of square Y is <strong>2 (48)</strong>, or <strong>96</strong>, centimeters. Substituting <strong>96</strong> for <strong>P</strong> in the formula <strong>P = 4 s</strong> gives <strong>96 = 4 s</strong>. Dividing both sides of this equation by <strong>4</strong> gives <strong>24 = s</strong>. Therefore, the length of one side of square Y is <strong>24</strong> centimeters.<br>Choice A is incorrect and may result from conceptual or calculation errors.<br>Choice B is incorrect and may result from conceptual or calculation errors.<br>Choice C is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "37dde49f",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"<strong>The figure presents a cylindrical shape with a circular base and a larger circular top. The diameter of the circular base is labeled “k over 2, ” the diameter of the circular top is labeled “k, ” and the height is labeled “k.” The volume of the figure = the fraction with numerator 7 π k³, and denominator 48</strong>The glass pictured above can hold a maximum volume of 473 cubic centimeters, which is approximately 16 fluid ounces. What is the value of k, in centimeters?",
|
||
choices: [
|
||
{ label: "A", text: "2.52" },
|
||
{ label: "B", text: "7.67" },
|
||
{ label: "C", text: "7.79" },
|
||
{ label: "D", text: "10.11" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. Using the volume formula <strong>V = the fraction with numerator 7 π · k³, and denominator 48</strong> and the given information that the volume of the glass is 473 cubic centimeters, the value of k can be found as follows:<br> <strong>473 = the fraction with numerator 7 π · k³, and denominator 48</strong><br><br> <strong>k³ = the fraction with numerator 473 · 48, and denominator 7 π, end fraction</strong><br><br> <strong>k = the cube root of the fraction with numerator 473 · 48, and denominator 7 π, end fraction, end root, which is ≈ 10 . 1 0 6 9 0</strong><br>Therefore, the value of k is approximately 10.11 centimeters.<br>Choices A, B, and C are incorrect. Substituting the values of k from these choices in the formula results in volumes of approximately 7 cubic centimeters, 207 cubic centimeters, and 217 cubic centimeters, respectively, all of which contradict the given information that the volume of the glass is 473 cubic centimeters.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/37dde49f_img1.png",
|
||
},
|
||
{
|
||
id: "38517165",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A circle has a circumference of <strong>31 π</strong> centimeters. What is the diameter, in centimeters, of the circle?",
|
||
choices: [],
|
||
correctAnswer: "31",
|
||
explanation:
|
||
"The correct answer is <strong>31</strong>. The circumference of a circle is equal to <strong>2 π r</strong> centimeters, where <strong>r</strong> represents the radius, in centimeters, of the circle, and the diameter of the circle is equal to <strong>2 r</strong> centimeters. It's given that a circle has a circumference of <strong>31 π</strong> centimeters. Therefore, <strong>31 π = 2 π r</strong>. Dividing both sides of this equation by <strong>π</strong> yields <strong>31 = 2 r</strong>. Since the diameter of the circle is equal to <strong>2 r</strong> centimeters, it follows that the diameter, in centimeters, of the circle is <strong>31</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "5afbdc8e",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"What is the length of one side of a square that has the same area as a circle with radius 2 ?",
|
||
choices: [
|
||
{ label: "A", text: "2" },
|
||
{ label: "B", text: "<strong>the √ 2 π, end root</strong>" },
|
||
{ label: "C", text: "<strong>2 · the √ π</strong>" },
|
||
{ label: "D", text: "<strong>2 π</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The area A of a circle with radius r is given by the formula <strong>A = π · r²</strong>. Thus, a circle with radius 2 has area <strong>π · 2²</strong>, which can be rewritten as <strong>4 π</strong>. The area of a square with side length s is given by the formula <strong>A = s²</strong>. Thus, if a square has the same area as a circle with radius 2, then <strong>s² = 4 π</strong>. Since the side length of a square must be a positive number, taking the square root of both sides of <strong>s² = 4 π</strong> gives <strong>s = the √ 4 π, end root</strong>. Using the properties of square roots, <strong>the √ 4 π, end root</strong> can be rewritten as <strong>(the √ 4, ) · (the √ π, )</strong>, which is equivalent to <strong>2 · the √ π</strong>. Therefore, <strong>s = 2 · the √ π</strong>.Choice A is incorrect. The side length of the square isn’t equal to the radius of the circle. Choices B and D are incorrect and may result from incorrectly simplifying the expression <strong>the √ 4 π, end root</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "a2e76b60",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A cylindrical can containing pieces of fruit is filled to the top with syrup before being sealed. The base of the can has an area of <strong>75 centimeters²</strong>, and the height of the can is 10 cm. If <strong>110 centimeters³</strong> of syrup is needed to fill the can to the top, which of the following is closest to the total volume of the pieces of fruit in the can?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>7 . 5 centimeters³</strong>" },
|
||
{ label: "B", text: "<strong>185 centimeters³</strong>" },
|
||
{ label: "C", text: "<strong>640 centimeters³</strong>" },
|
||
{ label: "D", text: "<strong>750 centimeters³</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The total volume of the cylindrical can is found by multiplying the area of the base of the can, <strong>75 square centimeters</strong>, by the height of the can, 10 cm, which yields <strong>750 cubic centimeters</strong>. If the syrup needed to fill the can has a volume of <strong>110 cubic centimeters</strong>, then the remaining volume for the pieces of<br><br>fruit is <strong>750 − 110 = 640 cubic centimeters</strong>.Choice A is incorrect because if the fruit had a volume of <strong>7 . 5 cubic centimeters</strong>, there would be <strong>750 − 7 . 5 = 742 . 5 cubic centimeters</strong> of syrup needed to fill the can to the top. Choice B is incorrect because if the fruit had a volume of <strong>185 cubic centimeters</strong>, there would be <strong>750 − 185 = 565 cubic centimeters</strong> of syrup needed to fill the can to the top. Choice D is incorrect because it is the total volume of the can, not just of the pieces of fruit.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "c0586eb5",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A cylinder has a diameter of <strong>8</strong> inches and a height of <strong>12</strong> inches. What is the volume, in cubic inches, of the cylinder?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>16 π</strong>" },
|
||
{ label: "B", text: "<strong>96 π</strong>" },
|
||
{ label: "C", text: "<strong>192 π</strong>" },
|
||
{ label: "D", text: "<strong>768 π</strong>" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The base of a cylinder is a circle with a diameter equal to the diameter of the cylinder. The volume, <strong>V</strong>, of a cylinder can be found by multiplying the area of the circular base, <strong>A</strong>, by the height of the cylinder, <strong>h</strong>, or <strong>V = A h</strong>. The area of a circle can be found using the formula <strong>A = π r²</strong>, where <strong>r</strong> is the radius of the circle. It’s given that the diameter of the cylinder is <strong>8</strong> inches. Thus, the radius of this circle is <strong>4</strong> inches. Therefore, the area of the circular base of the cylinder is <strong>A = π (4)²</strong>, or <strong>16 π</strong> square inches. It’s given that the height <strong>h</strong> of the cylinder is <strong>12</strong> inches. Substituting <strong>16 π</strong> for <strong>A</strong> and <strong>12</strong> for <strong>h</strong> in the formula <strong>V = A h</strong> gives <strong>V = 16 π (12)</strong>, or <strong>192 π</strong> cubic inches.<br>Choice A is incorrect. This is the area of the circular base of the cylinder.<br>Choice B is incorrect and may result from using <strong>8</strong>, instead of <strong>16</strong>, as the value of <strong>r²</strong> in the formula for the area of a circle.<br>Choice D is incorrect and may result from using <strong>8</strong>, instead of <strong>4</strong>, for the radius of the circular base.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "cf53cb56",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"In the xy-plane shown, square ABCD has its diagonals on the x- and y-axes. What is the area, in square units, of the square?",
|
||
choices: [
|
||
{ label: "A", text: "20" },
|
||
{ label: "B", text: "25" },
|
||
{ label: "C", text: "50" },
|
||
{ label: "D", text: "100" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The two diagonals of square ABCD divide the square into 4 congruent right triangles, where each triangle has a vertex at the origin of the graph shown. The formula for the area of a triangle is <strong>A = one half · b h</strong>, where b is the base length of the triangle and h is the height of the triangle. Each of the 4 congruent right triangles has a height of 5 units and a base length of 5 units. Therefore, the area of each triangle is <strong>A = one half · 5 · 5</strong>, or 12.5 square units. Since the 4 right triangles are congruent, the area of each is <strong>one fourth</strong> of the area of square ABCD. It follows that the area of the square ABCD is equal to <strong>4 · 12 . 5</strong>, or 50 square units.Choices A and D are incorrect and may result from using 5 or 25, respectively, as the area of one of the 4 congruent right triangles formed by diagonals of square ABCD. However, the area of these triangles is 12.5. Choice B is incorrect and may result from using 5 as the length of one side of square ABCD. However, the length of a side of square ABCD is <strong>5 · the √ 2</strong>.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/cf53cb56_img1.png",
|
||
},
|
||
{
|
||
id: "e336a1d2",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A cube has an edge length of <strong>41</strong> inches. What is the volume, in cubic inches, of the cube?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>164</strong>" },
|
||
{ label: "B", text: "<strong>1, 681</strong>" },
|
||
{ label: "C", text: "<strong>10, 086</strong>" },
|
||
{ label: "D", text: "<strong>68, 921</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The volume, <strong>V</strong>, of a cube can be found using the formula <strong>V = s³</strong>, where <strong>s</strong> is the edge length of the cube. It's given that a cube has an edge length of <strong>41</strong> inches. Substituting <strong>41</strong> inches for <strong>s</strong> in this equation yields <strong>V = 41³</strong> cubic inches, or <strong>V = 68, 921</strong> cubic inches. Therefore, the volume of the cube is <strong>68, 921</strong> cubic inches.<br>Choice A is incorrect. This is the perimeter, in inches, of the cube.<br>Choice B is incorrect. This is the area, in square inches, of a face of the cube.<br>Choice C is incorrect. This is the surface area, in square inches, of the cube.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "ec5d4823",
|
||
type: "spr",
|
||
questionHtml:
|
||
"What is the volume, in cubic centimeters, of a right rectangular prism that has a length of 4 centimeters, a width of 9 centimeters, and a height of 10 centimeters?",
|
||
choices: [],
|
||
correctAnswer: "",
|
||
explanation:
|
||
"The correct answer is 360. The volume of a right rectangular prism is calculated by multiplying its dimensions: length, width, and height. Multiplying the values given for these dimensions yields a volume of <strong>4 · 9 · 10 = 360</strong> cubic centimeters.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "f67e4efc",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A right circular cylinder has a volume of <strong>45 π</strong>. If the height of the cylinder is 5, what is the radius of the cylinder?",
|
||
choices: [
|
||
{ label: "A", text: "3" },
|
||
{ label: "B", text: "4.5" },
|
||
{ label: "C", text: "9" },
|
||
{ label: "D", text: "40" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The volume of a right circular cylinder with a radius of r is the product of the area of the base, <strong>π, r²</strong>, and the height, h. The volume of the right circular cylinder described is <strong>45 π</strong> and its height is 5. If the radius is r, it follows that <strong>45 π = π · r, ² · 5</strong>. Dividing both sides of this equation by <strong>5 π</strong> yields <strong>9 = r²</strong>. Taking the square root of both sides yields <strong>r = 3</strong> or <strong>r = −3</strong>. Since r represents the radius, the value must be positive. Therefore, the radius is 3.Choice B is incorrect and may result from finding that the square of the radius is 9, but then from dividing 9 by 2, rather than taking the square root of 9. Choice C is incorrect. This represents the square of the radius. Choice D is incorrect and may result from solving the equation <strong>45 π = π · r, ² · 5</strong> for <strong>r²</strong>, not r, by dividing by <strong>π</strong> on both sides and then by subtracting, not dividing, 5 from both sides.",
|
||
hasFigure: false,
|
||
},
|
||
];
|
||
|
||
export const AREA_VOL_HARD: PracticeQuestion[] = [
|
||
{
|
||
id: "306264ab",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A right triangle has sides of length <strong>2 √(2)</strong>, <strong>6 √(2)</strong>, and <strong>√(80)</strong> units. What is the area of the triangle, in square units?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>8 √(2) + √(80)</strong>" },
|
||
{ label: "B", text: "<strong>12</strong>" },
|
||
{ label: "C", text: "<strong>24 √(80)</strong>" },
|
||
{ label: "D", text: "<strong>24</strong>" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. The area, <strong>A</strong>, of a triangle can be found using the formula <strong>A = one half b h</strong>, where <strong>b</strong> is the length of the base of the triangle and <strong>h</strong> is the height of the triangle. It's given that the triangle is a right triangle. Therefore, its base and height can be represented by the two legs. It’s also given that the triangle has sides of length <strong>2 √(2)</strong>, <strong>6 √(2)</strong>, and <strong>√(80)</strong> units. Since <strong>√(80)</strong> units is the greatest of these lengths, it's the length of the hypotenuse. Therefore, the two legs have lengths <strong>2 √(2)</strong> and <strong>6 √(2)</strong> units. Substituting these values for <strong>b</strong> and <strong>h</strong> in the formula <strong>A = one half b h</strong> gives <strong>A = one half (2 √(2)) (6 √(2))</strong>, which is equivalent to <strong>A = 6 √(4)</strong> square units, or <strong>A = 12</strong> square units.<br>Choice A is incorrect. This expression represents the perimeter, rather than the area, of the triangle.<br>Choice C is incorrect and may result from conceptual or calculation errors. <br>Choice D is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "310c87fe",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A cube has a surface area of 54 square meters. What is the volume, in cubic meters, of the cube?",
|
||
choices: [
|
||
{ label: "A", text: "18" },
|
||
{ label: "B", text: "27" },
|
||
{ label: "C", text: "36" },
|
||
{ label: "D", text: "81" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. The surface area of a cube with side length s is equal to <strong>6 s²</strong>. Since the surface area is given as 54 square meters, the equation <strong>54 = 6 s²</strong> can be used to solve for s. Dividing both sides of the equation by 6 yields <strong>9 = s²</strong>. Taking the square root of both sides of this equation yields <strong>3 = s</strong> and <strong>−3 = s</strong>. Since the side length of a cube must be a positive value, <strong>s = −3</strong> can be discarded as a possible solution, leaving <strong>s = 3</strong>. The volume of a cube with side length s is equal to <strong>s³</strong>. Therefore, the volume of this cube, in cubic meters, is <strong>3³</strong>, or 27.Choices A, C, and D are incorrect and may result from calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "459dd6c5",
|
||
type: "spr",
|
||
questionHtml:
|
||
"Triangles <strong>italic A italic B italic C</strong> and <strong>italic D italic E italic F</strong> are similar. Each side length of triangle <strong>italic A italic B italic C</strong> is <strong>4</strong> times the corresponding side length of triangle <strong>italic D italic E italic F</strong>. The area of triangle <strong>italic A italic B italic C</strong> is <strong>270</strong> square inches. What is the area, in square inches, of triangle <strong>italic D italic E italic F</strong>?",
|
||
choices: [],
|
||
correctAnswer: "135/8, 16.87, 16.88",
|
||
explanation:
|
||
"The correct answer is <strong>(135) / (8)</strong>. It's given that triangles <strong>italic A italic B italic C</strong> and <strong>italic D italic E italic F</strong> are similar and each side length of triangle <strong>italic A italic B italic C</strong> is <strong>4</strong> times the corresponding side length of triangle <strong>italic D italic E italic F</strong>. For two similar triangles, if each side length of the first triangle is <strong>k</strong> times the corresponding side length of the second triangle, then the area of the first triangle is <strong>k²</strong> times the area of the second triangle. Therefore, the area of triangle <strong>italic A italic B italic C</strong> is <strong>4²</strong>, or <strong>16</strong>, times the area of triangle <strong>italic D italic E italic F</strong>. It's given that the area of triangle <strong>italic A italic B italic C</strong> is <strong>270</strong> square inches. Let <strong>a</strong> represent the area, in square inches, of triangle <strong>italic D italic E italic F</strong>. It follows that <strong>270</strong> is <strong>16</strong> times <strong>a</strong>, or <strong>270 = 16 a</strong>. Dividing both sides of this equation by <strong>16</strong> yields <strong>(270) / (16) = a</strong>, which is equivalent to <strong>(135) / (8) = a</strong>. Thus, the area, in square inches, of triangle <strong>italic D italic E italic F</strong> is <strong>(135) / (8)</strong>. Note that 135/8, 16.87, and 16.88 are examples of ways to enter a correct answer.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "5b2b8866",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A rectangular poster has an area of <strong>360</strong> square inches. A copy of the poster is made in which the length and width of the original poster are each increased by <strong>20 % sign</strong>. What is the area of the copy, in square inches?",
|
||
choices: [],
|
||
correctAnswer: "2592/5, 518.4",
|
||
explanation:
|
||
"The correct answer is <strong>518.4</strong>. It's given that the area of the original poster is <strong>360</strong> square inches. Let <strong>script l</strong> represent the length, in inches, of the original poster, and let <strong>w</strong> represent the width, in inches, of the original poster. Since the area of a rectangle is equal to its length times its width, it follows that <strong>360 = script l w</strong>. It's also given that a copy of the poster is made in which the length and width of the original poster are each increased by <strong>20 % sign</strong>. It follows that the length of the copy is the length of the original poster plus <strong>20 % sign</strong> of the length of the original poster, which is equivalent to <strong>script l + (20) / (100) script l</strong> inches. This length can be rewritten as <strong>script l + 0.2 script l</strong> inches, or <strong>1.2 script l</strong> inches. Similarly, the width of the copy is the width of the original poster plus <strong>20 % sign</strong> of the width of the original poster, which is equivalent to <strong>w + (20) / (100) w</strong> inches. This width can be rewritten as <strong>w + 0.2 w</strong> inches, or <strong>1.2 w</strong> inches. Since the area of a rectangle is equal to its length times its width, it follows that the area, in square inches, of the copy is equal to <strong>(1.2 script l) (1.2 w)</strong>, which can be rewritten as <strong>(1.2) (1.2) (script l w)</strong>. Since <strong>360 = script l w</strong>, the area, in square inches, of the copy can be found by substituting <strong>360</strong> for <strong>script l w</strong> in the expression <strong>(1.2) (1.2) (script l w)</strong>, which yields <strong>(1.2) (1.2) (360)</strong>, or <strong>518.4</strong>. Therefore, the area of the copy, in square inches, is <strong>518.4</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "899c6042",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A right circular cone has a height of <strong>22 centimeters (cm)</strong> and a base with a diameter of <strong>6 cm</strong>. The volume of this cone is <strong>n π cm³</strong>. What is the value of <strong>n</strong>?",
|
||
choices: [],
|
||
correctAnswer: "66",
|
||
explanation:
|
||
"The correct answer is <strong>66</strong>. It’s given that the right circular cone has a height of <strong>22</strong> centimeters <strong>(cm)</strong> and a base with a diameter of <strong>6 cm</strong>. Since the diameter of the base of the cone is <strong>6 cm</strong>, the radius of the base is <strong>3 cm</strong>. The volume <strong>V</strong>, <strong>in cm³</strong>, of a right circular cone can be found using the formula <strong>V = one third π r² h</strong>, where <strong>h</strong> is the height, <strong>in cm</strong>, and <strong>r</strong> is the radius, <strong>in cm</strong>, of the base of the cone. Substituting <strong>22</strong> for <strong>h</strong> and <strong>3</strong> for <strong>r</strong> in this formula yields <strong>V = one third π (3)² (22)</strong>, or <strong>V = 66 π</strong>. Therefore, the volume of the cone is <strong>66 π italic cm³</strong>. It’s given that the volume of the cone is <strong>n π italic cm³</strong>. Therefore, the value of <strong>n</strong> is <strong>66</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "93de3f84",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The volume of right circular cylinder A is 22 cubic centimeters. What is the volume, in cubic centimeters, of a right circular cylinder with twice the radius and half the height of cylinder A?",
|
||
choices: [
|
||
{ label: "A", text: "11" },
|
||
{ label: "B", text: "22" },
|
||
{ label: "C", text: "44" },
|
||
{ label: "D", text: "66" },
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The volume of right circular cylinder A is given by the expression <strong>π r² · h</strong>, where r is the radius of its circular base and h is its height. The volume of a cylinder with twice the radius and half the height of cylinder A is given by <strong>π · (2 r, ), ² · one half h</strong>, which is equivalent to <strong>4 π r² · one half h, and = 2 π r² · h</strong>. Therefore, the volume is twice the volume of cylinder A, or <strong>2 · 22 = 44</strong>.Choice A is incorrect and likely results from not multiplying the radius of cylinder A by 2. Choice B is incorrect and likely results from not squaring the 2 in 2r when applying the volume formula. Choice D is incorrect and likely results from a conceptual error.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "9966235e",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A cube has an edge length of <strong>68</strong> inches. A solid sphere with a radius of <strong>34</strong> inches is inside the cube, such that the sphere touches the center of each face of the cube. To the nearest cubic inch, what is the volume of the space in the cube not taken up by the sphere?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>149, 796</strong>" },
|
||
{ label: "B", text: "<strong>164, 500</strong>" },
|
||
{ label: "C", text: "<strong>190, 955</strong>" },
|
||
{ label: "D", text: "<strong>310, 800</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The volume of a cube can be found by using the formula <strong>V = s³</strong>, where <strong>V</strong> is the volume and <strong>s</strong> is the edge length of the cube. Therefore, the volume of the given cube is <strong>V = 68³</strong>, or <strong>314, 432</strong> cubic inches. The volume of a sphere can be found by using the formula <strong>V = four thirds π r³</strong> , where <strong>V</strong> is the volume and <strong>r</strong> is the radius of the sphere. Therefore, the volume of the given sphere is <strong>V = four thirds π (34)³</strong>, or approximately <strong>164, 636</strong> cubic inches. The volume of the space in the cube not taken up by the sphere is the difference between the volume of the cube and volume of the sphere. Subtracting the approximate volume of the sphere from the volume of the cube gives <strong>314, 432 − 164, 636 = 149, 796</strong> cubic inches.<br>Choice B is incorrect and may result from conceptual or calculation errors.<br>Choice C is incorrect and may result from conceptual or calculation errors.<br>Choice D is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "9f934297",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A right rectangular prism has a length of <strong>28 centimeters (cm)</strong>, a width of <strong>15 cm</strong>, and a height of <strong>16 cm</strong>. What is the surface area, <strong>in cm²</strong>, of the right rectangular prism?",
|
||
choices: [],
|
||
correctAnswer: "2216",
|
||
explanation:
|
||
"The correct answer is <strong>2, 216</strong>. The surface area of a prism is the sum of the areas of all its faces. A right rectangular prism consists of six rectangular faces, where opposite faces are congruent. It's given that this prism has a length of <strong>28 cm</strong>, a width of <strong>15 cm</strong>, and a height of <strong>16 cm</strong>. Thus, for this prism, there are two faces with area <strong>(28) (15) cm²</strong>, two faces with area <strong>(28) (16) cm²</strong>, and two faces with area <strong>(15) (16) cm²</strong>. Therefore, the surface area, <strong>in cm²</strong>, of the right rectangular prism is <strong>2 (28) (15) + 2 (28) (16) + 2 (15) (16)</strong>, or <strong>2, 216</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "a07ed090",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The figure shown is a right circular cylinder with a radius of <strong>r</strong> and height of <strong>h</strong>. A second right circular cylinder (not shown) has a volume that is <strong>392</strong> times as large as the volume of the cylinder shown. Which of the following could represent the radius <strong>R</strong>, in terms of <strong>r</strong>, and the height <strong>H</strong>, in terms of <strong>h</strong>, of the second cylinder?",
|
||
choices: [
|
||
{
|
||
label: "A",
|
||
text: "<strong>R = 8 r</strong> and <strong>H = 7 h</strong>",
|
||
},
|
||
{
|
||
label: "B",
|
||
text: "<strong>R = 8 r</strong> and <strong>H = 49 h</strong>",
|
||
},
|
||
{
|
||
label: "C",
|
||
text: "<strong>R = 7 r</strong> and <strong>H = 8 h</strong>",
|
||
},
|
||
{
|
||
label: "D",
|
||
text: "<strong>R = 49 r</strong> and <strong>H = 8 h</strong>",
|
||
},
|
||
],
|
||
correctAnswer: "C",
|
||
explanation:
|
||
"Choice C is correct. The volume of a right circular cylinder is equal to <strong>π a² b</strong>, where <strong>a</strong> is the radius of a base of the cylinder and <strong>b</strong> is the height of the cylinder. It’s given that the cylinder shown has a radius of <strong>r</strong> and a height of <strong>h</strong>. It follows that the volume of the cylinder shown is equal to <strong>π r² h</strong>. It’s given that the second right circular cylinder has a radius of <strong>R</strong> and a height of <strong>H</strong>. It follows that the volume of the second cylinder is equal to <strong>π R² H</strong>. Choice C gives <strong>R = 7 r</strong> and <strong>H = 8 h</strong>. Substituting <strong>7 r</strong> for <strong>R</strong> and <strong>8 h</strong> for <strong>H</strong> in the expression that represents the volume of the second cylinder yields <strong>π (7 r)² (8 h)</strong>, or <strong>π (49 r²) (8 h)</strong>, which is equivalent to <strong>π (392 r² h)</strong>, or <strong>392 (π r² h)</strong>. This expression is equal to <strong>392</strong> times the volume of the cylinder shown, <strong>π r² h</strong>. Therefore, <strong>R = 7 r</strong> and <strong>H = 8 h</strong> could represent the radius <strong>R</strong>, in terms of <strong>r</strong>, and the height <strong>H</strong>, in terms of <strong>h</strong>, of the second cylinder.<br>Choice A is incorrect. Substituting <strong>8 r</strong> for <strong>R</strong> and <strong>7 h</strong> for <strong>H</strong> in the expression that represents the volume of the second cylinder yields <strong>π (8 r)² (7 h)</strong>, or <strong>π (64 r²) (7 h)</strong>, which is equivalent to <strong>π (448 r² h)</strong>, or <strong>448 (π r² h)</strong>. This expression is equal to <strong>448</strong>, not <strong>392</strong>, times the volume of the cylinder shown. <br>Choice B is incorrect. Substituting <strong>8 r</strong> for <strong>R</strong> and <strong>49 h</strong> for <strong>H</strong> in the expression that represents the volume of the second cylinder yields <strong>π (8 r)² (49 h)</strong>, or <strong>π (64 r²) (49 h)</strong>, which is equivalent to <strong>π (3, 136 r² h)</strong>, or <strong>3, 136 (π r² h)</strong>. This expression is equal to <strong>3, 136</strong>, not <strong>392</strong>, times the volume of the cylinder shown.<br>Choice D is incorrect. Substituting <strong>49 r</strong> for <strong>R</strong> and <strong>8 h</strong> for <strong>H</strong> in the expression that represents the volume of the second cylinder yields <strong>π (49 r)² (8 h)</strong>, or <strong>π (2, 401 r²) (8 h)</strong>, which is equivalent to <strong>π (19, 208 r² h)</strong>, or <strong>19, 208 (π r² h)</strong>. This expression is equal to <strong>19, 208</strong>, not <strong>392</strong>, times the volume of the cylinder shown.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/a07ed090_svg1.svg",
|
||
},
|
||
{
|
||
id: "b0dc920d",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A manufacturer determined that right cylindrical containers with a height that is 4 inches longer than the radius offer the optimal number of containers to be displayed on a shelf. Which of the following expresses the volume, V, in cubic inches, of such containers, where r is the radius, in inches?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>V = 4 π r³</strong>" },
|
||
{ label: "B", text: "<strong>V = π · (2 r, ), ³</strong>" },
|
||
{ label: "C", text: "<strong>V = π r² + 4 π r</strong>" },
|
||
{ label: "D", text: "<strong>V = π r³ + 4 π r²</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The volume, V, of a right cylinder is given by the formula <strong>V = π r² · h</strong>, where r represents the radius of the base of the cylinder and h represents the height. Since the height is 4 inches longer than the radius, the expression <strong>r + 4</strong> represents the height of each cylindrical container. It follows that the volume of each container is represented by the equation <strong>V = π r² · (r + 4, )</strong>. Distributing the expression <strong>π r²</strong> into each term in the parentheses yields <strong>V = π r³ + 4 π r²</strong>.Choice A is incorrect and may result from representing the height as <strong>4 r</strong> instead of <strong>r + 4</strong>. Choice B is incorrect and may result from representing the height as <strong>2 r</strong> instead of <strong>r + 4</strong>. Choice C is incorrect and may result from representing the volume of a right cylinder as <strong>V = π r h</strong> instead of <strong>V = π r² · h</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "ba8ca563",
|
||
type: "spr",
|
||
questionHtml:
|
||
"A cube has a volume of <strong>474, 552</strong> cubic units. What is the surface area, in square units, of the cube?",
|
||
choices: [],
|
||
correctAnswer: "36504",
|
||
explanation:
|
||
"The correct answer is <strong>36, 504</strong>. The volume of a cube can be found using the formula <strong>V = s³</strong>, where <strong>s</strong> represents the edge length of a cube. It’s given that this cube has a volume of <strong>474, 552</strong> cubic units. Substituting <strong>474, 552</strong> for <strong>V</strong> in <strong>V = s³</strong> yields <strong>474, 552 = s³</strong>. Taking the cube root of both sides of this equation yields <strong>78 = s</strong>. Thus, the edge length of the cube is <strong>78</strong> units. Since each face of a cube is a square, it follows that each face has an edge length of <strong>78</strong> units. The area of a square can be found using the formula <strong>A = s²</strong>. Substituting <strong>78</strong> for <strong>s</strong> in this formula yields <strong>A = 78²</strong>, or <strong>A = 6, 084</strong>. Therefore, the area of one face of this cube is <strong>6, 084</strong> square units. Since a cube has <strong>6</strong> faces, the surface area, in square units, of this cube is <strong>6 (6, 084)</strong>, or <strong>36, 504</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "dc71597b",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"A right circular cone has a volume of <strong>one third, π</strong> cubic feet and a height of 9 feet. What is the radius, in feet, of the base of the cone?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>one third</strong>" },
|
||
{
|
||
label: "B",
|
||
text: "<strong>the fraction 1 over the √ 3, end fraction</strong>",
|
||
},
|
||
{ label: "C", text: "<strong>the √ 3</strong>" },
|
||
{ label: "D", text: "<strong>3</strong>" },
|
||
],
|
||
correctAnswer: "A",
|
||
explanation:
|
||
"Choice A is correct. The equation for the volume of a right circular cone is <strong>V = one third π r² · h</strong>. It’s given that the volume of the right circular cone is <strong>one third π</strong> cubic feet and the height is 9 feet. Substituting these values for V and h, respectively, gives <strong>one third π = one third π r² · 9</strong>. Dividing both sides of the equation by <strong>one third π</strong> gives <strong>1 = r² · 9</strong>. Dividing both sides of the equation by 9 gives <strong>one ninth = r²</strong>. Taking the square root of both sides results in two possible values for the radius, <strong>the √ one ninth</strong> or <strong>the − of the √ one ninth</strong>. Since the radius can’t have a negative value, that leaves <strong>the √ one ninth</strong> as the only possibility. Applying the quotient property of square roots, <strong>the √ the fraction a, over b = the fraction the √ a, over the √ b</strong>, results in <strong>r = the fraction the √ 1 over the √ 9</strong>, or <strong>r = one third</strong>.Choices B and C are incorrect and may result from incorrectly evaluating <strong>the √ one ninth</strong>. Choice D is incorrect and may result from solving <strong>r² = 9</strong> instead of <strong>r² = one ninth</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "e5c57163",
|
||
type: "spr",
|
||
questionHtml:
|
||
"Square A has side lengths that are <strong>166</strong> times the side lengths of square B. The area of square A is <strong>k</strong> times the area of square B. What is the value of <strong>k</strong>?",
|
||
choices: [],
|
||
correctAnswer: "27556",
|
||
explanation:
|
||
"The correct answer is <strong>27, 556</strong>. The area of a square is <strong>s²</strong>, where <strong>s</strong> is the side length of the square. Let <strong>x</strong> represent the length of each side of square B. Substituting <strong>x</strong> for <strong>s</strong> in <strong>s²</strong> yields <strong>x²</strong>. It follows that the area of square B is <strong>x²</strong>. It’s given that square A has side lengths that are <strong>166</strong> times the side lengths of square B. Since <strong>x</strong> represents the length of each side of square B, the length of each side of square A can be represented by the expression <strong>166 x</strong>. It follows that the area of square A is <strong>(166 x)²</strong>, or <strong>27, 556 x²</strong>. It’s given that the area of square A is <strong>k</strong> times the area of square B. Since the area of square A is equal to <strong>27, 556 x²</strong>, and the area of square B is equal to <strong>x²</strong>, an equation representing the given statement is <strong>27, 556 x² = k x²</strong>. Since <strong>x</strong> represents the length of each side of square B, the value of <strong>x</strong> must be positive. Therefore, the value of <strong>x²</strong> is also positive, so it does not equal <strong>0</strong>. Dividing by <strong>x²</strong> on both sides of the equation <strong>27, 556 x² = k x²</strong> yields <strong>27, 556 = k</strong>. Therefore, the value of <strong>k</strong> is <strong>27, 556</strong>.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "eb70d2d0",
|
||
type: "spr",
|
||
questionHtml:
|
||
"Moving from left to right, the points have the following coordinates:<br><br>(negative 3 comma 4)<br>(4 comma negative 3)<br>(5 comma 3)<br><br>What is the area, in square units, of the triangle formed by connecting the three points shown?",
|
||
choices: [],
|
||
correctAnswer: "24.5, 49/2",
|
||
explanation:
|
||
"The correct answer is <strong>24.5</strong>. It's given that a triangle is formed by connecting the three points shown, which are <strong>(−3, 4)</strong>, <strong>(5, 3)</strong>, and <strong>(4 −3)</strong>. Let this triangle be triangle A. The area of triangle A can be found by calculating the area of the rectangle that circumscribes it and subtracting the areas of the three triangles that are inside the rectangle but outside triangle A. The rectangle formed by the points <strong>(−3, 4)</strong>, <strong>(5, 4)</strong>, <strong>(5 −3)</strong>, and <strong>(−3 −3)</strong> circumscribes triangle A. The width, in units, of this rectangle can be found by calculating the distance between the points <strong>(5, 4)</strong> and <strong>(5 −3)</strong>. This distance is <strong>4 − (−3)</strong>, or <strong>7</strong>. The length, in units, of this rectangle can be found by calculating the distance between the points <strong>(5, 4)</strong> and <strong>(−3, 4)</strong>. This distance is <strong>5 − (−3)</strong>, or <strong>8</strong>. It follows that the area, in square units, of the rectangle is <strong>(7) (8)</strong>, or <strong>56</strong>. One of the triangles that lies inside the rectangle but outside triangle A is formed by the points <strong>(−3, 4)</strong>, <strong>(5, 4)</strong>, and <strong>(5, 3)</strong>. The length, in units, of a base of this triangle can be found by calculating the distance between the points <strong>(5, 4)</strong> and <strong>(5, 3)</strong>. This distance is <strong>4 − 3</strong>, or <strong>1</strong>. The corresponding height, in units, of this triangle can be found by calculating the distance between the points <strong>(5, 4)</strong> and <strong>(−3, 4)</strong>. This distance is <strong>5 − (−3)</strong>, or <strong>8</strong>. It follows that the area, in square units, of this triangle is <strong>one half (8) (1)</strong>, or <strong>4</strong>. A second triangle that lies inside the rectangle but outside triangle A is formed by the points <strong>(4 −3)</strong>, <strong>(5, 3)</strong>, and <strong>(5 −3)</strong>. The length, in units, of a base of this triangle can be found by calculating the distance between the points <strong>(5, 3)</strong> and <strong>(5 −3)</strong>. This distance is <strong>3 − (−3)</strong> , or <strong>6</strong>. The corresponding height, in units, of this triangle can be found by calculating the distance between the points <strong>(5 −3)</strong> and <strong>(4 −3)</strong>. This distance is <strong>5 − 4</strong>, or <strong>1</strong>. It follows that the area, in square units, of this triangle is <strong>one half (1) (6)</strong>, or <strong>3</strong>. The third triangle that lies inside the rectangle but outside triangle A is formed by the points <strong>(−3, 4)</strong>, <strong>(−3 −3)</strong>, and <strong>(4 −3)</strong>. The length, in units, of a base of this triangle can be found by calculating the distance between the points <strong>(4 −3)</strong> and <strong>(−3 −3)</strong>. This distance is <strong>4 − (−3)</strong>, or <strong>7</strong>. The corresponding height, in units, of this triangle can be found by calculating the distance between the points <strong>(−3, 4)</strong> and <strong>(−3 −3)</strong>. This distance is <strong>4 − (−3)</strong>, or <strong>7</strong>. It follows that the area, in square units, of this triangle is <strong>one half (7) (7)</strong>, or <strong>24.5</strong>. Thus, the area, in square units, of the triangle formed by connecting the three points shown is <strong>56 − 4 − 3 − 24.5</strong>, or <strong>24.5</strong>. Note that 24.5 and 49/2 are examples of ways to enter a correct answer.",
|
||
hasFigure: true,
|
||
figureUrl: "/practice-images/eb70d2d0_svg1.svg",
|
||
},
|
||
{
|
||
id: "f243c383",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"Two identical rectangular prisms each have a height of <strong>90 centimeters (cm)</strong>. The base of each prism is a square, and the surface area of each prism is <strong>K cm²</strong>. If the prisms are glued together along a square base, the resulting prism has a surface area of <strong>(92) / (47) K cm²</strong>. What is the side length, in <strong>cm</strong>, of each square base?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>4</strong>" },
|
||
{ label: "B", text: "<strong>8</strong>" },
|
||
{ label: "C", text: "<strong>9</strong>" },
|
||
{ label: "D", text: "<strong>16</strong>" },
|
||
],
|
||
correctAnswer: "B",
|
||
explanation:
|
||
"Choice B is correct. Let <strong>x</strong> represent the side length, in <strong>cm</strong>, of each square base. If the two prisms are glued together along a square base, the resulting prism has a surface area equal to twice the surface area of one of the prisms, minus the area of the two square bases that are being glued together, which yields <strong>2 K − 2 x² cm²</strong> . It’s given that this resulting surface area is equal to <strong>(92) / (47) K cm²</strong>, so <strong>2 K − 2 x² = (92) / (47) K</strong>. Subtracting <strong>(92) / (47) K</strong> from both sides of this equation yields <strong>2 K − (92) / (47) K − 2 x² = 0</strong>. This equation can be rewritten by multiplying <strong>2 K</strong> on the left-hand side by <strong>(47) / (47)</strong>, which yields <strong>(94) / (47) K − (92) / (47) K − 2 x² = 0</strong>, or <strong>two forty sevenths K − 2 x² = 0</strong>. Adding <strong>2 x²</strong> to both sides of this equation yields <strong>two forty sevenths K = 2 x²</strong>. Multiplying both sides of this equation by <strong>(47) / (2)</strong> yields <strong>K = 47 x²</strong>. The surface area <strong>K</strong>, in <strong>cm²</strong>, of each rectangular prism is equivalent to the sum of the areas of the two square bases and the areas of the four lateral faces. Since the height of each rectangular prism is <strong>90 cm</strong> and the side length of each square base is <strong>x cm</strong>, it follows that the area of each square base is <strong>x² cm²</strong> and the area of each lateral face is <strong>90 x cm²</strong>. Therefore, the surface area of each rectangular prism can be represented by the expression <strong>2 x² + 4 (90 x)</strong>, or <strong>2 x² + 360 x</strong>. Substituting this expression for <strong>K</strong> in the equation <strong>K = 47 x²</strong> yields <strong>2 x² + 360 x = 47 x²</strong>. Subtracting <strong>2 x²</strong> and <strong>360 x</strong> from both sides of this equation yields <strong>0 = 45 x² − 360 x</strong>. Factoring <strong>x</strong> from the right-hand side of this equation yields <strong>0 = x (45 x − 360)</strong>. Applying the zero product property, it follows that <strong>x = 0</strong> and <strong>45 x − 360 = 0</strong>. Adding <strong>360</strong> to both sides of the equation <strong>45 x − 360 = 0</strong> yields <strong>45 x = 360</strong>. Dividing both sides of this equation by <strong>45</strong> yields <strong>x = 8</strong>. Since a side length of a rectangular prism can’t be <strong>0</strong>, the length of each square base is <strong>8</strong> <strong>cm</strong>.<br>Choice A is incorrect and may result from conceptual or calculation errors.<br>Choice C is incorrect and may result from conceptual or calculation errors.<br>Choice D is incorrect and may result from conceptual or calculation errors.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "f329442c",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"Circle <strong>A</strong> has a radius of <strong>3 n</strong> and circle <strong>B</strong> has a radius of <strong>129 n</strong>, where <strong>n</strong> is a positive constant. The area of circle <strong>B</strong> is how many times the area of circle <strong>A</strong>?",
|
||
choices: [
|
||
{ label: "A", text: "<strong>43</strong>" },
|
||
{ label: "B", text: "<strong>86</strong>" },
|
||
{ label: "C", text: "<strong>129</strong>" },
|
||
{ label: "D", text: "<strong>1, 849</strong>" },
|
||
],
|
||
correctAnswer: "D",
|
||
explanation:
|
||
"Choice D is correct. The area of a circle can be found by using the formula <strong>A = π r²</strong>, where <strong>A</strong> is the area and <strong>r</strong> is the radius of the circle. It’s given that the radius of circle A is <strong>3 n</strong>. Substituting this value for <strong>r</strong> into the formula <strong>A = π r²</strong> gives <strong>A = π (3 n)²</strong>, or <strong>9 π n²</strong>. It’s also given that the radius of circle B is <strong>129 n</strong>. Substituting this value for <strong>r</strong> into the formula <strong>A = π r²</strong> gives <strong>A = π (129 n)²</strong>, or <strong>16, 641 π n²</strong>. Dividing the area of circle B by the area of circle A gives <strong>(16, 641 π n²) / (9 π n²)</strong>, which simplifies to <strong>1, 849</strong>. Therefore, the area of circle B is <strong>1, 849</strong> times the area of circle A.<br>Choice A is incorrect. This is how many times greater the radius of circle B is than the radius of circle A.<br>Choice B is incorrect and may result from conceptual or calculation errors.<br>Choice C is incorrect. This is the coefficient on the term that describes the radius of circle B.",
|
||
hasFigure: false,
|
||
},
|
||
{
|
||
id: "f7e626b2",
|
||
type: "mcq",
|
||
questionHtml:
|
||
"The dimensions of a right rectangular prism are 4 inches by 5 inches by 6 inches. What is the surface area, in square inches, of the prism?",
|
||
choices: [
|
||
{ label: "A", text: "30" },
|
||
{ label: "B", text: "74" },
|
||
{ label: "C", text: "120" },
|
||
{ label: "D", text: "148" },
|
||
],
|
||
correctAnswer: "",
|
||
explanation:
|
||
"Choice D is correct. The surface area is found by summing the area of each face. A right rectangular prism consists of three pairs of congruent rectangles, so the surface area is found by multiplying the areas of three adjacent rectangles by 2 and adding these products. For this prism, the surface area is equal to <strong>2 · (4 · 5, ) + 2 · (5 · 6, ) + 2 · (4 · 6, )</strong>, or <strong>2 · 20 + 2 · 30 + 2 · 24</strong>, which is equal to 148.Choice A is incorrect. This is the area of one of the faces of the prism. Choice B is incorrect and may result from adding the areas of three adjacent rectangles without multiplying by 2. Choice C is incorrect. This is the volume, in cubic inches, of the prism.",
|
||
hasFigure: false,
|
||
},
|
||
];
|