Skip to Content
All memories

Numbers, Equations, and Comparisons - The Language of Mathematics

 — #Mathematics#Number Theory

Mathematics is often described as the language of the universe, providing a framework to understand patterns, quantities, and relationships. From the simplest act of counting to the intricate equations describing the cosmos, its principles are fundamental. This exploration delves into foundational mathematical concepts: the diverse systems of numbers, the precise logic of inequalities, and the elegant structure of the theory of equations, particularly focusing on polynomials.


The Building Blocks: Number Systems – A Universe of Digits

Our mathematical journey begins with understanding the different categories of numbers, each expanding our ability to quantify and conceptualize.

  • Natural Numbers (N\mathbb{N}): These are the counting numbers, the very first numbers we learn: 1,2,3,4,1, 2, 3, 4, \ldots. They are used for counting and ordering.

  • Whole Numbers (W\mathbb{W}): This set includes all natural numbers along with zero: 0,1,2,3,0, 1, 2, 3, \ldots. The inclusion of zero was a significant conceptual leap in mathematics.

  • Integers (Z\mathbb{Z}): Integers encompass all whole numbers and their negative counterparts: ,3,2,1,0,1,2,3,\ldots, -3, -2, -1, 0, 1, 2, 3, \ldots. This set allows us to represent concepts like debt, temperatures below zero, or direction.

  • Rational Numbers (Q\mathbb{Q}): These are numbers that can be expressed as a fraction p/qp/q, where pp and qq are integers and q0q \neq 0. Rational numbers include all integers (e.g., 5=5/15 = 5/1) and terminating or repeating decimals (e.g., 0.5=1/20.5 = 1/2, 0.333=1/30.333\ldots = 1/3).

  • Irrational Numbers (I\mathbb{I} or RQ\mathbb{R}\setminus\mathbb{Q}): These numbers cannot be expressed as a simple fraction of two integers. Their decimal representations are non-terminating and non-repeating. Famous examples include π3.14159\pi \approx 3.14159\ldots, e2.71828e \approx 2.71828\ldots, and 21.41421\sqrt{2} \approx 1.41421\ldots.

  • Real Numbers (R\mathbb{R}): This set comprises all rational and irrational numbers. Real numbers can be visualized as all points on an infinitely long number line.

  • Imaginary Numbers: These numbers arise when we consider the square root of negative numbers. The fundamental imaginary unit is ii, defined as i=1i = \sqrt{-1}. An imaginary number is of the form bibi, where bb is a real number and b0b \neq 0.

  • Complex Numbers (C\mathbb{C}): Complex numbers extend the real numbers by including imaginary numbers. A complex number is generally expressed in the form a+bia + bi, where aa and bb are real numbers. aa is called the real part, and bb is called the imaginary part. The set of real numbers is a subset of complex numbers (where b=0b=0). Complex numbers are crucial in many areas of science and engineering.


Setting the Stage: Constants, Variables, Functions, and Intervals

To build mathematical arguments and models, we use several key concepts:

  • Constants and Variables:

    • A constant is a value that does not change. Examples include numbers like 2,π,e2, \pi, e.
    • A variable is a symbol (like x,y,tx, y, t) that can represent any value from a specified set.
      • An independent variable is a variable whose value is not dependent on any other variable in the context of a specific problem or function; it is often the input.
      • A dependent variable is a variable whose value depends on one or more independent variables; it is often the output of a function.
  • Functions: A function is a rule that assigns to each input value (from a set called the domain) exactly one output value (in a set called the codomain; the set of actual output values is the range). We often write y=f(x)y = f(x), where xx is the independent variable (input), yy is the dependent variable (output), and ff is the function's name.

  • Intervals: An interval is a set of real numbers that contains all real numbers lying between any two numbers of the set.

    • Open Interval: (a,b)(a, b) represents all real numbers xx such that a<x<ba < x < b. The endpoints aa and bb are not included.
    • Closed Interval: [a,b][a, b] represents all real numbers xx such that axba \le x \le b. The endpoints aa and bb are included.
    • Half-Open/Half-Closed Intervals: (a,b](a, b] (a<xba < x \le b) or [a,b)[a, b) (ax<ba \le x < b).

    Intervals can also extend to infinity, e.g., (a,)(a, \infty) or (,b](-\infty, b].


The Hidden Patterns: An Introduction to Number Theory

