Even and Odd Integers
Even and Odd Integers
An even integer is a number that is divisible by two. An odd integer is a number that is not divisible by two.
Divisibility by two can be checked by the last digit: a number ends in if and only if it is divisible by two.
Negative integers can be even or odd as well. Examples:
Zero is divisible by two; zero is a multiple of two, hence it is even. (We will discuss zero more in a future video.)
In parity language, even numbers have the form for some integer , and odd numbers have the form .
Base intuition: parity is a property modulo 2.
Parity Rules for Addition and Subtraction
If you add or subtract two even numbers, the result is even.
Example: and (both even).
If you add or subtract an even and an odd number, the result is odd.
Examples: and (both odd).
If you add or subtract two odd numbers, the result is even.
Examples: and (both even).
Quick way to remember: write even as and odd as . Then:
(even)
(odd)
(even)
Parity Rules for Multiplication
If you multiply two even numbers, the result is even.
Examples: , (even).
If you multiply an even number by an odd number, the result is even.
Examples: , . Note: negatives work the same: (even).
If you multiply two odd numbers, the result is odd.
Examples: , , .
A helpful way to see this with algebra: if the numbers are expressed as or , their products preserve parity as above.
Division: Caveats and Exceptions
Division parity rules are not as clean as addition, subtraction, or multiplication. The quotient can be even, odd, or a non-integer (neither even nor odd as an integer).
Even ÷ Even:
Example: (even).
Example: (odd).
Example: (neither integer, i.e., not even or odd as an integer).
Even ÷ Odd:
Example: (even).
Example: (even), but parity is not guaranteed to be the same in all cases.
Example: (neither integer).
Odd ÷ Odd:
Example: (odd).
Example: (odd).
Example: (neither integer).
Takeaway: division does not have a simple parity rule like addition or multiplication; the result can be even, odd, or non-integer depending on the numbers involved. When studying parity, focus more on addition, subtraction, and multiplication.
Exponents with Even and Odd Bases
Even base raised to an integer exponent:
For any even base and exponent with , is even.
If the exponent is zero, (which is odd).
The standard rule (as noted in this course) is: anything raised to the zero power is 1; we will explore this more in a future video about zero.
Examples: (even), (even), (odd).
Odd base raised to an integer exponent:
For any odd base and any nonnegative exponent, is odd. This includes the case , since , and is odd.
Examples: (odd), (odd), (odd).
Summary:
If the base is even and the exponent is a positive integer, the result is even (
except the zero-exponent case).If the base is odd, the result is always odd for nonnegative exponents.
The special case of exponent zero yields 1, which is odd.
Quick References and Practice Prompts
Parity definitions in compact form:
Even:
Odd:
Divisibility by 2: last digit rule (ends with ).
Important edge cases to remember:
Zero is even: .
Negative numbers retain parity: e.g., is even, is odd.
For exponents, for any nonzero ; if the base is even, the result is even for positive exponents, and odd for exponent 0.
Encouragement: if you forget a rule, create your own examples to test parity; practice with multiple numbers to see the patterns.
Connections to Foundations and Real-World Relevance
Parity is a fundamental concept in modular arithmetic (mod 2). It underpins algorithms in computer science (binary logic), cryptography, and error detection.
In many programming tasks, quick parity checks (like last digit or bitwise & operations) speed up decision-making without full arithmetic.
Zero’s special status (even, multiple of 2, yet sometimes treated separately in certain contexts) motivates deeper study of edge cases in math.
Real-world relevance: parity reasoning helps in quick mental math, simplifying problems in number theory, and proving divisibility properties.
Notes for Exam Preparation
Be able to derive parity results from the standard representations or .
Practice with both positive and negative integers, and include the zero case.
Memorize the clean rules for addition, subtraction, and multiplication; remember that division has many exceptions and is not as straightforward for parity.
For exponents, remember:
If the base is even and exponent > 0, result is even.
If the base is odd, result is odd for any nonnegative exponent.
The exponent zero yields 1 for any nonzero base (and 1 is odd).
Build your own examples to reinforce understanding and to prepare for similar questions on exams.