RemNote Community
Community

Study Guide

📖 Core Concepts Variable – a symbol representing an unknown or arbitrary quantity. Algebraic expression – combination of numbers, variables, and operations ( +, −, ×, ÷, exponentiation, roots, logs ). Equation vs. Identity vs. Conditional equation Equation: two expressions set equal (e.g., $2+3=5$). Identity: true for all variable values (e.g., $x+x=2x$). Conditional: true only for specific values (e.g., $x^2=25$ → $x=±5$). Polynomial – sum of terms $c\,x1^{e1}\dots xk^{ek}$ with non‑negative integer exponents. Degree – highest total exponent in any term. Factorization – rewriting a polynomial as a product of lower‑degree factors; roots correspond to factors equal to zero. Linear equation – each variable appears with exponent 1, no products of variables: $a1x1+\dots +anxn=b$. System of linear equations – set of linear equations solved simultaneously. Matrix representation – $A\mathbf{x}=\mathbf{b}$ compactly encodes a linear system. Vector space – a set closed under vector addition and scalar multiplication (abelian group + compatible scaling). Group – set with a single associative operation, identity element, and inverses for every element. Ring – set with two operations; addition forms a commutative group, multiplication is associative and distributes over addition. Field – a commutative ring where every non‑zero element has a multiplicative inverse. 📌 Must Remember Quadratic formula: $x=\dfrac{-b\pm\sqrt{b^{2}-4ac}}{2a}$ for $ax^{2}+bx+c=0$. Fundamental Theorem of Algebra – every non‑constant univariate polynomial over $\mathbb{C}$ has at least one complex root → can be factored completely into linear factors. Abel–Ruffini – no general radical formula for degree ≥ 5 polynomials. Matrix inverse solution: if $A$ is invertible, $\mathbf{x}=A^{-1}\mathbf{b}$. Gaussian elimination – row‑operations to obtain an upper‑triangular (row‑echelon) matrix; back‑substitution yields the solution. Group axioms: closure, associativity, identity, inverses. Ring axioms: (R1) $(R,+)$ is an abelian group, (R2) multiplication is associative, (R3) distributive laws. Field axioms: all ring axioms + commutative multiplication + every non‑zero element has a multiplicative inverse. 🔄 Key Processes Simplify & Substitute Replace a variable with an equivalent expression lacking that variable; repeat until the equation contains a single unknown. Factor a quadratic Find two numbers $p,q$ with $p+q=b$ and $pq=c$; rewrite $ax^{2}+bx+c$ as $a(x-p)(x-q)$. Solve linear systems (Gaussian elimination) 1️⃣ Form augmented matrix $[A\mid\mathbf{b}]$. 2️⃣ Use row operations (swap, scale, add multiples) to reach row‑echelon form. 3️⃣ Identify pivots → back‑substitute for variables. Determine system consistency After elimination, a row of the form $[0\;0\;\dots\;0\mid d]$ with $d\neq0$ ⇒ inconsistent. No such row and at least one pivot in each variable ⇒ unique solution. Fewer pivots than variables ⇒ infinitely many solutions (free variables). Check group/ring/field membership Verify closure, associativity, identity, inverses (group). Add multiplication axioms (ring). Add commutativity and multiplicative inverses for non‑zero elements (field). 🔍 Key Comparisons Identity vs. Conditional equation Identity: true ∀ variable values (e.g., $x+x=2x$). Conditional: true only for specific values (e.g., $x^2=25$). Consistent vs. Inconsistent system Consistent: at least one solution (unique or infinite). Inconsistent: no solution (parallel lines/planes). Group vs. Ring vs. Field Group: one operation, all elements have inverses. Ring: two operations; addition forms a group, multiplication need not have inverses or be commutative. Field: ring where multiplication is commutative and every non‑zero element has an inverse. Linear vs. Non‑linear equation Linear: variables only to the first power, no products (e.g., $2x+3y=5$). Non‑linear: contains powers >1, products, or other functions (e.g., $x^2+y=4$). ⚠️ Common Misunderstandings “All quadratic equations factor nicely.” Not every quadratic has integer factors; use the quadratic formula when factoring fails. “If a matrix has a determinant ≠ 0, it is automatically invertible.” True for square matrices over a field, but determinant zero does imply non‑invertibility. “Every algebraic structure with an identity is a group.” Missing the requirement that every element must have an inverse. “A polynomial of degree n has exactly n real roots.” Over $\mathbb{C}$ it has $n$ (counting multiplicity); real roots may be fewer. 🧠 Mental Models / Intuition Balance‑scale metaphor – treating an equation like a scale: whatever you do to one side (add, subtract, multiply, divide) you must do to the other to keep it balanced. Graphical intersection – solving a system = finding the intersection point(s) of the graphs (lines ↔ unique point, parallel ↔ none, coincident ↔ infinite). Factor‑Zero Rule – “If a product equals zero, at least one factor must be zero.” This turns factoring into root‑finding. Vector‑space picture – think of vectors as arrows that you can slide around; linear maps stretch, rotate, or reflect them without breaking the arrow‑addition rules. 🚩 Exceptions & Edge Cases Zero divisor in a ring – non‑zero elements $a,b$ with $ab=0$ (e.g., $\mathbb{Z}6$). Such rings are not integral domains; many field‑like tricks fail. Singular matrix – $A$ has determinant $0$ → no inverse; may still have solutions if the system is consistent (infinitely many). Repeated roots – a polynomial like $(x-2)^2$ has a double root; factorization still works but derivative tests reveal multiplicity. Non‑commutative rings – multiplication order matters (e.g., matrix rings). 📍 When to Use Which Quadratic vs. General polynomial – Use quadratic formula for degree 2; for degree ≥ 3 use factoring, rational root test, or numerical methods (Newton–Raphson). Matrix inverse vs. Gaussian elimination – Use elimination for large or singular systems; inverse method only when $A$ is small and clearly invertible. Cramer's rule – Handy for $2\times2$ or $3\times3$ systems with non‑zero determinant; impractical for larger systems. Group vs. Ring vs. Field tools – Apply group properties when only one operation is involved (e.g., modular addition). Use ring theory when both addition and multiplication appear but inverses aren’t guaranteed. Switch to field methods when division by any non‑zero element is allowed (e.g., solving linear equations over $\mathbb{R}$). 👀 Patterns to Recognize “Sum of exponents = degree” – In each term, add variable exponents; the largest sum is the polynomial’s degree. Parallel lines → coefficients proportional – For two linear equations $a1x+b1y=c1$ and $a2x+b2y=c2$, if $\dfrac{a1}{a2}=\dfrac{b1}{b2}\neq\dfrac{c1}{c2}$ → inconsistent. Common factor → immediate root – If every term contains $(x‑k)$, then $x=k$ is a root (factor theorem). Symmetry in group tables – Identity appears on its own row/column; each element’s inverse appears opposite it. 🗂️ Exam Traps “All quadratic equations have two real solutions.” Discriminant $b^{2}-4ac$ may be negative → complex roots. Choosing the wrong solving method for a singular matrix – Applying $A^{-1}\mathbf{b}$ when $\det A=0$ leads to “division by zero”. Confusing identity with conditional equation – Treating $x^2-4=0$ as an identity (true for all $x$) is wrong; it’s conditional (solutions $x=±2$). Assuming commutativity in any ring – Matrix multiplication is not commutative; swapping order changes the result. Misreading “consistent” as “has a unique solution.” Consistent includes both unique and infinitely many solutions; check rank vs. number of variables. --- Study tip: Review each bullet, write a quick example on a scrap of paper, and then quiz yourself by covering the answer side. Re‑creating the reasoning (e.g., performing Gaussian elimination on a fresh $3\times3$ system) cements the process more than passive rereading. Good luck!
or

Or, immediately create your own study flashcards:

Upload a PDF.
Master Study Materials.
Start learning in seconds
Drop your PDFs here or
or