Mathematics: Analysis Course Book Notes

UNIT 1: SEQUENCES AND SERIES

Introduction and Basic Definitions

  • Sequence: An enumerated collection of real numbers a1,a2,a3,a_1, a_2, a_3, \dots denoted as (an)(a_n). Every single number in the sequence is a sequence element or member.

  • Index: A natural number used to number sequence elements, (nN)(n \in \mathbb{N}) where N={1,2,3,}\mathbb{N} = \{1, 2, 3, \dots\}. Sometimes N0={0,1,2,3,}\mathbb{N}_0 = \{0, 1, 2, 3, \dots\} is used, making a0a_0 the first element.

  • Characteristics: A sequence is distinguished from a set by its fixed order and the fact that the same element can occur multiple times.

  • Specification Methods:

    • Listing: Writing elements separated by commas, e.g., bn=2,4,6,8,b_n = 2, 4, 6, 8, \dots

    • Formula: An equation for a general member, e.g., bn=2×nb_n = 2 \times n for all nNn \in \mathbb{N}.

    • Recursive Formula: Determining subsequent elements based on preceding ones, provided at least the first element is given.

  • Graphical Representation: Sequences are plotted in a coordinate system with index nn on the x-axis and values ana_n on the y-axis. Elements are individual points; connecting them to form a continuous graph is generally not allowed.

Recursive Sequences and Modeling Examples

  • Fibonacci Sequence: Formed recursively with fn=fn2+fn1f_n = f_{n-2} + f_{n-1} for n>2n > 2, with f1=0f_1 = 0 and f2=1f_2 = 1. Elements: 0,1,1,2,3,5,8,13,21,34,0, 1, 1, 2, 3, 5, 8, 13, 21, 34, \dots This sequence often describes natural growth processes.

  • Finite Sequence: A sequence with a finite number of elements, defined by a maximum value for the index nn. Example: en=1ne_n = \frac{1}{n} for 1n101 \le n \le 10.

  • John’s Forest Growth Model: Initial size w1=1,000w_1 = 1,000 hectares. Annual growth of 5%5\% and annual clearing of 7070 hectares. Recursive formula: wn=1.05×wn170w_n = 1.05 \times w_{n-1} - 70 for n2n \ge 2. Elements: w1=1,000w_1 = 1,000, w2=980w_2 = 980, w3=959w_3 = 959, w4=936.95w_4 = 936.95.

  • John’s Well Drilling Model: Cost of first meter z1=80z_1 = 80 euros, each subsequent meter costs 8%8\% more. Formula: zn=1.08×zn1z_n = 1.08 \times z_{n-1} for 12n212 \ge n \ge 2. Costs for meter 12: z12=186.53eurosz_{12} = 186.53 \, euros.

Monotonicity and Boundedness

  • Monotonicity Definitions:

    1. Monotone increasing: an+1ana_{n+1} \ge a_n for all nn.

    2. Strictly monotone increasing: an+1>ana_{n+1} > a_n for all nn.

    3. Monotone decreasing: an+1ana_{n+1} \le a_n for all nn.

    4. Strictly monotone decreasing: an+1<ana_{n+1} < a_n for all nn.

    5. Constant: an+1=ana_{n+1} = a_n for all nn.

  • Boundedness Definitions:

    • Bounded above: anSa_n \le S for all nNn \in \mathbb{N}, where SS is the upper bound.

    • Bounded below: ansa_n \ge s for all nNn \in \mathbb{N}, where ss is the lower bound.

    • Bounded: A sequence that is bounded from both above and below.

    • Unbounded: A sequence that lacks either an upper bound, a lower bound, or both.

  • Alternating Sequence: A sequence where members are alternately positive and negative, e.g., dn=(1)nd_n = (-1)^n.

