Difference between revisions of "MAT2253"

From Department of Mathematics at UTSA
Jump to navigation Jump to search
(Create MAT2253 to remove 2243 (number unavailable).)
 
m (marked optional topics Fall 2026)
 
(7 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
Prerequisite: [[MAT1214]]/[[MAT1213]] Calculus I
 
Prerequisite: [[MAT1214]]/[[MAT1213]] Calculus I
  
This comprehensive course in linear algebra provides an in-depth exploration of core concepts and their applications to optimization, data analysis, and neural networks. Students will gain a strong foundation in the fundamental notions of linear systems of equations, vectors, and matrices, as well as advanced topics such as eigenvalues, eigenvectors, and canonical solutions to linear systems of differential equations. The course also delves into the critical techniques of calculus operations in vectors and matrices, optimization, and Taylor series in one and multiple variables. By the end of the course, students will have a thorough understanding of the mathematical framework underlying principal component analysis, gradient descent, and the implementation of simple neural networks.
+
This comprehensive course in linear algebra provides an in-depth exploration of core concepts and their applications to optimization, data analysis, and neural networks. Students will gain a strong foundation in the fundamental notions of linear systems of equations, vectors, and matrices, as well as advanced topics such as eigenvalues, eigenvectors, and canonical solutions to linear systems of differential equations. The course also explores he critical techniques of calculus operations in vectors and matrices, optimization, and Taylor series in one and multiple variables. By the end of the course, students will have a thorough understanding of the mathematical framework underlying principal component analysis, gradient descent, and the implementation of simple neural networks.
  
==List of Topics==
+
The primary textbook is "Mathematics for Machine Learning" by Deisenroth, Faisal, and Ong, 2020, Cambridge University Press. The book is available for free for personal use at https://mml-book.github.io/book/mml-book.pdf
 +
 
 +
The secondary textbook is "Pattern Recognition and Machine Learning" by Bishop, 2006, Springer Information Science and Statistics. The book is available for free for personal use at https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf
  
 
{| class="wikitable"
 
{| class="wikitable"
 
! Week !! Section !! Topic !! Prerequisites !! SLOs
 
! Week !! Section !! Topic !! Prerequisites !! SLOs
 
|-
 
|-
| 1 ||  || Notions of linear systems of equations to introduce the concepts of vector and matrices.   ||  ||  
+
| 1 || 2.1 || Systems of Linear Equations ||  ||  
 +
|-
 +
| rowspan="2" | 2 || 2.2 || Matrices ||  ||
 +
|-
 +
| 2.3 || Solving systems of linear equations ||  ||
 +
|-
 +
| 3 || 2.4 || Vector spaces ||  ||
 +
|-
 +
| rowspan="2" | 4 || 2.5 || Linear Independence ||  ||
 +
|-
 +
| 2.6 || Basis & Rank ||  ||
 +
|-
 +
| rowspan="2" | 5 || Exam 1 ||  ||  ||
 +
|-
 +
| 2.7 || Linear Mappings ||  ||
 +
|-
 +
| rowspan="2" | 6 || 2.7 || Linear Mappings (examples) ||  ||
 +
|-
 +
| 4.1 || Determinant and Traces ||  ||
 +
|-
 +
| rowspan="2" | 7 || 4.2 || Eigenvalues & Eigenvectors ||  ||
 +
|-
 +
| 4.3, 4.4 || Matrix Factorizations (Diagonalization) ||  ||
 +
|-
 +
| rowspan="2" | 8 || 3.1, 3.2, 3.3 || Norms, Inner Products, Lengths & Distances ||  ||
 +
|-
 +
| 3.4 || Angles & orthogonality ||  ||
 +
|-
 +
| rowspan="3" | 9 || 3.5 || *Orthonormal Basis ||  ||
 +
|-
 +
| 3.7 || *Inner Product of Functions ||  ||
 +
|-
 +
| Project 1 ||  ||  ||
 +
|-
 +
| rowspan="3" | 10 || 5.1 || Vector Calculus Intro and Taylor Series ||  ||
 +
|-
 +
| 5.1, 5.2 || Differentiation Rules Review and Partial Derivatives ||  ||
 +
|-
 +
| 5.2 || Gradients- Examples, visualizations, computation ||  ||
 +
|-
 +
| rowspan="2" | 11 || 5.3 || Gradients of Vector-Valued Functions ||  ||
 +
|-
 +
| 5.4, Dhrymes 78 || Gradients of Matrices ||  ||
 +
|-
 +
| rowspan="2" | 12 || Exam 2 ||  ||  ||  
 
|-
 
|-
| 2 || || Vector and matrix operations: Dot and cross products, matrix transpose, determinants.  ||  ||  
+
| 5.5, Dhrymes 78 || Useful Identities for Computing Gradients ||  ||  
 
|-
 
|-
| 3 || || Vector and matrix operations: Matrix addition, multiplication and inverse. ||  ||  
+
| rowspan="3" | 13 || 5.7 || Higher-Order Derivatives ||  ||  
 
|-
 
|-
| 4 || || Cramer's rule and solutions of linear systems ||  ||  
+
| Notes || Minimization via Newton's Method & Backpropagation ||  ||  
 
|-
 
|-
| 5 ||  || Full rank, undetermined, and overdetermined systems. Least square solutions ||  ||  
+
| Project 2 ||  ||  ||  
 
|-
 
|-
| 6 || || Eigenvalues and eigenvectors. Canonical solution to linear systems of differential equations.  ||  ||  
+
| rowspan="3" | 14 || 5.8 || Multivariate Taylor Series ||  ||  
 
|-
 
|-
| 7 || || Calculus operations in vectors and matrices, i.e. how to derive a matrix with respect to a vector?  ||  ||  
+
| Notes || Linear optimization: Simplex method ||  ||  
 
|-
 
|-
| 8 ||  || Optimization: Linear problems, and nonlinear problems (constrained and unconstrained) ||  ||  
+
| 7.1 || Optimization Using Gradient Descent ||  ||  
 
|-
 
|-
| 9 || || Lagrange multiplier ||  ||  
+
| rowspan="3" | 15 || 7.2 and Notes || *Constrained Optimization and Lagrange Multipliers: PCA ||  ||  
 
|-
 
|-
| 10 || || Taylor series in one and multiple variables. Jacobians and Hessians, i.e. nabla and Laplace operators.  ||  ||  
+
| Bishop, Duda et al. || Feed-forward Artificial Neural Networks ||  ||  
 
|-
 
|-
| 11 || || Principal component analysis ||  ||  
+
| Bishop, Duda et al. || Backpropagation in ANNs ||  ||  
 
|-
 
|-
| 12 || || Gradient descent ||  ||  
+
| rowspan="3" | 16 || Bishop, Duda et al. || Activation Functions: Linear & Nonlinear ||  ||  
 
|-
 
|-
| 13 || || Neural networks as nonlinear transformations ||  ||  
+
| Bishop, Duda et al. || Step-by-step simple ANN ||  ||  
 
|-
 
|-
| 14 ||  || Implementation of a simple neural network with gradient descent
+
| Final Project ||  ||  ||  
 
|}
 
|}

Latest revision as of 14:44, 24 August 2026

Applied Linear Algebra

Prerequisite: MAT1214/MAT1213 Calculus I

This comprehensive course in linear algebra provides an in-depth exploration of core concepts and their applications to optimization, data analysis, and neural networks. Students will gain a strong foundation in the fundamental notions of linear systems of equations, vectors, and matrices, as well as advanced topics such as eigenvalues, eigenvectors, and canonical solutions to linear systems of differential equations. The course also explores he critical techniques of calculus operations in vectors and matrices, optimization, and Taylor series in one and multiple variables. By the end of the course, students will have a thorough understanding of the mathematical framework underlying principal component analysis, gradient descent, and the implementation of simple neural networks.

The primary textbook is "Mathematics for Machine Learning" by Deisenroth, Faisal, and Ong, 2020, Cambridge University Press. The book is available for free for personal use at https://mml-book.github.io/book/mml-book.pdf

The secondary textbook is "Pattern Recognition and Machine Learning" by Bishop, 2006, Springer Information Science and Statistics. The book is available for free for personal use at https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf

Week Section Topic Prerequisites SLOs
1 2.1 Systems of Linear Equations
2 2.2 Matrices
2.3 Solving systems of linear equations
3 2.4 Vector spaces
4 2.5 Linear Independence
2.6 Basis & Rank
5 Exam 1
2.7 Linear Mappings
6 2.7 Linear Mappings (examples)
4.1 Determinant and Traces
7 4.2 Eigenvalues & Eigenvectors
4.3, 4.4 Matrix Factorizations (Diagonalization)
8 3.1, 3.2, 3.3 Norms, Inner Products, Lengths & Distances
3.4 Angles & orthogonality
9 3.5 *Orthonormal Basis
3.7 *Inner Product of Functions
Project 1
10 5.1 Vector Calculus Intro and Taylor Series
5.1, 5.2 Differentiation Rules Review and Partial Derivatives
5.2 Gradients- Examples, visualizations, computation
11 5.3 Gradients of Vector-Valued Functions
5.4, Dhrymes 78 Gradients of Matrices
12 Exam 2
5.5, Dhrymes 78 Useful Identities for Computing Gradients
13 5.7 Higher-Order Derivatives
Notes Minimization via Newton's Method & Backpropagation
Project 2
14 5.8 Multivariate Taylor Series
Notes Linear optimization: Simplex method
7.1 Optimization Using Gradient Descent
15 7.2 and Notes *Constrained Optimization and Lagrange Multipliers: PCA
Bishop, Duda et al. Feed-forward Artificial Neural Networks
Bishop, Duda et al. Backpropagation in ANNs
16 Bishop, Duda et al. Activation Functions: Linear & Nonlinear
Bishop, Duda et al. Step-by-step simple ANN
Final Project