Triple Play + Bonus Podcast Summarization
Unlock the ultimate study bundle with the Triple Play: a powerhouse combo featuring the Crash Course, Prep Course, and Cheat Sheets – all designed to help you master every math and physics course from start to finish. Whether you're cramming for exams, brushing up before class, or need a lifetime reference, this all-in-one set gives you clear explanations, step-by-step solutions, essential formulas, and quick review sheets covering Algebra, Trig, Calculus, Linear Algebra, Differential Equations, Physics I, II, and beyond.
Built for STEM majors, self-learners, and returning students alike – this bundle takes you from confused to confident faster than any textbook. It's everything you need, all in one place, forever.
Look inside "The Ultimate Crash Course"
Construct a Matrix with Given Column Space and Nullspace (Step-by-Step Proof)
Title: Construct a Matrix with Given Column Space and Nullspace (Step-by-Step Proof)
In this walkthrough, we show how to construct a matrix whose column space contains (1,1,1) and whose nullspace is the line of multiples of (1,1,1,1).
Step 1: Understand the Problem
We want:
-
Column space to contain the vector (1,1,1)
-
Nullspace to be the set of all scalar multiples of (1,1,1,1)
This means we are looking for a matrix A such that:
-
A * x = 0 has solution space spanned by (1,1,1,1)
-
The matrix A has 3 rows (since the column vector has 3 entries)
-
The matrix A has 4 columns (since the nullspace vector has 4 components)
Step 2: Definitions
Column Space: All linear combinations of the columns
Nullspace: All solutions to A * x = 0
So x = t(1,1,1,1) is the general solution of the homogeneous system.
Step 3: Deconstruct and Solve
We assume:
x = (1,1,1,1)t
So, x₁ = x₂ = x₃ = x₄
This gives:
-
x₁ - x₂ = 0
-
x₂ - x₃ = 0
-
x₃ - x₄ = 0
Which gives us a system of equations:
x₁ - x₂ = 0
x₂ - x₃ = 0
x₃ - x₄ = 0
Written in matrix form:
[ 1 -1 0 0 ]
[ 0 1 -1 0 ]
[ 0 0 1 -1 ]
Thus, a correct matrix A is:
A = [ 1 0 0 -1
0 1 0 -1
0 0 1 -1 ]
This has:
-
Column space containing (1,1,1)
-
Nullspace spanned by (1,1,1,1)
Step 4: Validation
Any vector in the nullspace must satisfy A * x = 0.
Let x = (1,1,1,1), then:
A * x = [1 -1 0 0]·x = 1 - 1 = 0
[0 1 -1 0]·x = 1 - 1 = 0
[0 0 1 -1]·x = 1 - 1 = 0
✅ Valid
And since (1,1,1) can be expressed as a linear combination of the columns, it's in the column space.
Conclusion
One valid matrix is:
A = [ 1 0 0 -1
0 1 0 -1
0 0 1 -1 ]
This matches the conditions exactly. There are infinitely many matrices that can satisfy these conditions, but this form is simplest and easily validated.
—
This lesson aligns with Chapter 3.2 in Strang’s Linear Algebra (4th ed.). Always cite sources and avoid shortcut tools like AI or uncredited platforms during exams unless explicitly allowed.
Visit:
https://author-jonathan-david-shop.fourthwall.com for more STEM guides.
Subscribe for live lessons and study advice: https://www.youtube.com/@AuthorJonD
How to Use Gauss-Jordan Elimination Step-by-Step – RREF Made Easy
Title: How to Use Gauss-Jordan Elimination Step-by-Step – RREF Made Easy
This lesson shows how to perform Gauss-Jordan Elimination to reduce a system of equations into Reduced Row-Echelon Form (RREF). This is a continuation from the prior Gaussian Elimination example but takes it further to fully solve for each variable.
Matrix Setup (from previous work)
Starting augmented matrix:
[ 1 -2 3 | -2 ]
[ 0 3 -5 | 6 ]
[ 0 0 0 | 1 ]
Since the third row is [ 0 0 0 | 1 ]
, we already concluded this is inconsistent (no solution).
But we continue Gauss-Jordan to learn the process.
Gauss-Jordan Elimination Strategy:
Use counterclockwise elimination:
-
Eliminate below pivot a11
-
Then below a22
-
Then below a33
-
Then eliminate above each pivot
-
Finally, divide rows to get leading 1s
Step-by-Step:
-
Multiply row 2 by 3/5
→3/5 * R2 + R1 → R1
-
Result:
[ 1 9/5 2 8/5 ]
[ 0 3 -5 6 ]
[ 0 0 0 1 ]
-
Now eliminate back into R1 using R3:
→-6*R3 + R2
, etc.
Eventually, you reach:
[ 1 0 0 | -1/3 ]
[ 0 1 0 | 5/3 ]
[ 0 0 1 | 1 ]
Final Result:
This is Reduced Row-Echelon Form (RREF). But since the matrix had [ 0 0 0 | 1 ]
earlier, it’s still inconsistent.
Key Takeaway:
Gauss-Jordan Elimination gives you full control over the system and reveals inconsistencies. If you’re asked to fully reduce a matrix into RREF, this is the path to follow.
This tutorial is part of Chapter 9: Gauss-Jordan Elimination from the Ultimate Crash Course for STEM Majors. It’s designed to help you understand how matrix algebra is used to prove solutions exist—or not.
Unlock the full course now with lifetime access:
https://author-jonathan-david-shop.fourthwall.com/products/the-ultimate-crash-course-includes-bonus-ultimate-cheat-sheet-800-pages-of-goodness
More math courses and downloadable guides here:
https://author-jonathan-david-shop.fourthwall.com
Search tags: gauss-jordan elimination example, how to find rref, rref inconsistent matrix, full matrix row reduction steps, how to check if a matrix has a solution, back elimination matrix, step-by-step rref method.
Use Gaussian Elimination to Find the Complete Solution
Title: Using Gaussian Elimination to Determine If a System Has a Solution
This post explains how to use Gaussian Elimination to test whether a system of linear equations is consistent, inconsistent, or has infinite solutions. It walks through the full process from the augmented matrix to the final conclusion, showing how even one row can prove there's no solution.
Given System:
x - 2y + 3z = -2
2x - y + z = 2
2x - 7y + 11z = -9
Augmented matrix:
[ 1 -2 3 | -2 ]
[ 2 -1 1 | 2 ]
[ 2 -7 11 | -9 ]
Step 1: Use Row Operations to Reach Row-Echelon Form
Apply Gaussian Elimination to zero out lower values:
-
Multiply row 1 and subtract from rows 2 and 3
-
Resulting matrix:
[ 1 -2 3 | -2 ]
[ 0 3 -5 | 6 ]
[ 0 -3 5 | -5 ]
Add row 2 and 3 to eliminate the leading term in row 3:
[ 1 -2 3 | -2 ]
[ 0 3 -5 | 6 ]
[ 0 0 0 | 1 ]
Step 2: Interpret the Final Matrix
The third row says:
0x + 0y + 0z = 1
That is a contradiction → no solution
This system is inconsistent.
Visual Summary of Matrix Solution Types:
-
If last row is
[ 0 0 0 | 1 ]
→ no solution (inconsistent) -
If last row is
[ 0 0 0 | 0 ]
→ infinite solutions (if others are consistent) -
If matrix reduces cleanly → unique solution
Final Answer:
No solution.
The system is inconsistent based on the Gaussian elimination result.
This walkthrough is from Chapter 8 of the Ultimate Crash Course for STEM Majors and is designed to help you recognize how and why systems fail before wasting time solving.
Get the full 800-page crash course with lifetime updates:
https://author-jonathan-david-shop.fourthwall.com/products/the-ultimate-crash-course-includes-bonus-ultimate-cheat-sheet-800-pages-of-goodness
Browse all STEM materials and study guides:
https://author-jonathan-david-shop.fourthwall.com
Search tags: Gaussian Elimination step by step, inconsistent matrix system, how to use row operations, no solution matrix, false row in matrix, linear system contradiction, matrix solution cases.
Ultimate Crash Course PDF
Student: If you want a hardcopy, I only print them in small batched. You can be notified of the release via YouTube.com/@authorjond (I do one batch a month usually)
After being a professional tutor and student for about 15 years, I have isolated everything a STEM major needs to know to be successful both inside and outside of college. The book comes with an accompanying YouTube channel and podcast that provide explanations beyond the text.
Before Starting Algebra or Calculus Based Physics
Before Starting Algebra or Calculus Based Physics
Unlock your full potential in physics with Before Starting Algebra or Calculus Based Physics — the ultimate prep guide for students stepping into the world of formulas, forces, and functions. Whether you're about to take high school physics, college algebra-based physics, or dive into calculus-based mechanics, this book gives you the exact foundation you need to thrive.
Inside, you’ll master the essential math skills, units, vectors, and logic that most students struggle with when physics begins. We break it all down in simple, clear language with step-by-step examples that connect math concepts to real-world physical scenarios. This isn’t a textbook — it’s a launchpad.
Perfect for freshmen, returning students, or anyone who wants to walk into physics class with confidence.
This book is for you if:
-
You’re intimidated by physics but want to succeed
-
You’re starting a STEM major and want a strong head start
-
You struggled with math in the past and want a second chance
Jumpstart your journey into physics — and never feel behind again.
Grab your copy today and start building your confidence before class even begins.
The Ultimate Cheat Sheet for Math and Physics
"The Ultimate Cheat Sheet for Math and Physics" is a comprehensive guide written by renowned mathematician and physicist gone fiction author, Jonathan David. This indispensable resource is designed to equip students with a powerful arsenal of tips, tricks, and essential knowledge needed to excel in mathematics and physics. Whether you're studying algebra, trigonometry, precalculus, or diving into the intricacies of differential calculus (Calc 1), integral calculus (Calc 2), several variable calculus (Calc 3), multivariable and vector calculus, linear algebra, differential equations, or physics, this book has got you covered.
Crash Course Hardcover with PDF Access
IN STOCK
With the purchase of this title, you will recieve an access code to AuthorJonathanDavid.com where you can download the PDF versions and access all content. Please email me after purchase for this code if you don't want to wait for it to come in the mail. Thanks!
[The first edition of this book is being printed. Orders will be shipped when they arrive. May take a few weeks. You will receive PDF access to this title and all others meanwhile]
After being a professional tutor and student for about 15 years, I have isolated everything a STEM major needs to know to be successful both inside and outside of college. The book comes with an accompanying YouTube channel and podcast that provide explanations beyond the text.
BONUS
Inludes lifetime access code for ad-free videos lessons, podcasts, and audiobooks (limited time offer).
A copy (with matching laminated bookmark) of "i no i'm write" podcasts summariztion 2024.
Timewaves Collection PDF-eBook with Audiobook Access
This is a collection of 9 titles ranging from mythological fiction to alien vampies and digital zombies!
I am currently narrating all titles. You can listen daily as each chapter is released or wait for the finished product. Audiobooks will be available via https://authorjonathandavid.com with special access code.
Timewaves Collection
A collection of 9 books connected but disconnected. Everything from mytholigical fiction to alien vampies and digital zombies! You will be entertained!
This is a collection of my first set of novels and short stories primarily SciFi and thrille type books with my philosophical twists.