Discrete Mathematics: Geometric Counting
Geometric Counting
- An $M \times N$ grid of squares is formed by horizontal and vertical grid lines. How many total rectangles can be formed using these grid lines?
- An $M \times N$ grid of squares is formed by horizontal and vertical grid lines. How many rectangles of exactly size $A \times B$ can be formed?
- An $M \times N$ grid of squares is formed by horizontal and vertical grid lines. A square in row $A$ and column $B$ (counted from the bottom-left corner) is fixed. How many rectangles contain this fixed square?
- An $M \times N$ grid of squares is formed by horizontal and vertical grid lines. How many squares can be formed using these grid lines?
- If you draw $N$ straight lines in the plane, where no two lines are parallel and no three meet at the same point, how many intersection points are formed?
- If you draw $N$ straight lines in the plane, where no two lines are parallel and every pair intersects exactly once, and no three meet at the same point, how many line segments are created in total after cutting at intersections?
- If you draw $N$ straight lines in the plane, where no two lines are parallel and no three meet at the same point, how many regions are formed?
- If you draw a convex polygon with $N$ vertices and draw all diagonals, assuming no three diagonals intersect at a single interior point, how many interior intersection points are formed?
- If you draw a convex polygon with $N$ vertices and draw all diagonals, assuming no three diagonals intersect at a single interior point, how many regions are formed inside the polygon?
- If you draw $N$ points on a circle and draw all chords between every pair of points, where no three chords intersect at the same interior point, how many interior intersection points are formed?
- If you draw $N$ points on a circle and draw all chords between every pair of points, where no three chords intersect at the same interior point, how many regions are formed inside the circle?
- What is the maximum number of regions a circle can be divided into using $N$ straight line cuts?
- If $2N$ points are placed on a circle, how many ways are there to draw non-crossing chords between pairs of points so that every point is matched exactly once?
$$ \boxed{\binom{M+1}{2}\binom{N+1}{2}} $$
$$ \boxed{(M-A+1)(N-B+1)} $$
$$ \boxed{A(M-A+1)\cdot B(N-B+1)} $$
$$ \boxed{\sum_{k=1}^{\min(M,N)} (M-k+1)(N-k+1)} $$
$$ \boxed{\binom{N}{2}} $$
$$ \boxed{N^2} $$
$$ \boxed{\frac{N(N+1)}{2} + 1} $$
$$ \boxed{\binom{N}{4}} $$
$$ \boxed{\frac{N^4 - 6N^3 + 23N^2 - 18N + 24}{24}} $$
$$ \boxed{\binom{N}{4}} $$
$$ \boxed{\binom{N}{4} + \binom{N}{2} + 1} $$
$$ \boxed{\frac{N(N+1)}{2} + 1} $$
$$ \boxed{ C_N = \frac{1}{N+1}\binom{2N}{N} } $$
Comments
Post a Comment