Monash University · S1 2027 · FACULTY OF MATHEMATICS

MTH2021 · Linear Algebra with Applications

- one subject, every graph, every model, every mark
50% final exam · hurdle13 Chapters99-page Bible
Our own words - no uploaded lecturer files
Built to mirror S1 2027 · updated this semester
The Complete Exam Bible · S1 2027

Linear Algebra with Applications

— Every theorem, every proof, every mark — linear algebra from Gaussian elimination to the SVD, worked and proved the way the Monash 190-minute exam demands.

MTH2021 Linear Algebra with Applications is Monash University's second-year mathematics unit — dual-coded with the advanced MTH2025 and taught from Tim Garoni's printed seminar notes (with Anton & Rorres as the recommended text) — and it is the unit where, in the coordinator's own framing, rigorous mathematical proof takes centre stage. The Monash Handbook frames MTH2021 in two banded halves: a continuous 'Demonstration' component worth 50% (seminar polls 4%, applied-class participation 4%, twelve weekly Moodle quizzes 12%, Test 1 10% in Week 4 covering Weeks 1–2, and Test 2 20% in Week 9 covering Weeks 3–7) and a single Final Exam worth 50%. That final is a 190-minute invigilated on-campus eExam with a proof-heavy handwritten section, so marks reward both a clean computation and a correctly argued proof. There is no hurdle in the current Monash materials — confirm on Moodle whether any pass-the-exam rule applies. The content runs from Gaussian elimination and determinants through abstract vector spaces, inner products and eigenvalues to the singular value decomposition, and the MTH2021 result feeds the Weighted Average Mark (WAM) that later Monash mathematics units build on. Generative AI cannot be used for any assessment in this unit.

MTH2021 · Monash University
An independent, AskSia-authored study guide. AskSia is not affiliated with, endorsed by, or sponsored by Monash University; the course code and name are used for identification only.
Contents · the whole subject, one map

What MTH2021 covers

MTH2021 Linear Algebra with Applications is assessed through weekly Moodle quizzes, two in-semester tests (Test 1 in Week 4 on Weeks 1–2, Test 2 in Week 9 on Weeks 3–7) and a 190-minute invigilated eExam worth 50% that puts rigorous proof — not just computation — at centre stage. This thirteen-chapter map follows the teaching schedule from Gaussian elimination through vector spaces, inner products and eigenvalues to the singular value decomposition. Use it to see how each week's definitions and theorems build toward the proof-heavy final.

01Linear Systems & Gaussian EliminationAugmented matrix · row-echelon & RREF · Gauss-Jordan · consistency (Week 1)02Matrix Algebra, Inverses & Elementary MatricesMatrix operations · the inverse & inversion algorithm · elementary matrices · equivalent statements (Weeks 1-2)03DeterminantsCofactor / Laplace expansion · properties · determinant of a product · Cramer's rule (Week 3)04Vector Spaces & SubspacesThe axioms · the subspace test · examples (function/matrix/polynomial spaces) (Weeks 3-4)05Span, Linear Independence, Basis & DimensionLinear combinations · span · independence · basis · the dimension theorem (Week 4)06Coordinates, Change of Basis & Direct SumsCoordinate vectors [v]_B · change-of-basis matrix · direct sum V (+) W (Week 5)07Fundamental Subspaces, Fields & Coding TheoryRow/column space · kernel & cokernel · vector spaces over a field · Hamming (7,4) codes (Week 6)08Linear Transformations & the Rank-Nullity TheoremKernel & range · rank-nullity · injective/surjective · matrix of a map · isomorphism (Weeks 6-7)09Inner Product SpacesInner-product axioms · norm & distance · Cauchy-Schwarz · orthogonality & complements (Week 8)10Gram-Schmidt, Projection & Least SquaresOrthonormal bases via Gram-Schmidt · the projection theorem · normal equations & best fit (Weeks 9-10)11Eigenvalues, Eigenvectors & DiagonalisationCharacteristic polynomial · eigenspaces & multiplicities · A = PDP^-1 (Weeks 10-11)12Orthogonal Diagonalisation & the Spectral TheoremOrthogonal matrices · symmetric matrices · A = QDQ^T · spectral decomposition (Week 11)13Singular Value DecompositionSingular values · A = U S V^T · the pseudoinverse · minimal-length least squares (Week 12)
Assessment

How MTH2021 is assessed