Number theory is a branch of pure mathematics devoted primarily to the study of the integers and their properties. It explores the beautiful and often surprising relationships between these fundamental numbers.

Divisibility, Primes, and the Foundation of Integers

  • Divisibility: An integer aa divides an integer bb, written aba|b, if there exists an integer kk such that b=akb = ak. Here, aa is a divisor of bb, and bb is a multiple of aa.
  • Prime Numbers: A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. A natural number greater than 1 that is not prime is called a composite number.
  • The Fundamental Theorem of Arithmetic: This cornerstone of number theory states that every integer greater than 1 is either a prime number itself or can be represented as a product of prime numbers, and this representation is unique, apart from the order of the factors.

Finding Common Ground: GCD, LCM, and the Euclidean Algorithm

  • Greatest Common Divisor (GCD): The GCD of two integers aa and bb (not both zero), denoted gcd(a,b)\text{gcd}(a,b), is the largest positive integer that divides both aa and bb.

  • Least Common Multiple (LCM): The LCM of two non-zero integers aa and bb, denoted lcm(a,b)\text{lcm}(a,b), is the smallest positive integer that is divisible by both aa and bb.

  • Relationship: For positive integers aa and bb: ab=gcd(a,b)lcm(a,b)a \cdot b = \text{gcd}(a,b) \cdot \text{lcm}(a,b).

  • The Euclidean Algorithm: This is a highly efficient method for computing the greatest common divisor of two integers. It is based on the principle that the greatest common divisor of two numbers does not change if the larger number is replaced by its difference with the smaller number. Repeatedly applying this, the algorithm relies on the fact that gcd(a,b)=gcd(b,a(modb))\text{gcd}(a,b) = \text{gcd}(b, a \pmod b).

    • Derivation/Steps: To find gcd(a,b)\text{gcd}(a,b) with a>ba>b:
      1. Divide aa by bb and find the remainder r1r_1. So, a=q1b+r1a = q_1 b + r_1.
      2. Replace aa with bb and bb with r1r_1, and repeat the division. b=q2r1+r2b = q_2 r_1 + r_2.
      3. Continue this process until the remainder is zero. The last non-zero remainder is the GCD.
    • Example: Find gcd(1071,462)\text{gcd}(1071, 462).
      • 1071=2462+1471071 = 2 \cdot 462 + 147
      • 462=3147+21462 = 3 \cdot 147 + 21
      • 147=721+0147 = 7 \cdot 21 + 0
      The last non-zero remainder is 21. Thus, gcd(1071,462)=21\text{gcd}(1071, 462) = 21.

Clock Arithmetic: Modular Arithmetic and Congruences

Modular arithmetic is a system of arithmetic for integers, where numbers "wrap around" after they reach a certain value—the modulus.

  • Congruence Relation: Two integers aa and bb are said to be congruent modulo nn if their difference (ab)(a-b) is an integer multiple of nn. This is written as: ab(modn)a \equiv b \pmod n This is equivalent to stating that aa and bb have the same remainder when divided by nn. For example, 3814(mod12)38 \equiv 14 \pmod{12} because 3814=2438-14=24, which is a multiple of 12. Also, both 38 and 14 have a remainder of 2 when divided by 12.

Solving Systems of Congruences: The Chinese Remainder Theorem

