*New/Established are not always accurate labels.
[1] J. Skrentny, Wasted Education, Chicago Press, 2023
[2] BLS Employee Tenure Table (January 2024)Carl Jung's definition is vague and changing. The term is now part of modern psychology, see [1]. My pithy approximation will do for this talk.
[3] F. Fordham, Jung: An introduction to His Psychology, Howes Ltd, 2024.
... If it's about who teaches and who we teach
....then its part psychology?
... is this "scientific" enough for a math classroom?
[4] Clifford Mayes, Jung and Education, Rowman & Littlefield 2005
[4] Clifford Mayes, Jung and Education, Rowman & Littlefield 2005
[5] C. Bartlett, Where is the storytelling in science?, Proc. U. Cape Breton 1st Annual Storytelling Symposium, 1997*disappointing
Lineum looks at a clock and notices
Is he late for the bus?
[6] M. Mark & C. Pearson, The Hero and the Outlaw: Building Extraordinary Brands Through the Power of Archetypes. McGraw Hill, 2001
Insert the new symbol the "icon/branding" of the new intuition
Holt, Linear Algebra with Applications, 2nd Ed., Freeman Press, 2017
Chartier, When Life is Linear, MAA 2015
Locate an intuition about when to use the SVD,
e.g. it identifies compressibility,
and an archetype to deliver that intuition.
If you measured the similarities between all the parts in a table
Adjacent to 1 \(v_1=\begin{bmatrix} 1 & 2 & 3 & 4 & 5 & 6 \\ \hline 0 & 1 & 0 & 1 & 0 & 0 \end{bmatrix}\)
1
2
3
4
5
6
Adjacent to 5 \(v_2=\begin{bmatrix} 1 & 2 & 3 & 4 & 5 & 6 \\ \hline 0 & 1 & 0 & 1 & 0 & 1 \end{bmatrix}\)
\(v_1\cdot v_5=2\) and that's the number of vertices in common....seems informative for graph theory questions....SPECTRAL!
\[\text{Null}(M)=\{u\in \mathbb{R}^n\mid Mu=0\}\]
> M = [1.0 2 3 4; 2 1 4 3]
2×4 Matrix{Float64}:
1.0 2.0 3.0 4.0
2.0 1.0 4.0 3.0
> N = nullspace(M)
4×2 Matrix{Float64}:
-0.750331 -0.330783
0.127332 -0.810062
0.572331 0.00482762
-0.305332 0.484106
> M = [1.0 2 3 4; 2 1 4 3]
2×4 Matrix{Float64}:
> N = nullspace(M)
4×2 Matrix{Float64}:
> M*N == zeros(2,2)
false
> M*N
2×2 Matrix{Float64}:
6.66134e-16 2.22045e-16
-1.11022e-16 0.0
> isapprox( M*N, zeros(2,2))
true\(\mathbb{R}^m\)
\(\mathbb{R}^n\)
\(\mathbb{R}^e\)
\(M\)
\(N\)
\(\mathbb{R}^0\)
(should be 0 but its only approximate!)
\([]\)
\([]\)
> M = [1.0 2 3 4; 2 1 4 3]
2×4 Matrix{Float64}:
> N = nullspace(M)
4×2 Matrix{Float64}:
> isapprox( M*N, zeros(2,2))
true
> X = [-0.419547; 0.937394;
0.56750; -0.78943 ]
> isapprox( M*X, zeros(2,1))
true
> N \ X
2-element Vector{Float64}:
1.0
-1.0
> isapprox( N * (N \ X), X)
true\(\mathbb{R}^m\)
\(\mathbb{R}^n\)
\(\mathbb{R}^e\)
\(M\)
\(N\)
\(\mathbb{R}^0\)
\(\mathbb{R}^e\)
\(X\)
\(N\backslash X\)
\([]\)
\([]\)
\([]\)
\(\leftarrow\) Left Page
Right Page \(\rightarrow\)