keisoku

Rectangle Circumcircle

Find the circumscribed circle radius of a rectangle from its height and width, plus the diagonal, circle area, and diameter.

Input

Enter the height and width of a rectangle to find the radius of the circle passing through its four corners.

Result

b = 8a = 6R = 5

Circumcircle radius R

5

Diagonal

10

Circle area

78.539816

Diameter

10

Circumference

31.415927

Rectangle area

48


Lengths use the same unit as your input, and areas use the square of that unit.

How it works

  • The four corners of a rectangle all lie on one circle, called the circumscribed circle. Its center is exactly where the two diagonals cross.
  • The diameter of the circumscribed circle equals the rectangle diagonal. With height a and width b, the diagonal is the square root of (a squared plus b squared) by the Pythagorean theorem.
  • The circumradius R is half of the diagonal, so R equals the square root of (a squared plus b squared) divided by 2.
  • The circle area is pi times R squared and the circumference is 2 times pi times R. The rectangle area is a times b.
  • Lengths are shown in the same unit as your input. Areas use the square of that unit.

Reviews

Tell us what you think of this calculator.

Write a review

  1. Home
  2. Rectangle Circumcircle