Convergence and Limit Values

  • Distance: The unsigned difference between two real numbers: xa|x - a|.

  • ϵ\epsilon-neighborhood: The set of all points xRx \in \mathbb{R} whose distance from aa is less than a given small number ϵ(xR:xa<ϵ)\epsilon \, (x \in \mathbb{R} : |x - a| < \epsilon). This represents an open interval (aϵ,a+ϵ)(a - \epsilon, a + \epsilon).

  • Convergence: A sequence (an)(a_n) is convergent with limit aRa \in \mathbb{R} if for all ϵ>0\epsilon > 0, almost all sequence elements lie in the ϵ\epsilon-neighborhood of aa. Notation: limnan=a\lim_{n \rightarrow \infty} a_n = a or anaa_n \rightarrow a.

  • Null Sequence: A convergent sequence whose limit value is 00.

  • Divergence: A sequence that does not converge. If elements become arbitrarily large, notation is limnan=\lim_{n \rightarrow \infty} a_n = \infty. Note that \infty is not a real number limit.

  • Theorems on Convergence:

    • Every convergent sequence is bounded.

    • Every unbounded sequence is divergent (contraposition).

    • Every bounded and monotone sequence converges.

  • Rules of Convergence (assuming anaa_n \rightarrow a and bnbb_n \rightarrow b):

    • limn(an+bn)=a+b\lim_{n \rightarrow \infty} (a_n + b_n) = a + b

    • limn(anbn)=ab\lim_{n \rightarrow \infty} (a_n - b_n) = a - b

    • limn(an×bn)=a×b\lim_{n \rightarrow \infty} (a_n \times b_n) = a \times b

    • limnanbn=ab\lim_{n \rightarrow \infty} \frac{a_n}{b_n} = \frac{a}{b} (where b0,bn0b \ne 0, b_n \ne 0)

    • limn(an)r=ar\lim_{n \rightarrow \infty} (a_n)^r = a^r for rRr \in \mathbb{R}

Arithmetic and Geometric Sequences

  • Arithmetic Sequence: The difference dd of two consecutive members is constant: d=an+1and = a_{n+1} - a_n. General formula: an=a1+(n1)×da_n = a_1 + (n - 1) \times d.

    • d>0d > 0: Strictly monotone increasing.

    • d<0d < 0: Strictly monotone decreasing.

    • d=0d = 0: Constant.

  • Geometric Sequence: The quotient qq of two consecutive members is constant: q=an+1anq = \frac{a_{n+1}}{a_n}. General formula: an=a1×qn1a_n = a_1 \times q^{n-1}.

    • q>1q > 1: Strictly monotone increasing.

    • 0<q<10 < q < 1: Strictly monotone decreasing and converges to 00.

    • q=1q = 1: Constant.

    • q<0q < 0: Alternating.

Series: Definition and Convergence

  • Series: A special sequence (sn)(s_n) resulting from the stepwise addition of elements of a sequence (an)(a_n).

  • nn-th Partial Sum: The element sn=i=1nai=a1+a2++ans_n = \sum_{i=1}^{n} a_i = a_1 + a_2 + \dots + a_n.

  • Recursive form: sn+1=sn+an+1s_{n+1} = s_n + a_{n+1}.

  • Infinite Series: Summation continues to infinity, written as i=1ai\sum_{i=1}^{\infty} a_i.

  • Convergence Condition: An infinite series ai\sum a_i can only converge if (an)(a_n) is a null sequence. This condition is necessary but not sufficient (e.g., the harmonic series 1i\sum \frac{1}{i} diverges despite having a null sequence).

  • Arithmetic Series: The sum of terms of an arithmetic sequence. Formula: sn=n2(a1+an)s_n = \frac{n}{2}(a_1 + a_n).

  • Geometric Series: The sum of terms of a geometric sequence. Formula: sn=a1×qn1q1s_n = a_1 \times \frac{q^n - 1}{q - 1}.

    • Convergence: A geometric series converges if and only if q<1|q| < 1. The limit is limnsn=a11q\lim_{n \rightarrow \infty} s_n = \frac{a_1}{1 - q}.

