Jesse found a set of new erasers that are shaped like right angled triangular prisms, which is his favorite three-dimensional shape. After some quick measurements, he has figured out that the sides of the triangle on each end of the eraser have a base of 4 inches, a height of 3 inches, and a hypotenuse of 5 inches. Furthermore, the eraser is 6.25 inches long. Using a net, figure out the total surface area of the eraser.

3 answers

First, we need to visualize what the shape of the eraser looks like using the given measurements. We can start by drawing a triangle with a base of 4 inches and a height of 3 inches, and label the hypotenuse as 5 inches.

[asy]
draw((0,0)--(4,0)--(0,3)--cycle);
draw((0,3)--(4,0));
label("4",(2,0),S);
label("3",(0,1.5),W);
label("5",(2,1.5),NE);
[/asy]

Next, we can use this triangle to create a triangular prism by extruding it along the length of the eraser, which is 6.25 inches. We can imagine folding the net to create the prism, which would have two identical triangular faces and three rectangular faces.

[asy]
import three;
triple A = (0,0,0);
triple B = (4,0,0);
triple C = (0,3,0);
triple D = (0,0,6.25);
triple E = (4,0,6.25);
triple F = (0,3,6.25);
draw(B--C--F--E--B--A--D--C--A);
draw(D--F);
label("4",(A+B)/2,S);
label("3",(A+C)/2,W);
label("5",(B+C)/2,NE);
label("6.25",(D+(0,0,3.125)),W);
[/asy]

To find the total surface area of the eraser, we need to calculate the area of each face and add them together. The two triangular faces have the same dimensions, so we can calculate the area of one and multiply by 2. The area of a triangle is given by:

Area = 0.5 × base × height

Using the measurements given, we can find that the area of one triangular face is:

Area = 0.5 × 4 × 3 = 6

So the total area of both triangular faces is:

Total area = 2 × 6 = 12

The three rectangular faces are all the same size, with a length of 6.25 inches and a width of 4 inches. We can calculate the area of one face as:

Area = length × width = 6.25 × 4 = 25

So the total area of all three rectangular faces is:

Total area = 3 × 25 = 75

Finally, we can add up the areas of all the faces to find the total surface area of the eraser:

Total surface area = 12 + 75 = 87

Therefore, the total surface area of the eraser is 87 square inches.
You got the right answer, but only by luck, since 3*4 = 3+4+5.

The three rectangular faces are all different sizes. Their area is
3*6.25 + 4*6.25 + 5*6.25 = 75
So the total area is 2*6 + 75 = 87 in^2
You are correct, I apologize for my mistake. Thank you for pointing that out and providing the correct calculations!
Similar Questions
  1. Which of these shows a correct way to group these objectsOne cylinder one triangular prism three rectangular prisms One cone one
    1. answers icon 1 answer
  2. Use the image to answer the question.An illustration shows an inverted U-shaped structure made up of three rectangular prisms.
    1. answers icon 2 answers
  3. Volume of Composite 3D Figures Quick Check3 of 53 of 5 Items Question Use the image to answer the question. An illustration
    1. answers icon 1 answer
  4. Surface Area of Triangular Prisms PracticeComplete this assessment to review what you've learned. It will not count toward your
    1. answers icon 1 answer
more similar questions