Pythagorean theorem

id: 750837

category: Questions about Scratch

posts: 6

I'm making some sort of Pythagoras demonstration, but I don't know how to model x^2, how would I create x^2?
Za-Chary Za-Chary loading
What sort of creation are you envisioning?
italvera italvera loading
x^2 is the same thing as
((x) * (x))
Edit: If you want a full script, then it's
([sqrt v] of (((x) * (x)) + ((y) * (y)))

Za-Chary wrote:

What sort of creation are you envisioning?
There's been a lot of talk about the Pythagorean theorem in the schoolwork I'm doing and it's somehow gotten me intrigued, so I thought I'd make some sort of demonstration of it, this is what I'm trying to make, and this is what I've done in Scratch so far.

italvera wrote:

x^2 is the same thing as
((x) * (x))
Edit: If you want a full script, then it's
([sqrt v] of (((x) * (x)) + ((y) * (y)))
Ah, thanks ital!
italvera italvera loading

INSERT-USER_NAME wrote:

italvera wrote:

x^2 is the same thing as
((x) * (x))
Edit: If you want a full script, then it's
([sqrt v] of (((x) * (x)) + ((y) * (y)))
Ah, thanks ital!
No problem