Euler’s Number and Specific Limits

  • Euler’s Number ee: Defined as limn(1+1n)n=2.71828\lim_{n \rightarrow \infty} (1 + \frac{1}{n})^n = 2.71828\dots It is also the limit of the series k=01k!\sum_{k=0}^{\infty} \frac{1}{k!}, where k!k! (k factorial) is the product 1×2×3××k1 \times 2 \times 3 \times \dots \times k. By convention, 0!=10! = 1.

  • Limit Theorems (for nn \rightarrow \infty):

    • limxn=0\lim \frac{x}{n} = 0

    • limxn=0\lim x^n = 0 for x<1|x| < 1

    • limnn=1\lim \sqrt[n]{n} = 1

    • limxn=1\lim \sqrt[n]{x} = 1 for x>0x > 0

    • lim(1+xn)n=ex\lim (1 + \frac{x}{n})^n = e^x

    • lim(11n)n=1e\lim (1 - \frac{1}{n})^n = \frac{1}{e}

  • Leibniz Series: Converges to π4\frac{\pi}{4}. Defined as k=0(1)k2k+1=113+15\sum_{k=0}^{\infty} \frac{(-1)^k}{2k+1} = 1 - \frac{1}{3} + \frac{1}{5} - \dots

  • Power Series: P(x)=k=0akxk=a0+a1x+a2x2+P(x) = \sum_{k=0}^{\infty} a_k x^k = a_0 + a_1 x + a_2 x^2 + \dots The partial sums of a power series are polynomials.

UNIT 2: FUNCTIONS AND INVERSE FUNCTIONS

Terms and Definitions

  • Function (Map/Mapping): A rule f:ABf: A \rightarrow B that uniquely assigns an element from set BB to each element from set AA.

  • Domain (AA): The set from which input values are taken.

  • Co-domain (BB): The set in which the function takes its values.

  • Argument (Input value/Pre-image): An element xAx \in A.

  • Function Value (Image/Output): The result of applying the function, written as f(x)f(x).

  • Image of ff (Im(f)Im(f) ): The set of all actual function values achieved.

  • Uniqueness: Each argument has exactly one function value, but multiple arguments can map to the same function value.

  • Identity Function (idid): Maps each element to itself, id(x)=xid(x) = x.

  • Constant Function (constconst): Maps all arguments to a single value cc, const(x)=cconst(x) = c.

  • Absolute Value Function (x|x|): Maps negative inputs to positive outputs: x=x|x| = x if x0x \ge 0 and x=x|x| = -x if x<0x < 0.

Graphical Representation and Elementary Functions

  • Graph: Illustration of point pairs (x,f(x))(x, f(x)) in a two-dimensional coordinate system with an x-axis (domain) and y-axis (co-domain).

  • Linear Functions: f(x)=a×x+bf(x) = a \times x + b. aa is the slope; bb is the y-axis intercept.

  • Quadratic Functions: f(x)=a×x2+b×x+cf(x) = a \times x^2 + b \times x + c, with a0a \ne 0.

    • a=1,b=0,c=0a = 1, b = 0, c = 0 is the Normal Parabola.

    • a>0a > 0: Open upward; a<0a < 0: Open downward.

    • cc: Vertical shift.

    • bb: Vertex shift along the x-axis by b2a-\frac{b}{2a} units.

  • Polynomial Functions of Degree nn: f(x)=k=0nakxkf(x) = \sum_{k=0}^{n} a_k x^k.

Composition and Properties of Functions

  • Composition: If f:ABf: A \rightarrow B and g:CDg: C \rightarrow D, and f(x)Cf(x) \in C, then (gf)(x)=g(f(x))(g \circ f)(x) = g(f(x)). Read as "g after f." It is not commutative (gffgg \circ f \ne f \circ g).

  • Surjective: Every element in the co-domain BB has at least one pre-image in AA.

  • Injective: Different inputs result in different outputs (x1x2    f(x1)f(x2)x_1 \ne x_2 \implies f(x_1) \ne f(x_2)).

  • Bijective: A function that is both surjective and injective.

