Skip to content

Geometry Equations

Sample Prompt

Create a list of the 25 most commonly used
equations in a high school geometry course.

For each equation, return the following:

1. The name of the equation in markdown level 4.
2. Within the body, return the equation in LaTeX format
3. Surround the equation with dollar signs
4. For each variable in the equation, add a "where:" that defines each variable
5. Put blank lines around the list of variables
6. Wrap the variables names in dollar signs

Examples:

#### Slope and Intercept
$y = m * x + b$

where:

- $y$ is the vertical axis
- $x$ is the horizontal axis
- $m$ is the slope
- $b$ is the intercept

#### Area of a Circle
$A = 2\pi r^2$
where:

- $A$ is the area of the circle
- $r$ is the radius

Sample Response from ChatGPT

Note

We had to do extensive filtering on this because the Markdown Paste does not work correctly on LaTeX equations in VSCode. See the src/latex-cleanup code for details on the Python filter we had ChatGPT create to clean up the formatting.

1. Area of a Triangle

A=12bh

where:

  • A is the area of the triangle
  • b is the base of the triangle
  • h is the height of the triangle

2. Pythagorean Theorem

c2=a2+b2

where:

  • c is the hypotenuse of the right triangle
  • a and b are the other two sides

3. Area of a Circle

A=2πr2

where:

  • A is the area of the circle
  • r is the radius

4. Circumference of a Circle

C=2πr

where:

  • C is the circumference
  • r is the radius

5. Distance Formula

d=(x2x1)2+(y2y1)2

where:

  • d is the distance between two points
  • (x1,y1) and (x2,y2) are the coordinates of the two points

6. Midpoint Formula

M=(x1+x22,y1+y22)

where:

  • M is the midpoint of the segment
  • (x1,y1) and (x2,y2) are the endpoints

7. Slope Formula

m=y2y1x2x1

where:

  • m is the slope
  • (x1,y1) and (x2,y2) are the points

8. Area of a Rectangle

A=lw where:

  • A is the area
  • l is the length
  • w is the width

9. Perimeter of a Rectangle

P=2l+2w

where:

  • P is the perimeter
  • l is the length
  • w is the width

10. Area of a Parallelogram

A=bh

where:

  • A is the area
  • b is the base
  • h is the height

11. Area of a Trapezoid

A=12(b1+b2)h

where:

  • A is the area
  • b1​ and b2 are the bases
  • h is the height

12. Volume of a Rectangular Prism

V=lwh

where:

  • V is the volume
  • l is the length
  • w is the width
  • h is the height

13. Surface Area of a Rectangular Prism

SA=2lw+2lh+2wh where:

  • SA is the surface area
  • l is the length
  • w is the width
  • h is the height

14. Volume of a Sphere

V=43πr3

where:

  • V is the volume
  • r is the radius

15. Surface Area of a Sphere

SA=4πr2 where:

  • SA is the surface area
  • r is the radius

16. Volume of a Cylinder

V=πr2h

where:

  • V is the volume
  • r is the radius
  • h is the height

17. Surface Area of a Cylinder

SA=2πr2+2πrh

where:

  • SA is the surface area
  • r is the radius
  • h is the height

18. Volume of a Cone

V=13πr2h

where:

  • V is the volume
  • r is the radius
  • h is the height

19. Surface Area of a Cone

SA=πr(r+l)

where:

  • SA is the surface area
  • r is the radius
  • l is the slant height

20. Area of a Regular Polygon

A=12aP

where:

  • A is the area
  • a is the apothem
  • P is the perimeter

21. Sum of Interior Angles of a Polygon

S=180(n2)

where:

  • S is the sum of the interior angles
  • n is the number of sides

22. Measure of Each Interior Angle of a Regular Polygon

Angle=180(n2)n

where:

  • Angle is the measure of each interior angle
  • n is the number of sides

23. Law of Sines

asinA=bsinB=csinC

where:

  • a,b,c are the sides of the triangle
  • A,B,C are the angles opposite those sides

24. Law of Cosines

c2=a2+b22abcosC

where:

  • c is the side opposite angle C
  • a and b are the other sides
  • C is the included angle

25. Equation of a Circle

(xh)2+(yk)2=r2

where:

  • (h,k) is the center of the circle
  • r is the radius