ComponentWeightFormat
Final Exam50%190-minute invigilated on-campus eExam, including a proof-heavy handwritten section; exam period
Test 220%Week 9; covers Weeks 3-7
Twelve Weekly Quizzes12%One per week (1% each); online Moodle, 5 questions each (True/False, MCQ, numeric)
Test 110%Week 4; closed book; covers Weeks 1-2
Seminar Polls4%Poll Everywhere throughout the semester (graded by % correct in bands)
Applied-Class Participation4%Weekly applied classes (Weeks 2-12); graded by number of classes actively participated in
Worked example · free

Least-squares line of best fit via the normal equations

Q [5 marks]. Find the least-squares line y = a + bx through the four data points (0, 2), (1, 3), (3, 7) and (6, 12) by solving the normal equations MᵀM v = Mᵀy. (5 marks)
  • +1Set up the design matrix and data vector. With rows [1, xᵢ], M = [[1,0],[1,1],[1,3],[1,6]] and y = (2, 3, 7, 12)ᵀ; the unknowns are v = (a, b)ᵀ. The least-squares fit solves MᵀM v = Mᵀy, which is always consistent.
  • +1Form the Gram matrix MᵀM. With n = 4, Σx = 0+1+3+6 = 10 and Σx² = 0+1+9+36 = 46, MᵀM = [[4, 10],[10, 46]].
  • +1Form the right-hand side Mᵀy. Σy = 2+3+7+12 = 24 and Σxy = 0·2 + 1·3 + 3·7 + 6·12 = 0+3+21+72 = 96, so Mᵀy = (24, 96)ᵀ.
  • +1Solve [[4,10],[10,46]] (a, b)ᵀ = (24, 96)ᵀ. The determinant is 4·46 − 10·10 = 184 − 100 = 84. By Cramer's rule a = (24·46 − 10·96)/84 = (1104 − 960)/84 = 144/84 = 12/7, and b = (4·96 − 10·24)/84 = (384 − 240)/84 = 144/84 = 12/7.
  • +1State the line and sanity-check. y = 12/7 + (12/7)x ≈ 1.71 + 1.71x. At x = 6 it predicts 12/7·7 = 12, matching the point (6, 12) exactly, and the fitted values (1.71, 3.43, 6.86, 12.0) sit close to the data — a good fit.
The least-squares line is y = 12/7 + (12/7)x (a = b = 12/7 ≈ 1.714), obtained from the normal equations [[4,10],[10,46]] v = (24, 96)ᵀ with determinant 84.
Sia tip — The normal equations MᵀM v = Mᵀy are ALWAYS consistent, so never row-reduce the tall system Mv = y directly. Build MᵀM and Mᵀy first, then solve the small square system. Stuck on why AᵀA appears? Ask Sia to walk the projection-onto-the-column-space argument step by step — it explains the method, it never just hands over an answer.
Glossary

Key terms

Reduced row-echelon form (RREF)
The unique echelon form of a matrix in which every pivot is 1 and is the only nonzero entry in its column. Gauss–Jordan elimination reaches it; the number and position of pivots (hence the rank) are invariant.
Determinant
A scalar det(A) attached to a square matrix, computed by cofactor (Laplace) expansion along any row or column. A is invertible iff det(A) ≠ 0, and det(AB) = det(A)det(B).
Basis and dimension
A basis is a linearly independent spanning set; every basis of a finite-dimensional space has the same size, which is the dimension. dim(ℝⁿ) = n, dim(Pₙ) = n+1, dim(ℝ^{m×n}) = mn.
Rank–Nullity Theorem
For a linear map T on an n-dimensional domain, rank(T) + nullity(T) = n — the dimension of the range plus the dimension of the kernel equals the dimension of the domain.
Eigenvalue and eigenvector
A nonzero vector x with Ax = λx; λ is the eigenvalue, found from the characteristic equation det(λI − A) = 0. A is diagonalisable, A = PDP⁻¹, exactly when it has n linearly independent eigenvectors.
Singular value decomposition (SVD)
Any m×n matrix factors as A = UΣVᵀ with U, V orthogonal and Σ diagonal of nonnegative singular values σᵢ = √(eigenvalues of AᵀA). It underlies the pseudoinverse A⁺ and the minimal-length least-squares solution.
FAQ

MTH2021 FAQ

Is MTH2021 hard?