Inverse Functions and Invertibility

  • Invertibility: A function f:ABf: A \rightarrow B is invertible if there exists a function g:BAg: B \rightarrow A such that gf=idg \circ f = id and fg=idf \circ g = id. The unique inverse is denoted f1f^{-1}.

  • Condition: A function must be bijective to be invertible.

  • Graphical property: The graph of an inverse function is the reflection of the original graph across the identity line y=xy = x.

  • Root Function: The inverse of the restricted quadratic function (f:R+R+,f(x)=x2f: \mathbb{R}^+ \rightarrow \mathbb{R}^+, f(x) = x^2) is g(x)=xg(x) = \sqrt{x}.

Exponential and Logarithmic Functions

  • General Exponential Function: f(x)=axf(x) = a^x with positive base aR+{0}a \in \mathbb{R}^+ \setminus \{0\}.

    • a>1a > 1: Strictly monotone increasing.

    • 0<a<10 < a < 1: Strictly monotone decreasing.

    • Asymptote: The x-axis is an asymptote (values approach but never reach 00).

  • Natural Exponential Function (expexp): Base is Euler’s constant e(f(x)=ex)e \, (f(x) = e^x).

  • Compound Interest: capital growth after xx years with compounding nn times per year results in limn(1+rn)nx=erx\lim_{n \rightarrow \infty} (1 + \frac{r}{n})^{nx} = e^{rx}.

  • Logarithm Functions: Inverse of exponential functions, denoted g(x)=logaxg(x) = \log_a x. Only defined for x>0x > 0.

  • Natural Logarithm (ln\ln): Logarithm with base ee. Properties: ln(ex)=x\ln(e^x) = x and eln(x)=xe^{\ln(x)} = x.

  • Growth Rate Relation: ax=erxa^x = e^{rx} with r=ln(a)r = \ln(a). rr is the continuous growth rate.

Trigonometric Functions

  • Unit Circle: Circle with radius 11 centered at (0,0)(0,0). Sine and cosine are definitions of coordinates for a point PP with angle α\alpha.

  • Radian Measure (xx): Dimensionless measure of arc length. x=α360×2πx = \frac{\alpha}{360} \times 2\pi. 360=2π360^\circ = 2\pi, 180=π180^\circ = \pi, 90=π290^\circ = \frac{\pi}{2}.

  • Properties:

    • Range: [1,1][-1, 1] for sine and cosine.

    • Periodicity: Sine and cosine are 2π2\pi-periodic (sin(x+2π)=sin(x)\sin(x + 2\pi) = \sin(x)).

    • Pythagorean identity: (sin(x))2+(cos(x))2=1(\sin(x))^2 + (\cos(x))^2 = 1.

  • Tangent and Cotangent:

    • tan(x)=sin(x)cos(x)\tan(x) = \frac{\sin(x)}{\cos(x)}; Domain excluded where cos(x)=0(x=π2+kπ)\cos(x) = 0 \, (x = \frac{\pi}{2} + k\pi).

    • cot(x)=cos(x)sin(x)\cot(x) = \frac{\cos(x)}{\sin(x)}; Domain excluded where sin(x)=0(x=kπ)\sin(x) = 0 \, (x = k\pi).

    • Periodicity: Both are π\pi-periodic.

  • Inverse Trigonometric Functions:

    • Arcsine (arcsin\arcsin): Inverse of sine on [π2,π2][-\frac{\pi}{2}, \frac{\pi}{2}].

    • Arccosine (arccos\arccos): Inverse of cosine on [0,π][0, \pi].

    • Arctangent (arctan\arctan): Inverse of tangent on (π2,π2)(-\frac{\pi}{2}, \frac{\pi}{2}).

    • Arccotangent (\arccot): Inverse of cotangent on (0,π)(0, \pi).

  • Oscillation Modeling: f(x)=a×sin(b×x)+df(x) = a \times \sin(b \times x) + d.

    • aa: Amplitude (ymaxymin2\frac{y_{max} - y_{min}}{2}).

    • dd: Average level/Vertical shift (ymax+ymin2\frac{y_{max} + y_{min}}{2}).

    • bb: Period parameter (2πp\frac{2\pi}{p}, where pp is cycle length).

UNIT 3: DIFFERENTIAL CALCULUS