The Chinese Remainder Theorem provides a way to solve a system of simultaneous congruences with pairwise coprime moduli.

  • Statement: Let n1,n2,,nkn_1, n_2, \ldots, n_k be integers that are pairwise coprime (i.e., gcd(ni,nj)=1\text{gcd}(n_i, n_j)=1 for any iji \neq j). Then for any given sequence of integers a1,a2,,aka_1, a_2, \ldots, a_k, the system of congruences: {xa1(modn1)xa2(modn2)xak(modnk)\begin{cases} x \equiv a_1 \pmod{n_1} \\ x \equiv a_2 \pmod{n_2} \\ \vdots \\ x \equiv a_k \pmod{n_k} \end{cases} has a solution, and the solution is unique modulo N=n1n2nkN = n_1 n_2 \dots n_k.

Powerful Theorems of Modular Arithmetic

  • Fermat's Little Theorem:

    • Statement: If pp is a prime number, then for any integer aa not divisible by pp, the number ap11a^{p-1} - 1 is an integer multiple of pp. In modular arithmetic notation: ap11(modp)a^{p-1} \equiv 1 \pmod p
    • Alternative Form: For any integer aa and prime pp, apa(modp)a^p \equiv a \pmod p.
  • Euler's Totient Theorem: This theorem generalizes Fermat's Little Theorem to any modulus nn.

    • Euler's Totient Function ϕ(n)\phi(n): This function counts the number of positive integers up to a given integer nn that are relatively prime to nn (i.e., gcd(k,n)=1\text{gcd}(k, n)=1 for 1kn1 \le k \le n). For a prime pp, ϕ(p)=p1\phi(p) = p-1.
    • Statement: If aa and nn are relatively prime positive integers, then: aϕ(n)1(modn)a^{\phi(n)} \equiv 1 \pmod n

    Since ϕ(p)=p1\phi(p)=p-1 for a prime pp, Fermat's Little Theorem is a special case of Euler's Theorem.


Setting the Stage: Constants, Variables, Functions, and Intervals

To build mathematical arguments and models, we use several key concepts:

  • Constants and Variables:

    • A constant is a value that does not change.
    • A variable is a symbol that can represent any value from a specified set. We distinguish between independent variables (inputs) and dependent variables (outputs).
  • Functions: A function is a rule that assigns to each input value from its domain exactly one output value. We write y=f(x)y = f(x), where xx is the independent variable and yy is the dependent variable.

  • Intervals: An interval is a set of real numbers between two given numbers. They can be open (endpoints not included, e.g., (a,b)(a,b)) or closed (endpoints included, e.g., [a,b][a,b]).


The Balancing Act (Or Not!): Inequalities – Comparing Quantities

Inequalities are mathematical statements that compare the relative sizes of two expressions using symbols such as:

  • << (less than)
  • >> (greater than)
  • \le (less than or equal to)
  • \ge (greater than or equal to)

Properties of Inequalities: Understanding these properties is crucial for solving inequalities:

  1. Addition/Subtraction: Adding or subtracting the same real number to both sides of an inequality preserves the inequality. If a<ba < b, then a+c<b+ca+c < b+c and ac<bca-c < b-c.
  2. Multiplication/Division by a Positive Constant: Multiplying or dividing both sides by the same positive real number preserves the inequality. If a<ba < b and c>0c > 0, then ac<bcac < bc and a/c<b/ca/c < b/c.
  3. Multiplication/Division by a Negative Constant: Multiplying or dividing both sides by the same negative real number reverses the direction of the inequality. If a<ba < b and c<0c < 0, then ac>bcac > bc and a/c>b/ca/c > b/c.
  4. Reciprocals: If aa and bb are both positive (or both negative) and a<ba < b, then 1/a>1/b1/a > 1/b. If aa is positive and bb is negative, the inequality 1/a>1/b1/a > 1/b still holds.
  5. Squaring:
    • If aa and bb are both non-negative and a<ba < b, then a2<b2a^2 < b^2.
    • If aa and bb are both negative and a<ba < b (e.g., 3<2-3 < -2), then a2>b2a^2 > b^2 (e.g., 9>49 > 4).
    • Care must be taken when one number is positive and the other is negative, or when dealing with variables whose sign is unknown.

The Algebraic Stars: Polynomials – Expressions of Power

A polynomial in one variable xx is an expression of the form: P(x)=anxn+an1xn1++a1x+a0P(x) = a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0 Where:

  • an,an1,,a1,a0a_n, a_{n-1}, \ldots, a_1, a_0 are constants called the coefficients.
  • If the coefficients are real numbers, it is a real polynomial. If they can be complex numbers, it is a complex polynomial.
  • nn is a non-negative integer called the degree of the polynomial (if an0a_n \neq 0).
  • anxna_n x^n is the leading term, and ana_n is the leading coefficient.
  • a0a_0 is the constant term.

Solving the Puzzles: Polynomial Equations – Finding the Roots

A polynomial equation is formed when a polynomial is set equal to zero: P(x)=anxn+an1xn1++a1x+a0=0P(x) = a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0 = 0

  • Domain: The domain of a polynomial function (and thus often considered for the equation) is typically all real numbers (R\mathbb{R}) or all complex numbers (C\mathbb{C}), unless specified otherwise.
  • Degree & Number of Roots:
    • The degree of a polynomial equation is the highest power of the variable with a non-zero coefficient.
    • The Fundamental Theorem of Algebra states that every non-constant single-variable polynomial with complex coefficients has at least one complex root. An important corollary is that a polynomial of degree nn has exactly nn complex roots, counting multiplicities. If the polynomial has real coefficients, then any non-real complex roots occur in conjugate pairs (a+bia+bi and abia-bi).
  • Roots (or Zeros) of a Polynomial: The values of xx that satisfy the polynomial equation P(x)=0P(x)=0 are called the roots or zeros of the polynomial P(x)P(x).

Useful Theorems for Polynomial Equations:

  • Remainder Theorem: If a polynomial P(x)P(x) is divided by a linear factor (xc)(x-c), the remainder is P(c)P(c).
    • Proof Idea: By the division algorithm, P(x)=(xc)Q(x)+RP(x) = (x-c)Q(x) + R, where Q(x)Q(x) is the quotient and RR is the remainder (a constant since we are dividing by a linear factor). Substituting x=cx=c gives P(c)=(cc)Q(c)+R=0Q(c)+R=RP(c) = (c-c)Q(c) + R = 0 \cdot Q(c) + R = R.
  • Factor Theorem: A linear expression (xc)(x-c) is a factor of the polynomial P(x)P(x) if and only if P(c)=0P(c)=0 (i.e., cc is a root of P(x)P(x)).
    • Proof Idea: This follows directly from the Remainder Theorem. If (xc)(x-c) is a factor, then P(x)=(xc)Q(x)P(x) = (x-c)Q(x), so P(c)=0P(c)=0. Conversely, if P(c)=0P(c)=0, then by the Remainder Theorem, the remainder R=0R=0, so P(x)=(xc)Q(x)P(x) = (x-c)Q(x), meaning (xc)(x-c) is a factor.

The Classic Curve: Quadratic Equations – Parabolas and Their Secrets

A quadratic equation is a polynomial equation of degree 2, with the standard form: ax2+bx+c=0(a0)ax^2 + bx + c = 0 \quad (a \neq 0)

  • Roots (Solutions): The roots of a quadratic equation can be found using the quadratic formula: x=b±b24ac2ax = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a} This formula is derived by completing the square.
  • Nature of Roots (Discriminant): The term under the square root, Δ=b24ac\Delta = b^2 - 4ac, is called the discriminant. It determines the nature of the roots (assuming a,b,ca, b, c are real):
    • If Δ>0\Delta > 0: Two distinct real roots.
    • If Δ=0\Delta = 0: One real root (a repeated root, or two equal real roots).
    • If Δ<0\Delta < 0: Two complex conjugate roots.
  • Sum and Product of Roots: If α\alpha and β\beta are the roots of ax2+bx+c=0ax^2+bx+c=0:
    • Sum of roots: α+β=ba\alpha + \beta = -\dfrac{b}{a}
    • Product of roots: αβ=ca\alpha \beta = \dfrac{c}{a}
  • Formation of a Quadratic Equation from Roots: If α\alpha and β\beta are given roots, the quadratic equation can be written as k(xα)(xβ)=0k(x-\alpha)(x-\beta)=0, or more commonly (for monic form, k=1k=1): x2(α+β)x+αβ=0x^2 - (\alpha + \beta)x + \alpha\beta = 0
  • Graph of a Quadratic Polynomial (y=ax2+bx+cy = ax^2+bx+c): The graph is a parabola.
    • If a>0a > 0, the parabola opens upwards.
    • If a<0a < 0, the parabola opens downwards.
    • The vertex of the parabola is at x=b/(2a)x = -b/(2a). The roots of the equation ax2+bx+c=0ax^2+bx+c=0 are the x-intercepts of the graph.