MTH2021 is a step up because it is the unit where rigorous proof takes centre stage, so it is harder than the computation-focused first-year linear algebra in MTH1030 or ENG1005. The computations (row reduction, determinants, eigenvalues, Gram–Schmidt, SVD) are drillable, but the marks in the 190-minute final increasingly reward proving why a result holds — that a set is a subspace, that a map is an isomorphism, that a matrix is orthogonally diagonalisable. Students who keep up with the weekly quizzes and rehearse the proofs, rather than only computing, tend to find it manageable and land in the HD/D bands.

Can AI help me with MTH2021?

Yes — as a step-by-step explainer, not an answer machine. Sia is an AI tutor trained on how MTH2021 is actually taught and assessed: it can walk you through a Gaussian-elimination consistency argument, explain why only the space of eigenvectors makes A diagonalisable, or unpack a Gram–Schmidt or SVD calculation one line at a time, and it checks your reasoning as you go. It does not do graded assessment for you — Monash University academic-integrity rules apply, and generative AI cannot be used for any assessment in this unit — so use it to understand the method and rehearse proofs, then write your own.

Where can I find past exam papers / practice for MTH2021?

Start on Moodle: the unit posts sample final exams (with solutions for the handwritten section), sample tests, twelve weekly problem sets with full worked solutions, and the quizzes — that is the closest match to the real exam's style. This guide also includes a re-authored practice exam that mirrors the final's shape (a computation half plus a proof-heavy handwritten half) with fresh numbers, and you can ask Sia to generate extra practice in the same style and explain each step. Treat any third-party 'model answers' with caution and confirm what is officially provided on Moodle and the unit guide.

Does MTH2021 have a hurdle?

No hurdle appears in the current Monash Handbook entry or the Moodle materials — both list the two assessment bands (continuous 'Demonstration' 50% and Final Exam 50%) with no hurdle attached. Your final mark is simply the weighted total across seminar polls (4%), applied-class participation (4%), twelve quizzes (12%), Test 1 (10%), Test 2 (20%) and the exam (50%), mapped to the Monash grade bands (HD ≥ 80, then D, C, P; N is a fail). Still, confirm on Moodle whether any pass-the-exam rule applies to your cohort before you rely on this.

Is the MTH2021 final open- or closed-book?

The final is a 190-minute invigilated on-campus eExam with a proof-heavy handwritten section, but the available unit materials do not state whether it is open- or closed-book or which materials are permitted — so do not assume either way. (Test 1 in Week 4 is explicitly closed book, but that does not settle the exam.) Check the exam cover sheet, Moodle and the Monash exam timetable for the exact date — around June 2027 in the Semester 1 exam period — time, room and permitted-materials rules before the day.

Study strategy

How to study for the exam

Treat MTH2021 as two habits running in parallel: drill the recurring computations and rehearse the proofs. Each week, do that week's problem set end to end and one full quiz-style self-test, because the twelve Moodle quizzes (12%) track the week's topic and Test 1 (Weeks 1–2) and Test 2 (Weeks 3–7) re-examine the same material. For the proof-heavy 50% final, do not only compute: practise writing out the subspace test, the rank–nullity argument, the diagonalisation and spectral-theorem proofs, and the union-is-not-a-subspace counterexample until you can produce them cold, since the handwritten section is where those marks live. Use SWOTVAC to consolidate breadth across all thirteen chapters rather than to meet the material for the first time, and confirm the exam date, room and permitted materials on Moodle. When a step won't click, ask Sia to re-explain that single line a different way and to set a fresh practice question in the same style — it teaches the method and checks your reasoning, and it never substitutes for your own graded work.

Study MTH2021 with AI

Your AI Mathematics tutor for MTH2021

Stuck on a hard MTH2021 question? Sia is AskSia’s AI Mathematics tutor — ask any MTH2021 Linear Algebra with Applications question and get a clear, step-by-step explanation grounded in how the course is actually taught and assessed. Read this whole study guide free, then take your hardest questions to Sia.

A+Everything unlocked
Unlocks this Bible + all 14 of your Monash University subjects - and 1,000+ Bibles across every Australian university.
Sia - your MTH2021 tutor, unlimited, worked the way the exam marks it
The full 99-page Bible + practice bank with worked solutions
Chrome extension - sync your LMS so Sia knows your deadlines
Bilingual EN / Chinese on every Bible and every Sia answer
$25/ month
30-day money-back · cancel in one tap · how it works
MTH2021 · Linear Algebra with Applications - independent study guide on the AskSia Library. More Monash University subjects · Microeconomics across all universities
Unlock the full MTH2021 Bible + 14 Monash University subjects解锁完整 MTH2021 Bible + Monash University 14 门科目
$25/mo