"I Do."
Only a short while ago, I had asked Jayden what he wanted to build for our 2026 World Cup project.
His answer was simple.
"I have no idea."
So today, I didn't ask.
Instead, I began.
"Could you make me a cylinder?"
He made one.
"Could you pull it toward your face?"
He did.
"Could you make another one on the other side?"
Done.
"Now connect them with a horizontal bar."
Within minutes, Jayden had built the frame of a soccer goal from scratch.
One small step led naturally to the next.
Then came the slanted support bars behind the goal.
We had already simplified the design by creating a reusable function.
function trapezoid() {
...
rotateZ(slantAlpha - 90)
cylinder(thickness, slantLength)
}
Everything looked elegant.
Except for one missing question.
How do we know the rotation angle?
Jayden had already written:
let slantLength = sqrt(height**2 + (bdepth - tdepth)**2)
I suddenly realized something.
Without being asked, he had naturally reached for the Pythagorean theorem.
A student who used to struggle with mathematics had chosen the right mathematical tool because the problem demanded it.
I asked,
"Have you learned trigonometry?"
"No."
"No problem. We can just tweak the angle little by little."
Then I added,
"But if you'd like to learn how to calculate it exactly, I can show you."
Jayden didn't hesitate.
He simply said,
"I do."
Those two words made my heart beat faster.
We opened our online whiteboard.
He drew a right triangle.
He asked questions.
He became confused.
He erased.
He drew again.
Little by little, the mystery disappeared.
Soon, his code contained something new.
let slantAlpha = atan(height / (bdepth - tdepth))
The slanted bar rotated into exactly the right position.
Not by guessing.
By understanding.
Most students first encounter trigonometry in a classroom.
Today, Jayden encountered it inside a soccer goal.
He didn't learn tangent because it was on the curriculum.
He learned it because he genuinely wanted to solve a problem.
The mathematics came after the curiosity.
Not before.
After class, I sent a short message to his mother.
"Today Jayden made a huge step forward. He voluntarily asked to learn trigonometry."
Her reply contained only three thumbs-up emojis.
Sometimes, parents don't need a long explanation.
They know exactly how significant a moment like that is.