STAGE NT 4.1 · 8 PRACTICE PROBLEMS · 2 NEW-CONTEXT APPLICATIONS
Nonnegative Integer Solutions
Useful preparation: Combining Remainder Conditions
Goal: Understand and apply nonnegative integer solutions.
Before you begin: Combining Remainder Conditions
Understand the idea
Integer restrictions turn an equation into a finite count when coefficients and the target are positive. Bounds and parity often eliminate most candidate values before substitution.
Choose and carry out a method
For 2x+3y=N, bound y between zero and floor(N/3). Keep only y values making N−3y even, then compute x.
Check the reasoning
Verify x and y are nonnegative integers. Each accepted y determines exactly one x, preventing duplicate counting.
How many pairs of nonnegative integers (x,y) satisfy 2x+3y=15?
- Use one variable to parameterize the possibilities, then enforce divisibility and nonnegativity.
- Try x=0 through 7; retain x only if 15-2x is divisible by 3.
- There are 3 pairs. Each retained x determines exactly one y.
3
How many pairs of nonnegative integers (x,y) satisfy 2x+3y=18?
- Use one variable to parameterize the possibilities, then enforce divisibility and nonnegativity.
- Try x=0 through 9; retain x only if 18-2x is divisible by 3.
- There are 4 pairs. Each retained x determines exactly one y.
4
Common pitfalls
Possible mix-up: Every y in the numerical range gives a solution.
The remaining numerator must also be divisible by two.
Possible mix-up: A correct numerical answer alone explains the method.
State the governing relationship and check the conditions described above.
Explain it to yourself
How does parity let you count the allowed y values without testing all of them?
Preview the eight practice prompts
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=24?
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=27?
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=30?
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=33?
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=36?
- How many pairs of nonnegative integers (x,y) satisfy 2x+3y=39?
- A store sells packs containing 2 or 3 beads. How many choices of counts of the two pack sizes buy exactly 42 beads? Packs of the same size are indistinguishable. New context
- A store sells packs containing 2 or 3 beads. How many choices of counts of the two pack sizes buy exactly 45 beads? Packs of the same size are indistinguishable. New context

