An arrow from Page A to Page B means "Page A gives importance to Page B."
Each page divides its importance equally among its outgoing links.
Mathematical Representation:
x0=3x3 (Page 0 receives 31 of Page 3's importance).
x1=x0+3x3 (Page 1 receives all of Page 0's importance and 31 of Page 3's).
x2=2x1 (Page 2 receives half of Page 1's importance).
x3=2x1+2x2+x4.
x4=2x2+3x3.
System Matrix: These equations are rearranged to equal zero to form a matrix for solving (e.g., −1x0+0x1+0x2+31x3+0x4=0).
Two Linear Equations in Two Variables
Standard Form:
a1x+b1y=c1
a2x+b2y=c2
Views of the Problem:
Graphical View: Each equation represents a straight line. The solution is the point of intersection.
Algebraic View: Using the elimination method to isolate one variable.
Matrix-Vector View: A prelude to linear algebra where coefficients are organized in a grid.
Types of Solutions (Graphical):
Intersect at one point: Exactly 1 solution (Lines have different slopes).
Identical lines: Infinitely many solutions (Lines are the same; equations are multiples of each other).
Parallel lines: No solution (Lines have the same slope but different intercepts; they never intersect).
Geometry of One Equation in Two Variables
Equation:ax+by=c
Isolation of y:y=(b−a)x+bc
Solution Set: All points on the line. The general solution can be written as (u,(b−a)u+bc), where u∈R.
Vector Notation:(x0y0)=u(1−a/b)+(0c/b)
Horizontal vector logic: All solutions=One specific solution+Line through origin parallel to original line.
Example Problem: For 3y+4x=15:
Solve for y: y=3−4x+5.
If x=u, points are (u,315−4u). If y=u, points are (415−3u,u).
The point (0,5) is a solution (3(5)+4(0)=15).
Systems with Multiple Equations and Variables
2 Variables, 3 Equations
Form:
a11x1+a12x2=b1
a21x1+a22x2=b2
a31x1+a32x2=b3
Method: Eliminate x1 from the second and third equations using the first equation. This results in a system of two equations for x2. If a consistent x2 exists, back-substitute to find x1.
3 Variables, 2 Equations
Scenario: Since there are more unknowns (n=3) than equations (m=2), the system usually has a free variable.
Method:
Eliminate x1 from the second equation.
Treat one variable (e.g., x3) as a constant or parameter u.
Solve the remaining 2×2 system for x1 and x2 in terms of u.
The final result expresses the variables as a vector: x=p+uv.
3 Variables, 3 Equations
Form: Standard structure for a unique solution.
Method: Perform Gaussian elimination to transform the rectangular coefficient matrix into a Triangular Matrix (or Row Echelon Form).
Zeros should appear below the diagonal.
Pivots: The diagonal elements (should be non-zero to proceed easily).
Elimination and Matrix Operations
Augmented Matrix: Combining coefficients and constants into one grid: [A∣b].
Row Operations:
Subtracting a multiple of one row from another: R2←R2−(a11a21)R1.
Back-substitution: Once the matrix is triangular (e.g., bottom row is 0x1+0x2+a33x3=b3), solve for the last variable and work upward to find the others.
General Solution Classification (m eq, n var)
Row Echelon Form (REF): Result of elimination.
Rank (r): The number of non-zero rows (pivots) in REF.
Outcomes:
No Solution: If the elimination results in a row like [0 \dots 0 | \b_k] where \b_k \neq 0 (contradiction).
Unique Solution: Occurs when r=n (rank equals the number of variables) and no contradictions exist.
Infinitely Many Solutions: Occurs when r<n and no contradictions exist. There are n−r free variables.
Example Exercises
Exercise 1:x1+2x2+3x3=4 and 5x1+6x2+7x3=8.
Row Op: R2−5R1→−4x2−8x3=−12⟹x2+2x3=3.
Let x3=u, then x2=3−2u and x1=4−2(3−2u)−3u=−2+u.
Vector Form: x1x2x3=−230+u1−21.
Exercise 2: Checking unique/infinite solutions for parameter k and d.
Equations: 8x1+12x2=24 and −6x1+kx2=d.
The first simplifies to 2x1+3x2=6.
By comparison, if k=−9 and d=−18, the second equation is just −3×(2x1+3x2=6), leading to infinitely many solutions.
Detailed Definitions and Formatting
Pivot: The first non-zero element in a row used to eliminate elements below it.
Triangular Matrix: A matrix where all elements below the diagonal are zero, making it "easy to solve" via back-substitution.
LHS (Left Hand Side) and RHS (Right Hand Side): Terms used to verify if a candidate solution (x0,y0) satisfies the original equation.