如何计算Pythagorean Theorem
learn.whatIsHeading
The Pythagorean theorem states that in any right triangle, the square of the hypotenuse (the side opposite the right angle) equals the sum of the squares of the other two sides. Written as a² + b² = c², where c is the hypotenuse.
分步指南
- 1Identify the right angle (90°) in the triangle
- 2Label the two shorter sides a and b, and the longest side (opposite 90°) as c
- 3Square each of a and b, then add them
- 4Take the square root of the sum to find c
例题解析
输入
a=3, b=4
结果
c = 5
3²+4²=9+16=25, √25=5
输入
a=5, b=12
结果
c = 13
25+144=169, √169=13
输入
a=8, b=15
结果
c = 17
64+225=289, √289=17
输入
c=10, a=6
结果
b = 8
10²−6²=100−36=64, √64=8
准备好计算了吗?尝试免费的 Pythagorean Theorem 计算器
自己尝试一下 →