Difference between revisions of "2023 AMC 10B Problems/Problem 17"
Technodoggo (talk | contribs) (→Solution) |
(→Solution) |
||
Line 3: | Line 3: | ||
all 12 edges of 𝒫 is 13, the sum of the areas of all 6 faces of 𝒫 is <math>\dfrac{11}{2}</math>, and the volume of 𝒫 is <math>\dfrac{1}{2}</math>. What is the length of the longest interior diagonal connecting two vertices of 𝒫 ? | all 12 edges of 𝒫 is 13, the sum of the areas of all 6 faces of 𝒫 is <math>\dfrac{11}{2}</math>, and the volume of 𝒫 is <math>\dfrac{1}{2}</math>. What is the length of the longest interior diagonal connecting two vertices of 𝒫 ? | ||
− | == Solution == | + | == Solution 1== |
<asy> | <asy> | ||
Line 71: | Line 71: | ||
~Technodoggo | ~Technodoggo | ||
+ | |||
+ | ==Solution 2 (find side lengths)== | ||
+ | |||
+ | Let <math>a,b,c</math> be the edge lengths. | ||
+ | <math>4(a+b+c)=13, a+b+c=13/4</math> | ||
+ | <math>2(ab+bc+ac)=11/2, ab+bc+ac=11/4</math> | ||
+ | <math>abc=1/2</math> | ||
+ | |||
+ | Then, you can notice that these look like results of Vieta's formula: | ||
+ | <math>(x-a)(x-b)(x-c) = x^3-(a+b+c)x^2+(ab+bc+ac)x-abc = x^3-13/4x^2+11/4x-1/2</math> | ||
+ | Finding when this <math>= 0</math> will give us the edge lengths. | ||
+ | We can use RRT to find one of the roots: | ||
+ | One is <math>x=1</math>, dividing gives <math>x^2-9/4x+1/2</math>. | ||
+ | The other 2 roots are <math>2,1/4</math> | ||
+ | |||
+ | Then, once we find the 3 edges being <math>a=1,b=2,</math> and <math>c=1/4</math>, we can plug in to the distance formula to get <math>9/4</math>. |
Revision as of 15:54, 15 November 2023
Problem
A rectangular box 𝒫 has distinct edge lengths 𝑎, 𝑏, and 𝑐. The sum of the lengths of all 12 edges of 𝒫 is 13, the sum of the areas of all 6 faces of 𝒫 is , and the volume of 𝒫 is . What is the length of the longest interior diagonal connecting two vertices of 𝒫 ?
Solution 1
Let and be the sides of the box, we get
The diagonal of the box is
~Technodoggo
Solution 2 (find side lengths)
Let be the edge lengths.
Then, you can notice that these look like results of Vieta's formula: Finding when this will give us the edge lengths. We can use RRT to find one of the roots: One is , dividing gives . The other 2 roots are
Then, once we find the 3 edges being and , we can plug in to the distance formula to get .