First Derivative and Slope

  • Difference Quotient: The slope of the secant connecting two points (x,y)(x, y) and (x1,y1)(x_1, y_1): m=ΔyΔx=f(x+Δx)f(x)Δxm = \frac{\Delta y}{\Delta x} = \frac{f(x + \Delta x) - f(x)}{\Delta x}.

  • Tangent: The limiting case of the secant as Δx0\Delta x \rightarrow 0 .

  • First Derivative: The slope of the tangent at point (x,y)(x, y), denoted f(x)f'(x) or dydx\frac{dy}{dx}.

  • Definition: f(x)=limΔx0f(x+Δx)f(x)Δxf'(x) = \lim_{\Delta x \rightarrow 0} \frac{f(x + \Delta x) - f(x)}{\Delta x}.

  • Differentiable: A function is differentiable if the differential quotient limit exists, is unique, and is finite.

Differentiation Rules for Elementary Functions

  • Power Rule: If f(x)=a×xn+cf(x) = a \times x^n + c, then f(x)=a×n×xn1f'(x) = a \times n \times x^{n-1}. Applies to all nR{0}n \in \mathbb{R} \setminus \{0\}.

  • Table of Derivatives:

    • const=0const = 0

    • xn=nxn1x^n = nx^{n-1}

    • x=12x\sqrt{x} = \frac{1}{2\sqrt{x}}

    • ex=exe^x = e^x

    • ax=ln(a)×axa^x = \ln(a) \times a^x

    • ln(x)=1x\ln(x) = \frac{1}{x}

    • logax=1xln(a)\log_a x = \frac{1}{x \ln(a)}

    • sin(x)=cos(x)\sin(x) = \cos(x)

    • cos(x)=sin(x)\cos(x) = -\sin(x)

    • tan(x)=1(cos(x))2=1+(tan(x))2\tan(x) = \frac{1}{(\cos(x))^2} = 1 + (\tan(x))^2

    • arcsin(x)=11x2\arcsin(x) = \frac{1}{\sqrt{1 - x^2}}

    • arctan(x)=11+x2\arctan(x) = \frac{1}{1 + x^2}

General Differentiation Rules

  • Summation Rule: (f+g)=f+g(f + g)' = f' + g'

  • Product Rule: (f×g)=f×g+f×g(f \times g)' = f' \times g + f \times g'

  • Quotient Rule: (fg)=g×ff×gg2(\frac{f}{g})' = \frac{g \times f' - f \times g'}{g^2}

  • Chain Rule: For composite functions f(x)=g(h(x))f(x) = g(h(x)), the derivative is f(x)=g(h)×h(x)f'(x) = g'(h) \times h'(x) ("outer derivative times inner derivative").

Higher Derivatives

  • Second Derivative (f(x)f''(x) or d2fdx2\frac{d^2f}{dx^2} ): The derivative of the first derivative.

  • nn-th Derivative: Result of differentiating a function nn times.

  • Polynomials: Each derivative reduces the degree by 11 until it reaches 00. All subsequent derivatives are zero.

  • Exponential (exe^x): All higher derivatives are identically exe^x.

Taylor Series and Taylor Polynomial

  • Concept: Approximating real-valued, and infinitely differentiable functions using a power series around an expansion point (usually x=0x = 0).

  • Definition: The Taylor series of ff at x=0x=0 is Tf(x)=k=0f(k)(0)k!xkT_f(x) = \sum_{k=0}^{\infty} \frac{f^{(k)}(0)}{k!} x^k.

  • Taylor Polynomial of degree nn: The partial sum Tf,n(x)=k=0nf(k)(0)k!xkT_{f,n}(x) = \sum_{k=0}^{n} \frac{f^{(k)}(0)}{k!} x^k.

  • Examples:

    • ex=k=0xkk!e^x = \sum_{k=0}^{\infty} \frac{x^k}{k!}

    • sin(x)=k=0(1)kx2k+1(2k+1)!=xx36+x5120\sin(x) = \sum_{k=0}^{\infty} \frac{(-1)^k x^{2k+1}}{(2k+1)!} = x - \frac{x^3}{6} + \frac{x^5}{120} - \dots

    • cos(x)=k=0(1)kx2k(2k)!=1x22+x424\cos(x) = \sum_{k=0}^{\infty} \frac{(-1)^k x^{2k}}{(2k)!} = 1 - \frac{x^2}{2} + \frac{x^4}{24} - \dots

