Logo
Published on

Parity of a Cubed Minus a Plus One

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

Prove that the expression a3a+1a^3 - a + 1 is odd for all positive integer values of aa.


Hints

Consider factoring a3aa^3 - a as a product of consecutive integers. What can you say about the parity of any product of consecutive integers?

Alternatively, try proof by cases: analyze when aa is even and when aa is odd separately.


Solutions

Method 1 (Factorization - Elegant):

Factor the expression:

a3a+1=a(a21)+1=a(a1)(a+1)+1=(a1)a(a+1)+1\begin{aligned} a^3 - a + 1 &= a(a^2 - 1) + 1 \\ &= a(a-1)(a+1) + 1 \\ &= (a-1)a(a+1) + 1 \end{aligned}

The product (a1)a(a+1)(a-1)a(a+1) is the product of three consecutive integers. In any set of consecutive integers, at least one must be even, so the product is even. Let (a1)a(a+1)=2k(a-1)a(a+1) = 2k for some integer kk.

Therefore, a3a+1=2k+1a^3 - a + 1 = 2k + 1, which is odd by definition.

Method 2 (Cases):

Case 1: If a=2ma = 2m (even), then a3a+1=8m32m+1=2(4m3m)+1a^3 - a + 1 = 8m^3 - 2m + 1 = 2(4m^3 - m) + 1 (odd).

Case 2: If a=2m+1a = 2m+1 (odd), then expanding shows a3a+1=2(integer)+1a^3 - a + 1 = 2(\text{integer}) + 1 (odd).

In both cases, the expression is odd. \blacksquare


Takeaways

  • Reconstruct the full proof from the hint and the solution outline, and justify every transformation explicitly.
  • Check edge cases and verify where each assumption is used in the argument.

Further Readings

If you found this proof interesting, be sure to check out these relevant HSC booklets to sharpen your reasoning skills:


Connect with me

If you're eager for more HSC Maths insights, be sure to check out my LinkedIn. For deeper dives and regular tips, join my Substack. Let's tackle these challenging math problems together! You can also catch my daily math content on GitHub.