Constraints (Meta) Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
A rectangle has area 36 cm² and integer side lengths. List all constraints and find all valid dimension pairs (l,w)(l, w) with lwl \ge w.

Solution

  1. 1
    Constraints: lw=36l \cdot w = 36, both l,wl, w are positive integers, lwl \ge w.
  2. 2
    Factor pairs of 36 with lwl \ge w: (36,1),(18,2),(12,3),(9,4),(6,6)(36,1),(18,2),(12,3),(9,4),(6,6).

Answer

(36,1),(18,2),(12,3),(9,4),(6,6)(36,1),(18,2),(12,3),(9,4),(6,6)
Multiple constraints together (integer values, positive, product fixed, ordering) restrict the solution to a finite list. Systematically factoring under all constraints avoids missing solutions.

About Constraints (Meta)

Constraints are conditions, rules, or boundaries that restrict which values or solutions are allowed in a mathematical problem, narrowing an infinite space of possibilities to a manageable set.

Learn more about Constraints (Meta) →

More Constraints (Meta) Examples