Curve Sketching

  • Criteria for analysis:

    • Domain & Co-domain: Valid input and output sets.

    • Symmetry: Even if f(x)=f(x)f(-x) = f(x) (y-axis symmetry); Odd if f(x)=f(x)f(-x) = -f(x) (origin symmetry).

    • Zeros: Solutions to f(x)=0f(x) = 0.

    • Singularities: Points where the function is undefined (e.g., denominator is zero).

    • Asymptotic Behavior: Limit behavior for x±x \rightarrow \pm\infty.

    • Monotonicity: Increasing if f(x)0f'(x) \ge 0; Decreasing if f(x)0f'(x) \le 0.

    • Extremes: Local maximum if f(x0)=0f'(x_0) = 0 and f(x0)<0f''(x_0) < 0; Local minimum if f(x0)=0f'(x_0) = 0 and f(x0)>0f''(x_0) > 0.

    • Turning Points: Where f(x0)=0f''(x_0) = 0 and f(x0)0f'''(x_0) \ne 0.

    • Saddle Point: Where f(x0)=0,f(x0)=0,f'(x_0) = 0, f''(x_0) = 0,, and f(x0)0f'''(x_0) \ne 0.

Partial Derivatives

  • Multidimensional Functions: Functions of several variables, f(x1,x2,,xn)f(x_1, x_2, \dots, x_n). For example, kinetic energy Wkin(m,v)=mv22W_{kin}(m, v) = \frac{mv^2}{2}.

  • First-order Partial Derivative: Differentiating with respect to one variable while treating all others as constants. Notation: fx1\frac{\partial f}{\partial x_1} or fx1f_{x_1}'.

  • Interpretations: The slope of a surface at a point along the direction of a specific coordinate axis.

  • Symmetry of Second Derivatives: Usually fxy=fyxf_{xy}'' = f_{yx}''.

UNIT 4: INTEGRAL CALCULUS

Indefinite Integral and Anti-derivatives

  • Integral Calculus: The process of reversing differentiation to find the original function, called the anti-derivative or primitive function F(x)F(x). Notation: F(x)=f(x)F'(x) = f(x).

  • Integration Constant (CC): Because constants disappear during differentiation, an anti-derivative is only unique up to a real constant CC.

  • Indefinite Integral: The set of all primitive functions, denoted f(x)dx=F(x)+C\int f(x) \, dx = F(x) + C.

  • Integration Rules:

    • Factor Rule: a×f(x)dx=af(x)dx\int a \times f(x) \, dx = a \int f(x) \, dx.

    • Summation Rule: (f(x)+g(x))dx=f(x)dx+g(x)dx\int (f(x) + g(x)) \, dx = \int f(x) \, dx + \int g(x) \, dx.

    • Basic integrals:

      • adx=ax+C\int a \, dx = ax + C

      • xadx=1a+1xa+1+C\int x^a \, dx = \frac{1}{a+1} x^{a+1} + C (for a1a \ne -1)

      • exdx=ex+C\int e^x \, dx = e^x + C

      • 1xdx=lnx+C\int \frac{1}{x} \, dx = \ln|x| + C

Integration Techniques

  • Logarithmic Integration: For integrands in the form f(x)f(x)\frac{f'(x)}{f(x)}: f(x)f(x)dx=lnf(x)+C\int \frac{f'(x)}{f(x)} \, dx = \ln|f(x)| + C.

  • Partial Integration: Reversal of the product rule: f(x)×g(x)dx=f(x)×g(x)f(x)×g(x)dx\int f(x) \times g'(x) \, dx = f(x) \times g(x) - \int f'(x) \times g(x) \, dx.

  • Continuity: A function continuous on the interval [a,b][a, b] can be integrated on that interval.

