Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Lattice points are points on a coordinate grid whose coordinates are both integers. Pick's Theorem gives a fast way to find the area of certain polygons drawn on a lattice. This cheat sheet helps students count boundary and interior lattice points accurately, then connect those counts to area.

It is useful for geometry, coordinate geometry, contest math, and visual problem solving.

The key formula is Pick's Theorem, A=I+B21A = I + \frac{B}{2} - 1, where AA is area, II is the number of interior lattice points, and BB is the number of boundary lattice points. For a line segment between lattice points, the number of lattice points on the segment is related to gcd(Δx,Δy)\gcd(|\Delta x|, |\Delta y|). Students should understand when the theorem applies, how to count points without double-counting vertices, and how to check answers using area formulas such as the shoelace formula.

Key Facts

  • A lattice point is a point (x,y)(x,y) where both xx and yy are integers.
  • Pick's Theorem states that the area of a simple lattice polygon is A=I+B21A = I + \frac{B}{2} - 1.
  • In Pick's Theorem, II is the number of lattice points strictly inside the polygon and BB is the number of lattice points on the boundary.
  • For a segment from (x1,y1)(x_1,y_1) to (x2,y2)(x_2,y_2), the number of boundary lattice points on the segment including both endpoints is gcd(x2x1,y2y1)+1\gcd(|x_2-x_1|,|y_2-y_1|)+1.
  • When adding boundary counts around a polygon, use B=gcd(Δx,Δy)B = \sum \gcd(|\Delta x|,|\Delta y|) so vertices are not double-counted.
  • Pick's Theorem can be rearranged to find interior points: I=AB2+1I = A - \frac{B}{2} + 1.
  • Pick's Theorem can be rearranged to find boundary points: B=2A2I+2B = 2A - 2I + 2.
  • Pick's Theorem applies only to simple polygons whose vertices are lattice points, not to curves, self-intersecting polygons, or polygons with non-lattice vertices.

Vocabulary

Lattice point
A point on the coordinate plane with integer coordinates, such as (3,2)(3,-2).
Lattice polygon
A polygon whose vertices are all lattice points.
Boundary point
A lattice point that lies on an edge or vertex of the polygon.
Interior point
A lattice point that lies strictly inside the polygon and not on any edge.
Pick's Theorem
A formula for the area of a simple lattice polygon, given by A=I+B21A = I + \frac{B}{2} - 1.
Greatest common divisor
The greatest common divisor, written gcd(a,b)\gcd(a,b), is the largest positive integer that divides both aa and bb.

Common Mistakes to Avoid

  • Counting vertices twice is wrong because each vertex belongs to two edges. Use B=gcd(Δx,Δy)B = \sum \gcd(|\Delta x|,|\Delta y|) when counting boundary points around a polygon.
  • Including boundary points as interior points is wrong because Pick's Theorem separates them into II and BB. Points on an edge or vertex must be counted in BB, not II.
  • Using Pick's Theorem on a polygon with non-integer vertices is wrong because the theorem requires every vertex to be a lattice point. Check that each vertex has coordinates (x,y)(x,y) with integer xx and integer yy.
  • Forgetting the 1-1 in A=I+B21A = I + \frac{B}{2} - 1 is wrong because it changes the area by one square unit. Always write the full formula before substituting values.
  • Using Δx+Δy|\Delta x|+|\Delta y| to count points on a slanted segment is wrong because diagonal lattice spacing depends on the greatest common divisor. Use gcd(Δx,Δy)+1\gcd(|\Delta x|,|\Delta y|)+1 for one segment including endpoints.

Practice Questions

  1. 1 A lattice polygon has I=7I = 7 interior lattice points and B=10B = 10 boundary lattice points. Find its area using A=I+B21A = I + \frac{B}{2} - 1.
  2. 2 Find the number of lattice points on the segment from (2,3)(2,3) to (14,9)(14,9), including both endpoints.
  3. 3 A simple lattice polygon has area A=18A = 18 and B=12B = 12 boundary lattice points. Find the number of interior lattice points.
  4. 4 Explain why Pick's Theorem cannot be used directly for a triangle with vertices (0,0)(0,0), (4,1)(4,1), and (2.5,5)(2.5,5).