Introduction to Arithmetic
Understand number sets, fundamental arithmetic operations with their governing laws, and extended concepts like exponents, roots, percentages, and order of operations.
Summary
Read Summary
Flashcards
Save Flashcards
Quiz
Take Quiz
Quick Practice
How do integers extend the set of natural numbers?
1 of 14
Summary
Overview of Arithmetic
Arithmetic is the foundation of all mathematics. It's the branch of mathematics that deals with the basic properties of numbers and the rules for working with them. Whether you're solving complex equations in algebra, calculating areas in geometry, or analyzing change in calculus, you're relying on arithmetic. Mastering these fundamental concepts is essential before moving forward in your mathematical studies.
Number Sets
Before we can manipulate numbers, we need to understand the different types of numbers that exist. Numbers are organized into sets, each building on the previous one.
Natural numbers are the most basic: 1, 2, 3, 4, and so on. These are the counting numbers we use naturally.
Integers expand this set to include zero and negative numbers: …, −2, −1, 0, 1, 2, … Integers allow us to represent quantities like debts (negative) or nothing at all (zero).
Rational numbers are any numbers that can be written as a fraction of two integers, like $\frac{1}{2}$ or $\frac{3}{4}$. Notice that all integers are also rational numbers—for example, 5 can be written as $\frac{5}{1}$. Rational numbers can be expressed as decimals too, either terminating (like 0.5) or repeating (like 0.333...).
Real numbers include all the sets mentioned above, plus irrational numbers (numbers that cannot be expressed as fractions, like $\pi$ or $\sqrt{2}$). For most arithmetic work at this level, you'll be working with rational numbers.
The number line above shows how different numbers are arranged relative to each other. Negative numbers appear to the left of zero, and positive numbers to the right. This visualization helps us understand concepts like "less than" and "greater than."
Basic Arithmetic Operations
The four fundamental operations form the cornerstone of arithmetic: addition, subtraction, multiplication, and division.
Addition combines two quantities to produce a sum. When you add 3 + 5, you're combining 3 units with 5 units to get 8 units total. The numbers being added are called addends, and the result is the sum.
Subtraction finds the difference between two quantities. The expression 8 − 3 asks: "What must I add to 3 to get 8?" The answer is 5. Here's a key insight: subtraction is equivalent to adding a negative number. So $8 - 3 = 8 + (-3)$. This perspective becomes very useful in algebra.
Multiplication is repeated addition. When you compute $4 \times 3$, you're adding 4 groups of 3 (or equivalently, 3 groups of 4), giving you 12. The numbers being multiplied are called factors, and the result is the product. Multiplication scales quantities—it answers questions like "If I have 4 groups of 3 items, how many items total?"
Division is the inverse of multiplication. It asks: "How many groups of a certain size can I make from a quantity?" For example, $12 \div 3 = 4$ means that 12 items can be divided into 4 groups of 3. Division distributes a quantity into a specified number of equal parts. Like subtraction, division can be thought of as multiplication by a reciprocal: $12 \div 3 = 12 \times \frac{1}{3}$.
Laws Governing Arithmetic Operations
Certain properties govern how operations behave. These aren't arbitrary rules—they're fundamental truths about numbers that allow us to manipulate expressions confidently.
Commutativity means that the order of operands doesn't matter for addition and multiplication.
For addition: $a + b = b + a$
For multiplication: $a \times b = b \times a$
This is why $3 + 5 = 5 + 3 = 8$ and $4 \times 3 = 3 \times 4 = 12$. Note that subtraction and division are not commutative: $8 - 3 \neq 3 - 8$ and $12 \div 3 \neq 3 \div 12$.
Associativity means that the grouping of operands doesn't affect the result for addition and multiplication.
For addition: $(a + b) + c = a + (b + c)$
For multiplication: $(a \times b) \times c = a \times (b \times c)$
For example, $(2 + 3) + 4 = 5 + 4 = 9$ and $2 + (3 + 4) = 2 + 7 = 9$. Both give the same answer regardless of which operation we perform first. This allows us to rearrange calculations for convenience.
Distributivity connects multiplication and addition. It shows how multiplication "distributes over" addition:
$$a \times (b + c) = a \times b + a \times c$$
For example, $3 \times (2 + 4) = 3 \times 6 = 18$, and also $3 \times 2 + 3 \times 4 = 6 + 12 = 18$. This property is crucial for algebraic manipulation and will appear throughout your mathematics studies.
Extended Arithmetic Concepts
Beyond the four basic operations, arithmetic includes several important concepts.
Exponents represent repeated multiplication. When you write $2^3$ (read as "2 to the power of 3" or "2 cubed"), you mean $2 \times 2 \times 2 = 8$. The number being multiplied (here, 2) is called the base, and the number of times it's multiplied (here, 3) is called the exponent. An important special case: any nonzero number to the power of 0 equals 1. For example, $5^0 = 1$.
Roots are the inverse operation of exponents. A square root asks: "What number, multiplied by itself, gives this value?" For instance, the square root of 9 is 3, written as $\sqrt{9} = 3$, because $3 \times 3 = 9$. More formally, the square root of $a$ is a number $b$ such that $b^2 = a$. Similarly, cube roots ($\sqrt[3]{\ }$) ask what number multiplied by itself three times gives the value, and so on.
Percentages express a part relative to a whole, using 100 as the reference. A percentage literally means "per hundred." For example, 25% means $\frac{25}{100}$ or 0.25. Percentages are useful for comparing quantities and expressing growth, discounts, or proportions.
Order of Operations
When an expression contains multiple operations, the order in which we perform them matters. Consider $2 + 3 \times 4$. If you add first, you get $(2 + 3) \times 4 = 5 \times 4 = 20$. If you multiply first, you get $2 + (3 \times 4) = 2 + 12 = 14$. These are different!
To ensure everyone gets the same answer, mathematicians established a standard order of operations, remembered by the acronym PEMDAS:
Parentheses: Perform operations inside parentheses first
Exponents: Calculate exponents next
Multiplication and Division: Perform these left to right as they appear
Addition and Subtraction: Perform these left to right as they appear
Let's apply this to the expression $2 + 3 \times 4$: Since multiplication comes before addition, we compute $3 \times 4 = 12$ first, then add 2 to get $2 + 12 = 14$.
A more complex example: $2(3 + 4)^2 - 5 \div 5$
Parentheses first: $3 + 4 = 7$
Exponents next: $7^2 = 49$
Then we have: $2 \times 49 - 5 \div 5$
Multiplication and division (left to right): $2 \times 49 = 98$ and $5 \div 5 = 1$
Finally addition and subtraction: $98 - 1 = 97$
The order of operations ensures that mathematical expressions have a unique, unambiguous result.
Why This Matters
Arithmetic forms the language of mathematics. Every concept you encounter later—from solving equations to computing areas to analyzing rates of change—ultimately rests on these fundamental operations and properties. By developing fluency with arithmetic now, you're building the solid foundation necessary for success in algebra, geometry, calculus, and beyond.
Flashcards
How do integers extend the set of natural numbers?
They include negative numbers and zero (e.g., $\dots, -2, -1, 0, 1, 2, \dots$).
What is a rational number?
A number that can be expressed as a fraction of two integers (e.g., $\frac{1}{2}$ or $\frac{3}{4}$).
How can subtraction be conceptualized in terms of addition?
As adding a negative number.
What is the conceptual definition of multiplication?
Repeated addition; it scales one quantity by another.
How is division related to multiplication?
It is the inverse operation; it distributes a quantity into equal parts.
What is the formula for the commutative law of addition?
$a + b = b + a$
What is the formula for the commutative law of multiplication?
$a \times b = b \times a$
How is the associative law of addition expressed mathematically?
$(a + b) + c = a + (b + c)$
How is the associative law of multiplication expressed mathematically?
$(a \times b) \times c = a \times (b \times c)$
What is the formula for multiplication distributing over addition?
$a \times (b + c) = a \times b + a \times c$
What does an exponent represent?
Repeated multiplication of a base by itself.
By definition, if $b$ is the square root of $a$, what must be true?
$b^{2} = a$
How does a percentage express a part of a whole?
As a fraction of $100$.
What is the standard sequence of calculations represented by the acronym PEMDAS?
Parentheses
Exponents
Multiplication
Division
Addition
Subtraction
Quiz
Introduction to Arithmetic Quiz Question 1: Which arithmetic law states that the order of adding two numbers does not affect the result?
- Commutativity of addition (correct)
- Associativity of multiplication
- Distributivity of multiplication over addition
- Identity property of subtraction
Introduction to Arithmetic Quiz Question 2: What does a percentage represent in arithmetic?
- A fraction of 100 (correct)
- A product of two numbers
- The sum of a series
- The square root of a number
Introduction to Arithmetic Quiz Question 3: What property is demonstrated by the equality $(a + b) + c = a + (b + c)$?
- Associativity of addition (correct)
- Commutativity of addition
- Distributivity of multiplication over addition
- Identity property of addition
Introduction to Arithmetic Quiz Question 4: Which law states that multiplication distributes over addition?
- The distributive law (correct)
- The commutative law
- The associative law
- The identity law
Introduction to Arithmetic Quiz Question 5: According to PEMDAS, which operation is performed first?
- Parentheses (correct)
- Exponents
- Multiplication
- Addition
Which arithmetic law states that the order of adding two numbers does not affect the result?
1 of 5
Key Concepts
Basic Arithmetic Concepts
Arithmetic
Addition
Multiplication
Division
Order of operations
Number Types
Real number
Integer
Rational number
Mathematical Properties
Commutative property
Associative property
Distributive property
Exponentiation
Definitions
Arithmetic
The branch of mathematics concerned with the properties of numbers and the basic operations of addition, subtraction, multiplication, and division.
Real number
A value that represents a quantity along a continuous line, encompassing rational and irrational numbers.
Integer
A whole number that can be positive, negative, or zero, extending the natural numbers to include negatives.
Rational number
Any number that can be expressed as the quotient of two integers, with a non‑zero denominator.
Addition
The arithmetic operation that combines two quantities to produce their sum.
Multiplication
The arithmetic operation of repeated addition, scaling one quantity by another.
Division
The arithmetic operation that determines how many times one quantity is contained within another, the inverse of multiplication.
Commutative property
A law stating that the order of two numbers does not affect the result of addition or multiplication (e.g., a + b = b + a).
Associative property
A law stating that when three or more numbers are added or multiplied, the way they are grouped does not change the result (e.g., (a + b) + c = a + (b + c)).
Distributive property
A law that links multiplication and addition, allowing multiplication to be distributed over addition (e.g., a × (b + c) = a × b + a × c).
Exponentiation
The operation of raising a base to a power, representing repeated multiplication of the base by itself.
Order of operations
A set of rules (often remembered by PEMDAS) that dictate the sequence in which arithmetic calculations are performed to ensure a unique result.