The Definite Integral

  • Definite Integral: Represents the surface area between the function graph and the x-axis between limits aa and bb. It results in a real number.

  • Fundamental Theorem of Calculus: abf(x)dx=[F(x)]ab=F(b)F(a)\int_a^b f(x) \, dx = [F(x)]_a^b = F(b) - F(a).

  • Rules for Limits:

    • Exchanging: abfdx=bafdx\int_a^b f \, dx = - \int_b^a f \, dx

    • Decomposition: abfdx=acfdx+cbfdx\int_a^b f \, dx = \int_a^c f \, dx + \int_c^b f \, dx for acba \le c \le b

  • Area Calculation:

    • Areas below the x-axis result in negative integral values; the absolute value must be taken for area calculation.

    • If a function crosses the x-axis, the integral must be split at the zero points.

Solids of Revolution and Arc Length

  • Volume (VV): Created when a surface rotates around the x-axis: V=πab(f(x))2dxV = \pi \int_a^b (f(x))^2 \, dx.

  • Arc Length (LL): The length of a curve on [a,b][a, b]: L=ab1+(f(x))2dxL = \int_a^b \sqrt{1 + (f'(x))^2} \, dx.

  • Lateral Surface (MM): The surface area of the body of revolution: M=2πabf(x)1+(f(x))2dxM = 2\pi \int_a^b f(x) \sqrt{1 + (f'(x))^2} \, dx.

UNIT 5: DIFFERENTIAL EQUATIONS

Introduction and Basic Terms

  • Differential Equation (D.E.): An equation establishing a relationship between a function and its derivatives. The solution is a function, not a number.

  • Order: Determined by the highest derivative present (e.g., only yy' means first-order).

  • Ordinary Differential Equation: A D.E. depending on only one variable (usually xx or tt).

  • Linear D.E.: Function and its derivatives appear only linearly (no squares, roots, etc.).

  • Homogeneous vs. Non-homogeneous: A homogeneous D.E. has a zero on the "right side" (s(x)=0s(x) = 0). Non-homogeneous has a non-zero function or constant.

Solutions of First-Order Linear D.E.s

  • General Solution: The entire set of functions solving the D.E., usually containing an arbitrary constant factor aa.

  • Initial Condition/Initial Value Problem: Providing a specific point (x0,y0)(x_0, y_0) to find a Special Solution from the general group.

  • Slope/Direction Field: A graphical sketch showing the directions of solution curves.

  • Basic Homogeneous Case: For y=c×yy' = c \times y, the general solution is y(t)=aecty(t) = a e^{ct}.

  • Non-homogeneous Case: Solve by adding the general solution of the homogeneous version (yhy_h) and one special solution of the non-homogeneous version (ysy_s): y(x)=yh(x)+ys(x)y(x) = y_h(x) + y_s(x).

Modeling Applications

  • Limited Growth: y(t)=c(Ky(t))y'(t) = c(K - y(t)), where KK is an upper capacity limit. General solution: y(t)=K+aecty(t) = K + a e^{-ct}. With initial condition y(0)=y0y(0) = y_0, solution is y(t)=K+(y0K)ecty(t) = K + (y_0 - K)e^{-ct}.

  • Newton’s Law of Cooling: Tea temperature T(t)T(t) with ambient temperature TUT_U follows T(t)=k(T(t)TU)T'(t) = -k(T(t) - T_U). Solution: T(t)=TU+(T0TU)ektT(t) = T_U + (T_0 - T_U)e^{-kt}.

Outlook: Partial Differential Equations (PDEs)

  • Definition: Equations involving partial derivatives of a function with multiple variables (e.g., space and time).

  • Examples:

    • Laplace Equation: uxx+uyy=0u_{xx}'' + u_{yy}'' = 0. Describes equilibrium states, such as a constant temperature gradient in a metal rod.

    • Heat Conduction Equation: General form for thermal transfer.

    • Others: Maxwell equations (electrodynamics), Schrödinger equation (quantum mechanics), Navier-Stokes (hydrodynamics).