Beyond Single Variables: Quadratic Expressions in Two Variables

When we have quadratic expressions involving two variables, say xx and yy, the general form is: ax2+2hxy+by2+2gx+2fy+c=0ax^2 + 2hxy + by^2 + 2gx + 2fy + c = 0 This equation is very powerful and can represent various conic sections:

  • Circles
  • Ellipses
  • Parabolas
  • Hyperbolas
  • It can also represent degenerate cases like a pair of straight lines, a point, or no graph at all.

The specific type of conic section is determined by the values of the coefficients, particularly through conditions involving discriminants like Δ=abc+2fghaf2bg2ch2\Delta = abc + 2fgh - af^2 - bg^2 - ch^2 and the term h2abh^2-ab. A detailed classification is beyond this overview, but it's important to recognize that quadratic relationships in two variables describe these fundamental geometric shapes.


Stepping Up: Cubic Equations – The Next Level of Curves

A cubic equation is a polynomial equation of degree 3: ax3+bx2+cx+d=0(a0)ax^3 + bx^2 + cx + d = 0 \quad (a \neq 0)

  • Nature of Roots:
    • If the coefficients a,b,c,da, b, c, d are real, a cubic equation must have at least one real root. The other two roots can be either both real, or a complex conjugate pair.
    • So, it can have: (i) three distinct real roots, (ii) one real root and two equal real roots (a repeated root), (iii) three equal real roots (a triple root), or (iv) one real root and two complex conjugate roots.
  • Relation between Roots and Coefficients: If α,β,γ\alpha, \beta, \gamma are the roots of ax3+bx2+cx+d=0ax^3+bx^2+cx+d=0:
    • Sum of roots: α+β+γ=ba\alpha + \beta + \gamma = -\dfrac{b}{a}
    • Sum of roots taken two at a time: αβ+βγ+γα=ca\alpha\beta + \beta\gamma + \gamma\alpha = \dfrac{c}{a}
    • Product of roots: αβγ=da\alpha\beta\gamma = -\dfrac{d}{a}
  • Solution Methods: While a general formula (like Cardano's method) exists for solving cubic equations algebraically, it is often quite complex and unwieldy for practical use compared to the quadratic formula. Numerical methods or factorization (if simple roots can be found using the Factor Theorem) are often employed.

To Infinity (Well, Almost!): Higher Degree Equations

For polynomial equations of degree n4n \ge 4:

  • Fundamental Theorem of Algebra: A polynomial equation of degree nn with complex coefficients has exactly nn complex roots (counting multiplicities).
  • Tools for Finding Roots (especially for integer/rational roots if coefficients are integers):
    • Rational Root Theorem: If a polynomial equation anxn++a0=0a_n x^n + \dots + a_0 = 0 with integer coefficients has a rational root p/qp/q (in simplest form), then pp must be a divisor of the constant term a0a_0, and qq must be a divisor of the leading coefficient ana_n. This helps list possible rational roots to test.
    • Descartes' Rule of Signs: Provides an upper bound on the number of positive real roots and negative real roots of a polynomial with real coefficients, based on the number of sign changes in the sequence of its coefficients.
  • General Algebraic Solutions:
    • Formulas exist for solving quartic (degree 4) equations, but they are even more complicated than for cubics.
    • The Abel-Ruffini theorem (and further work by Galois) famously proved that there is no general algebraic formula (using only arithmetic operations and radicals - roots) for finding the roots of polynomial equations of degree five or higher.
    • This doesn't mean such equations don't have roots; it just means there isn't a "one-size-fits-all" formula like the quadratic formula. For specific higher-degree equations, roots can sometimes be found by factoring or other special methods. Otherwise, numerical methods (like Newton-Raphson) are used to find approximate values for the roots.

Key Takeaways: The Essence of Numbers, Comparisons, and Equations

This exploration has taken us through the diverse world of numbers, the logic of comparisons, and the methods for understanding and solving equations that describe so many phenomena.

  • Number Systems: From natural numbers for counting to complex numbers for solving all polynomial equations, each system expands our mathematical toolkit.
  • Number Theory: This field reveals profound properties of integers, including divisibility, prime numbers, and modular arithmetic, with powerful results like the Euclidean Algorithm, Chinese Remainder Theorem, and Euler's Totient Theorem.
  • Constants, Variables, Functions, Intervals: These are fundamental tools for expressing relationships and defining scopes in mathematics.
  • Inequalities: Provide the rules for comparing quantities, with specific properties governing their manipulation.
  • Polynomials & Their Equations: These algebraic expressions and the equations formed from them are central to many mathematical and scientific problems. Understanding their degree, roots, and properties is key.
  • Key Theorems: The Remainder Theorem, Factor Theorem, and Fundamental Theorem of Algebra are powerful tools for analyzing polynomials.
  • Quadratics & Cubics: Quadratic equations have a well-known formula for their roots and describe parabolic shapes. Cubic equations have more complex root structures and specific relationships between roots and coefficients.
  • Higher Degree Equations: While general algebraic solutions are elusive for degree 5 and above, the Fundamental Theorem of Algebra guarantees the existence of roots in the complex plane, and various theorems and numerical methods aid in their analysis.

The study of these foundational topics provides the language and techniques necessary to model and solve a vast array of problems encountered in science, engineering, and beyond.