Pythagorean Triples

Pythagorean Triples are natural numbers \(a\), \(b\), and \(c\) such that \[a^2 + b^2 = c^2\] For example, \(3^2 + 4^2 = 5^2\).

The spreadsheet contains some values of \(a\) and \(b\). To calculate the corresponding values of \(c\):

  1. In C2, enter the formula =sqrt(A2^2+B2^2)
  2. Extend the formula through row 21.
The function sqrt is the square root.