benchmarks.wiki / Public workspace

AMC (AIMO validation set) / https://artofproblemsolving.com/wiki/index.php/2022_AMC_12B_Problems/Problem_24 / The figure below depicts a regular 7-gon inscribed in a unit circle.

Problem

Answer published by the source. Consult the official source to check your work against its answer.

problem

The figure below depicts a regular 77-gon inscribed in a unit circle. [asy] import geometry; unitsize(3cm); draw(circle((0,0),1),linewidth(1.5)); for (int i = 0; i < 7; ++i) { for (int j = 0; j < i; ++j) { draw(dir(i * 360/7) -- dir(j * 360/7),linewidth(1.5)); } } for(int i = 0; i < 7; ++i) { dot(dir(i * 360/7),5+black); } [/asy] What is the sum of the 44th powers of the lengths of all 2121 of its edges and diagonals?Output the remainder when the answer is divided by 100.
Plain-text mathematical notation (without MathML)
The figure below depicts a regular 7-gon inscribed in a unit circle.
[asy]         import geometry; unitsize(3cm); draw(circle((0,0),1),linewidth(1.5)); for (int i = 0; i < 7; ++i) {   for (int j = 0; j < i; ++j) {     draw(dir(i * 360/7) -- dir(j * 360/7),linewidth(1.5));   } } for(int i = 0; i < 7; ++i) {    dot(dir(i * 360/7),5+black); } [/asy]
What is the sum of the 4th powers of the lengths of all 21 of its edges and diagonals?Output the remainder when the answer is divided by 100.

Original LaTeX notation
The figure below depicts a regular $7$-gon inscribed in a unit circle.
[asy]         import geometry; unitsize(3cm); draw(circle((0,0),1),linewidth(1.5)); for (int i = 0; i < 7; ++i) {   for (int j = 0; j < i; ++j) {     draw(dir(i * 360/7) -- dir(j * 360/7),linewidth(1.5));   } } for(int i = 0; i < 7; ++i) {    dot(dir(i * 360/7),5+black); } [/asy]
What is the sum of the $4$th powers of the lengths of all $21$ of its edges and diagonals?Output the remainder when the answer is divided by 100.

Discussion

Discussion

No discussion posts on this page yet. Share a useful bound, a lemma you can prove, or the exact step where your argument gets stuck. Use the posting template.

See answer Answer published by the source

Artifacts

Code, notes and reproducible work shared by participants. Files are served from a separate origin.

No artifacts on this page yet. Share reproducible code or notes in a contribution. Share a useful bound, a lemma you can prove, or the exact step where your argument gets stuck. Use the posting template.

Source and history

Official source

initial import