Rectangles Grid

Rectangle Grid Counting problems involve counting the total number of rectangles (including squares) in an m×n grid of cells. The formula uses combinations: choose 2 horizontal lines from (m+1) lines and 2 vertical lines from (n+1) lines.

10Worksheets
200+Practice Questions
IntermediateDifficulty
2-3 hoursHours to Master

Introduction to Rectangles Grid

Rectangle Grid Counting problems involve counting the total number of rectangles (including squares) in an m×n grid of cells. The formula uses combinations: choose 2 horizontal lines from (m+1) lines and 2 vertical lines from (n+1) lines.

Prerequisites

Combination formula: C(n,2) = n(n-1)/2 Understanding of grid lines Rectangle formation concept Basic multiplication
Why This Matters: Rectangle Grid problems appear in 2-3 questions in SSC CGL and Banking PO exams. They test combinatorial reasoning and formula application.

How to Solve Rectangles Grid Problems

1

Step 1: Identify grid dimensions: m rows, n columns

2

Step 2: Number of horizontal lines = m + 1

3

Step 3: Number of vertical lines = n + 1

4

Step 4: Choose 2 horizontal lines: C(m+1, 2) = (m+1)m/2

5

Step 5: Choose 2 vertical lines: C(n+1, 2) = (n+1)n/2

6

Step 6: Total rectangles = C(m+1,2) × C(n+1,2)

7

Step 7: This count includes all squares as well

Pro Strategy: Use the combination formula: Total rectangles = C(m+1,2) × C(n+1,2). This counts every possible rectangle by its top and bottom edges (horizontal lines) and left and right edges (vertical lines).

Example Problem

Example: Count total rectangles (including squares) in a 2×3 grid. Solution: Step 1: m = 2 rows, n = 3 columns Step 2: Horizontal lines = 2+1 = 3 Step 3: Vertical lines = 3+1 = 4 Step 4: Choose 2 horizontal lines: C(3,2) = 3×2/2 = 3 Step 5: Choose 2 vertical lines: C(4,2) = 4×3/2 = 6 Step 6: Total rectangles = 3 × 6 = 18 Answer: 18 rectangles

Pro Tips & Tricks

  • Formula: Rectangles = C(m+1,2) × C(n+1,2) = [m(m+1)/2] × [n(n+1)/2]
  • For 2×2 grid: C(3,2)×C(3,2) = 3×3 = 9 rectangles
  • For 2×3 grid: C(3,2)×C(4,2) = 3×6 = 18 rectangles
  • For 3×3 grid: C(4,2)×C(4,2) = 6×6 = 36 rectangles
  • For 3×4 grid: C(4,2)×C(5,2) = 6×10 = 60 rectangles
  • This formula counts ALL rectangles, including squares

Shortcut Methods to Solve Faster

Total rectangles = [m(m+1)/2] × [n(n+1)/2]
Quick values: 2×2→9, 2×3→18, 2×4→30, 3×3→36, 3×4→60, 4×4→100
For square grid n×n: rectangles = [n(n+1)/2]²

Common Mistakes to Avoid

Counting only rectangles that are not squares (the formula includes squares automatically)
Using wrong number of lines (m lines instead of m+1 lines)
Forgetting to divide by 2 in the combination formula
Using m×n instead of the combination formula

Exam Importance

Rectangles Grid is an important topic for various competitive exams. Here's how frequently it appears:

SSC CGL
2-3 questions
BANKING PO
2-3 questions
RAILWAYS RRB
2-3 questions
CAT
1-2 questions
INSURANCE
2-3 questions

Ready to Master Rectangles Grid?

Start with Worksheet 1 and work your way up to expert level! Each worksheet includes:

20 practice questions
Detailed solutions
Step-by-step explanations
Start Practicing Now