<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mathresearch.utsa.edu/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Juan.gutierrez3&amp;*</id>
	<title>Department of Mathematics at UTSA - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mathresearch.utsa.edu/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Juan.gutierrez3&amp;*"/>
	<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Special:Contributions/Juan.gutierrez3"/>
	<updated>2026-05-26T21:24:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5603&amp;diff=5433</id>
		<title>MAT5603</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5603&amp;diff=5433"/>
		<updated>2025-09-05T14:42:54Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Added course title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''Numerical Analysis'' &lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'':   [[MAT1223]], [[MAT2233]] (or [[MAT2253]]), or consent of instructor. &lt;br /&gt;
&lt;br /&gt;
''Contents''&lt;br /&gt;
Rigorous introduction to the fundamental methods of numerical analysis, emphasizing both theoretical foundations and practical applications. Areas of study include the solution of nonlinear equations, interpolation and curve fitting, numerical differentiation and integration, Fourier transforms, and optimization.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Scaffolded Numerical Analysis Curriculum (15 Weeks) =&lt;br /&gt;
&lt;br /&gt;
== Phase 1: Foundation - Numbers and Errors (Weeks 1-3) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Computer arithmetic and floating-point representation&lt;br /&gt;
* Error types and propagation&lt;br /&gt;
* Condition numbers and stability&lt;br /&gt;
* Root-finding for single variables&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Explain IEEE 754 floating-point representation and identify representation limitations&lt;br /&gt;
* Calculate and distinguish between absolute, relative, forward, and backward errors&lt;br /&gt;
* Compute condition numbers and assess problem sensitivity to input perturbations&lt;br /&gt;
* Implement and analyze convergence of bisection, fixed-point iteration, and Newton's method&lt;br /&gt;
* Select appropriate root-finding methods based on problem characteristics and convergence requirements&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Establishes error analysis framework used throughout entire course&lt;br /&gt;
* Introduces iteration and convergence concepts that extend to matrix methods&lt;br /&gt;
* Newton's method foundation for later multivariable extensions&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 1: Computer Arithmetic ====&lt;br /&gt;
* IEEE 754 standard, machine epsilon, rounding errors&lt;br /&gt;
* '''Sauer''': Chapter 0&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 1.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 2&lt;br /&gt;
&lt;br /&gt;
==== Week 2: Error Analysis ====&lt;br /&gt;
* Absolute vs relative error, forward vs backward error analysis&lt;br /&gt;
* Condition numbers of problems and algorithms&lt;br /&gt;
* '''Sauer''': Chapter 0&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 2&lt;br /&gt;
&lt;br /&gt;
==== Week 3: Single Variable Root-Finding ====&lt;br /&gt;
* Bisection method, fixed-point iteration, Newton's method, secant method&lt;br /&gt;
* Convergence analysis and rates&lt;br /&gt;
* '''Sauer''': Chapter 1&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 2: Linear Foundations (Weeks 4-7) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Direct methods for linear systems&lt;br /&gt;
* Matrix decompositions (LU, Cholesky)&lt;br /&gt;
* Iterative methods for linear systems&lt;br /&gt;
* Convergence theory for iterative methods&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Perform Gaussian elimination with pivoting and explain stability considerations&lt;br /&gt;
* Implement LU decomposition and apply to multiple right-hand sides efficiently&lt;br /&gt;
* Estimate condition numbers and predict solution sensitivity&lt;br /&gt;
* Implement Jacobi, Gauss-Seidel, and SOR methods&lt;br /&gt;
* Analyze convergence of iterative methods using spectral radius&lt;br /&gt;
* Choose between direct and iterative approaches based on problem characteristics&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Extends error analysis to linear algebra settings&lt;br /&gt;
* Matrix iteration concepts build on scalar fixed-point theory from Phase 1&lt;br /&gt;
* Linear system solving becomes essential tool for subsequent interpolation and optimization phases&lt;br /&gt;
* Condition number analysis connects to Phase 1 concepts&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 4: Gaussian Elimination and LU Decomposition ====&lt;br /&gt;
* Gaussian elimination, partial pivoting, LU factorization&lt;br /&gt;
* '''Sauer''': Chapter 2.1-2.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 6.1-6.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 3&lt;br /&gt;
&lt;br /&gt;
==== Week 5: Matrix Conditioning and Special Systems ====&lt;br /&gt;
* Condition numbers for matrices, Cholesky decomposition&lt;br /&gt;
* '''Sauer''': Chapter 2.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 6.6&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
==== Week 6: Iterative Methods - Basic ====&lt;br /&gt;
* Jacobi and Gauss-Seidel methods, matrix splitting&lt;br /&gt;
* '''Sauer''': Chapter 2.5&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 7.1-7.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
==== Week 7: Iterative Methods - Convergence Theory ====&lt;br /&gt;
* Spectral radius, SOR method, convergence analysis&lt;br /&gt;
* '''Sauer''': Chapter 2.5&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 7.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 3: Interpolation and Approximation (Weeks 8-11) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Polynomial interpolation (Lagrange, Newton forms)&lt;br /&gt;
* Interpolation error analysis&lt;br /&gt;
* Spline interpolation&lt;br /&gt;
* Chebyshev interpolation and optimal node placement&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Construct interpolating polynomials using Lagrange and Newton divided difference forms&lt;br /&gt;
* Derive and apply interpolation error bounds&lt;br /&gt;
* Explain Runge phenomenon and strategies to avoid it&lt;br /&gt;
* Implement natural and clamped cubic splines by solving tridiagonal systems&lt;br /&gt;
* Apply Chebyshev nodes to minimize interpolation error&lt;br /&gt;
* Select appropriate interpolation methods based on data characteristics and accuracy requirements&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Uses linear system solving from Phase 2 for spline coefficient determination&lt;br /&gt;
* Error analysis from Phase 1 extends to approximation errors&lt;br /&gt;
* Establishes approximation theory foundation for later least squares and optimization&lt;br /&gt;
* Condition number concepts apply to interpolation matrix analysis&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 8: Polynomial Interpolation ====&lt;br /&gt;
* Lagrange interpolation, Newton divided differences&lt;br /&gt;
* '''Sauer''': Chapter 3.1-3.2&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.1-3.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 9: Interpolation Error Analysis ====&lt;br /&gt;
* Error bounds, Runge phenomenon, Chebyshev nodes&lt;br /&gt;
* '''Sauer''': Chapter 3.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 10: Spline Interpolation - Construction ====&lt;br /&gt;
* Piecewise linear interpolation, cubic splines&lt;br /&gt;
* '''Sauer''': Chapter 3.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.5&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 11: Spline Interpolation - Applications ====&lt;br /&gt;
* Natural, clamped, and periodic boundary conditions&lt;br /&gt;
* Implementation and applications&lt;br /&gt;
* '''Sauer''': Chapter 3.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.5&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 4: Calculus Operations and Data Fitting (Weeks 12-15) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Numerical differentiation and Richardson extrapolation&lt;br /&gt;
* Numerical integration (Newton-Cotes, composite rules)&lt;br /&gt;
* Least squares approximation&lt;br /&gt;
* Introduction to nonlinear systems&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Derive finite difference formulas and analyze their error behavior&lt;br /&gt;
* Apply Richardson extrapolation to improve derivative approximations&lt;br /&gt;
* Implement trapezoid, Simpson's, and composite integration rules&lt;br /&gt;
* Derive error bounds for numerical integration methods&lt;br /&gt;
* Solve linear least squares problems using normal equations and QR decomposition&lt;br /&gt;
* Extend Newton's method to nonlinear systems of equations&lt;br /&gt;
* Connect optimization concepts to earlier root-finding methods&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Numerical differentiation uses interpolation polynomials from Phase 3&lt;br /&gt;
* Integration connects to interpolation through Newton-Cotes derivation&lt;br /&gt;
* Error analysis from Phase 1 applied to differentiation and integration&lt;br /&gt;
* Least squares requires linear system solving from Phase 2&lt;br /&gt;
* Multivariable Newton's method extends single-variable version from Phase 1&lt;br /&gt;
* Sets foundation for optimization methods in advanced courses&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 12: Numerical Differentiation ====&lt;br /&gt;
* Finite differences, Richardson extrapolation, error analysis&lt;br /&gt;
* '''Sauer''': Chapter 5.1&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 4.1&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 10&lt;br /&gt;
&lt;br /&gt;
==== Week 13: Numerical Integration ====&lt;br /&gt;
* Trapezoid rule, Simpson's rule, composite formulas&lt;br /&gt;
* '''Sauer''': Chapter 5.2-5.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 4.2-4.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 10&lt;br /&gt;
&lt;br /&gt;
==== Week 14: Least Squares and Data Fitting ====&lt;br /&gt;
* Linear least squares, normal equations, QR approach&lt;br /&gt;
* '''Sauer''': Chapter 4.1-4.2&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 8.1&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 9&lt;br /&gt;
&lt;br /&gt;
==== Week 15: Nonlinear Systems ====&lt;br /&gt;
* Newton's method for systems, Jacobian matrices&lt;br /&gt;
* '''Sauer''': Chapter 4.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 10.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
== Final Assessment ==&lt;br /&gt;
'''Final Exam Period''': Comprehensive assessment covering error analysis, linear systems, interpolation, and calculus operations with emphasis on method selection and scaffolded problem-solving.&lt;br /&gt;
&lt;br /&gt;
== Key Scaffolding Connections ==&lt;br /&gt;
* '''Error Analysis''' (Phase 1) threads through everything&lt;br /&gt;
* '''Linear Systems''' (Phases 2) are used in interpolation, least squares, and nonlinear systems&lt;br /&gt;
* '''Newton's Method''' evolves: single variable → systems&lt;br /&gt;
* '''Iteration Theory''' develops: fixed-point → linear systems&lt;br /&gt;
* '''Approximation''' builds: interpolation → integration → differential equations&lt;br /&gt;
* '''Optimization Connection''': Least squares introduces objective function minimization&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5603&amp;diff=5390</id>
		<title>MAT5603</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5603&amp;diff=5390"/>
		<updated>2025-08-26T22:31:06Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: First version of potential topics for this course&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'':   [[MAT1223]], [[MAT2233]] (or [[MAT2253]]), or consent of instructor. &lt;br /&gt;
&lt;br /&gt;
''Contents''&lt;br /&gt;
Rigorous introduction to the fundamental methods of numerical analysis, emphasizing both theoretical foundations and practical applications. Areas of study include the solution of nonlinear equations, interpolation and curve fitting, numerical differentiation and integration, Fourier transforms, and optimization.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Scaffolded Numerical Analysis Curriculum (15 Weeks) =&lt;br /&gt;
&lt;br /&gt;
== Phase 1: Foundation - Numbers and Errors (Weeks 1-3) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Computer arithmetic and floating-point representation&lt;br /&gt;
* Error types and propagation&lt;br /&gt;
* Condition numbers and stability&lt;br /&gt;
* Root-finding for single variables&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Explain IEEE 754 floating-point representation and identify representation limitations&lt;br /&gt;
* Calculate and distinguish between absolute, relative, forward, and backward errors&lt;br /&gt;
* Compute condition numbers and assess problem sensitivity to input perturbations&lt;br /&gt;
* Implement and analyze convergence of bisection, fixed-point iteration, and Newton's method&lt;br /&gt;
* Select appropriate root-finding methods based on problem characteristics and convergence requirements&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Establishes error analysis framework used throughout entire course&lt;br /&gt;
* Introduces iteration and convergence concepts that extend to matrix methods&lt;br /&gt;
* Newton's method foundation for later multivariable extensions&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 1: Computer Arithmetic ====&lt;br /&gt;
* IEEE 754 standard, machine epsilon, rounding errors&lt;br /&gt;
* '''Sauer''': Chapter 0&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 1.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 2&lt;br /&gt;
&lt;br /&gt;
==== Week 2: Error Analysis ====&lt;br /&gt;
* Absolute vs relative error, forward vs backward error analysis&lt;br /&gt;
* Condition numbers of problems and algorithms&lt;br /&gt;
* '''Sauer''': Chapter 0&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 2&lt;br /&gt;
&lt;br /&gt;
==== Week 3: Single Variable Root-Finding ====&lt;br /&gt;
* Bisection method, fixed-point iteration, Newton's method, secant method&lt;br /&gt;
* Convergence analysis and rates&lt;br /&gt;
* '''Sauer''': Chapter 1&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 2: Linear Foundations (Weeks 4-7) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Direct methods for linear systems&lt;br /&gt;
* Matrix decompositions (LU, Cholesky)&lt;br /&gt;
* Iterative methods for linear systems&lt;br /&gt;
* Convergence theory for iterative methods&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Perform Gaussian elimination with pivoting and explain stability considerations&lt;br /&gt;
* Implement LU decomposition and apply to multiple right-hand sides efficiently&lt;br /&gt;
* Estimate condition numbers and predict solution sensitivity&lt;br /&gt;
* Implement Jacobi, Gauss-Seidel, and SOR methods&lt;br /&gt;
* Analyze convergence of iterative methods using spectral radius&lt;br /&gt;
* Choose between direct and iterative approaches based on problem characteristics&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Extends error analysis to linear algebra settings&lt;br /&gt;
* Matrix iteration concepts build on scalar fixed-point theory from Phase 1&lt;br /&gt;
* Linear system solving becomes essential tool for subsequent interpolation and optimization phases&lt;br /&gt;
* Condition number analysis connects to Phase 1 concepts&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 4: Gaussian Elimination and LU Decomposition ====&lt;br /&gt;
* Gaussian elimination, partial pivoting, LU factorization&lt;br /&gt;
* '''Sauer''': Chapter 2.1-2.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 6.1-6.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 3&lt;br /&gt;
&lt;br /&gt;
==== Week 5: Matrix Conditioning and Special Systems ====&lt;br /&gt;
* Condition numbers for matrices, Cholesky decomposition&lt;br /&gt;
* '''Sauer''': Chapter 2.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 6.6&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
==== Week 6: Iterative Methods - Basic ====&lt;br /&gt;
* Jacobi and Gauss-Seidel methods, matrix splitting&lt;br /&gt;
* '''Sauer''': Chapter 2.5&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 7.1-7.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
==== Week 7: Iterative Methods - Convergence Theory ====&lt;br /&gt;
* Spectral radius, SOR method, convergence analysis&lt;br /&gt;
* '''Sauer''': Chapter 2.5&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 7.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 4&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 3: Interpolation and Approximation (Weeks 8-11) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Polynomial interpolation (Lagrange, Newton forms)&lt;br /&gt;
* Interpolation error analysis&lt;br /&gt;
* Spline interpolation&lt;br /&gt;
* Chebyshev interpolation and optimal node placement&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Construct interpolating polynomials using Lagrange and Newton divided difference forms&lt;br /&gt;
* Derive and apply interpolation error bounds&lt;br /&gt;
* Explain Runge phenomenon and strategies to avoid it&lt;br /&gt;
* Implement natural and clamped cubic splines by solving tridiagonal systems&lt;br /&gt;
* Apply Chebyshev nodes to minimize interpolation error&lt;br /&gt;
* Select appropriate interpolation methods based on data characteristics and accuracy requirements&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Uses linear system solving from Phase 2 for spline coefficient determination&lt;br /&gt;
* Error analysis from Phase 1 extends to approximation errors&lt;br /&gt;
* Establishes approximation theory foundation for later least squares and optimization&lt;br /&gt;
* Condition number concepts apply to interpolation matrix analysis&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 8: Polynomial Interpolation ====&lt;br /&gt;
* Lagrange interpolation, Newton divided differences&lt;br /&gt;
* '''Sauer''': Chapter 3.1-3.2&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.1-3.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 9: Interpolation Error Analysis ====&lt;br /&gt;
* Error bounds, Runge phenomenon, Chebyshev nodes&lt;br /&gt;
* '''Sauer''': Chapter 3.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 10: Spline Interpolation - Construction ====&lt;br /&gt;
* Piecewise linear interpolation, cubic splines&lt;br /&gt;
* '''Sauer''': Chapter 3.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.5&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 8&lt;br /&gt;
&lt;br /&gt;
==== Week 11: Spline Interpolation - Applications ====&lt;br /&gt;
* Natural, clamped, and periodic boundary conditions&lt;br /&gt;
* Implementation and applications&lt;br /&gt;
* '''Sauer''': Chapter 3.4&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 3.5&lt;br /&gt;
* '''Kincaid &amp;amp; Cheney''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Phase 4: Calculus Operations and Data Fitting (Weeks 12-15) ==&lt;br /&gt;
&lt;br /&gt;
=== Topics ===&lt;br /&gt;
* Numerical differentiation and Richardson extrapolation&lt;br /&gt;
* Numerical integration (Newton-Cotes, composite rules)&lt;br /&gt;
* Least squares approximation&lt;br /&gt;
* Introduction to nonlinear systems&lt;br /&gt;
&lt;br /&gt;
=== Student Learning Outcomes (SLOs) ===&lt;br /&gt;
* Derive finite difference formulas and analyze their error behavior&lt;br /&gt;
* Apply Richardson extrapolation to improve derivative approximations&lt;br /&gt;
* Implement trapezoid, Simpson's, and composite integration rules&lt;br /&gt;
* Derive error bounds for numerical integration methods&lt;br /&gt;
* Solve linear least squares problems using normal equations and QR decomposition&lt;br /&gt;
* Extend Newton's method to nonlinear systems of equations&lt;br /&gt;
* Connect optimization concepts to earlier root-finding methods&lt;br /&gt;
&lt;br /&gt;
=== Scaffolding ===&lt;br /&gt;
* Numerical differentiation uses interpolation polynomials from Phase 3&lt;br /&gt;
* Integration connects to interpolation through Newton-Cotes derivation&lt;br /&gt;
* Error analysis from Phase 1 applied to differentiation and integration&lt;br /&gt;
* Least squares requires linear system solving from Phase 2&lt;br /&gt;
* Multivariable Newton's method extends single-variable version from Phase 1&lt;br /&gt;
* Sets foundation for optimization methods in advanced courses&lt;br /&gt;
&lt;br /&gt;
=== Weekly Content ===&lt;br /&gt;
&lt;br /&gt;
==== Week 12: Numerical Differentiation ====&lt;br /&gt;
* Finite differences, Richardson extrapolation, error analysis&lt;br /&gt;
* '''Sauer''': Chapter 5.1&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 4.1&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 10&lt;br /&gt;
&lt;br /&gt;
==== Week 13: Numerical Integration ====&lt;br /&gt;
* Trapezoid rule, Simpson's rule, composite formulas&lt;br /&gt;
* '''Sauer''': Chapter 5.2-5.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 4.2-4.3&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 10&lt;br /&gt;
&lt;br /&gt;
==== Week 14: Least Squares and Data Fitting ====&lt;br /&gt;
* Linear least squares, normal equations, QR approach&lt;br /&gt;
* '''Sauer''': Chapter 4.1-4.2&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 8.1&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 9&lt;br /&gt;
&lt;br /&gt;
==== Week 15: Nonlinear Systems ====&lt;br /&gt;
* Newton's method for systems, Jacobian matrices&lt;br /&gt;
* '''Sauer''': Chapter 4.3&lt;br /&gt;
* '''Burden &amp;amp; Faires''': Chapter 10.2&lt;br /&gt;
* '''Quarteroni et al.''': Chapter 6&lt;br /&gt;
&lt;br /&gt;
== Final Assessment ==&lt;br /&gt;
'''Final Exam Period''': Comprehensive assessment covering error analysis, linear systems, interpolation, and calculus operations with emphasis on method selection and scaffolded problem-solving.&lt;br /&gt;
&lt;br /&gt;
== Key Scaffolding Connections ==&lt;br /&gt;
* '''Error Analysis''' (Phase 1) threads through everything&lt;br /&gt;
* '''Linear Systems''' (Phases 2) are used in interpolation, least squares, and nonlinear systems&lt;br /&gt;
* '''Newton's Method''' evolves: single variable → systems&lt;br /&gt;
* '''Iteration Theory''' develops: fixed-point → linear systems&lt;br /&gt;
* '''Approximation''' builds: interpolation → integration → differential equations&lt;br /&gt;
* '''Optimization Connection''': Least squares introduces objective function minimization&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2253&amp;diff=5332</id>
		<title>MAT2253</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2253&amp;diff=5332"/>
		<updated>2025-01-29T04:02:32Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Applied Linear Algebra */  Added textbooks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Applied Linear Algebra==&lt;br /&gt;
&lt;br /&gt;
Prerequisite: [[MAT1214]]/[[MAT1213]] Calculus I&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
The primary textbook is &amp;quot;Mathematics for Machine Learning&amp;quot; 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&lt;br /&gt;
&lt;br /&gt;
The secondary textbook is &amp;quot;Pattern Recognition and Machine Learning&amp;quot; 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&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Session !! Section !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 2.1 || Systems of Linear Equations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 || 2.2 || Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 || 2.3 || Solving systems of linear equations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 || 3.1, 3.2, 3.3 || Norms, Inner Products, Lengths &amp;amp; Distances ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 || 3.4 || Angles &amp;amp; orthogonality ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 || 2.4, 2.5 || Vector spaces &amp;amp; Linear Independendence ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 || 2.6 || Basis &amp;amp; Rank ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 || 2.7 || Linear Mappings ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 || 4.1 || Determinant and Traces ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 || 4.2 || Eigenvalues &amp;amp; Eigenvectors ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 || 4.3, 4.4 || Matrix Factorization ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 || 3.5 || Orthonormal Basis ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 || 3.7 || Inner Product of Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 15 || 3.9 || Rotations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 16 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 17 || 5.1 || Vector Calculus ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 18 || 5.1 || Taylor Series ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 5.1 || Differentiation Rules Review ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 20 || 5.2 || Partial Derivatives ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 21 || 5.2 || Gradients - Examples, visualizations, computaiton ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 22 || 5.2 || Rules for Partial Differentiation &amp;amp; Chain Rule ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 23 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 24 || 5.3 || Gradients of Vector-Valued Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 25 || 5.3 || Gradients of Vector-Valued Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 26 || 5.4, Dhrymes 78 || Gradients of Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 27 || 5.5, Dhrymes 78 || Useful Identities for Computing Gradients ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 28 || 5.7 || Higher-Order Derivatives ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 29 || Notes || Minimization via Newton's Method &amp;amp; Backpropagation ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 30 || Min-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 31 || 5.8 || Linearization &amp;amp; Multivariate Taylor Series ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 32 || Notes || Linear optimization: Simplex method ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 33 || 7.1 || Optimization Using Gradient Descent ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 34 || 7.2 || Constrained Optimization and Lagrange Multipliers ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 35 || 7.3 || Convex Optimization ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 36 || Mini-Test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 37 || Bishop, Duda et al. || Feed-forward Artificial Neural Networks ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 38 || Bishop, Duda et al. || Backpropagation in ANNs ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 39 || Bishop, Duda et al. || Activation Functions: Linear &amp;amp; Nonlinear ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 40 || Bishop, Duda et al. || Step-by-step simple ANN ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 41 || Bishop, Duda et al. || Measures of performance ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 42 || Bishop, Duda et al. || More complex architectures of ANNs ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 43 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 44 || Final project ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 45 || Review ||  ||  || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2253&amp;diff=5331</id>
		<title>MAT2253</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2253&amp;diff=5331"/>
		<updated>2025-01-28T18:59:10Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* List of Topics */  Edited by Vu Hoang, Stephen Peña, Juan B. Gutiérrez&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Applied Linear Algebra==&lt;br /&gt;
&lt;br /&gt;
Prerequisite: [[MAT1214]]/[[MAT1213]] Calculus I&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Session !! Section !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 2.1 || Systems of Linear Equations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 || 2.2 || Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 || 2.3 || Solving systems of linear equations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 || 3.1, 3.2, 3.3 || Norms, Inner Products, Lengths &amp;amp; Distances ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 || 3.4 || Angles &amp;amp; orthogonality ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 || 2.4, 2.5 || Vector spaces &amp;amp; Linear Independendence ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 || 2.6 || Basis &amp;amp; Rank ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 || 2.7 || Linear Mappings ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 || 4.1 || Determinant and Traces ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 || 4.2 || Eigenvalues &amp;amp; Eigenvectors ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 || 4.3, 4.4 || Matrix Factorization ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 || 3.5 || Orthonormal Basis ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 || 3.7 || Inner Product of Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 15 || 3.9 || Rotations ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 16 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 17 || 5.1 || Vector Calculus ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 18 || 5.1 || Taylor Series ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 5.1 || Differentiation Rules Review ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 20 || 5.2 || Partial Derivatives ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 21 || 5.2 || Gradients - Examples, visualizations, computaiton ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 22 || 5.2 || Rules for Partial Differentiation &amp;amp; Chain Rule ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 23 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 24 || 5.3 || Gradients of Vector-Valued Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 25 || 5.3 || Gradients of Vector-Valued Functions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 26 || 5.4, Dhrymes 78 || Gradients of Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 27 || 5.5, Dhrymes 78 || Useful Identities for Computing Gradients ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 28 || 5.7 || Higher-Order Derivatives ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 29 || Notes || Minimization via Newton's Method &amp;amp; Backpropagation ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 30 || Min-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 31 || 5.8 || Linearization &amp;amp; Multivariate Taylor Series ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 32 || Notes || Linear optimization: Simplex method ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 33 || 7.1 || Optimization Using Gradient Descent ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 34 || 7.2 || Constrained Optimization and Lagrange Multipliers ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 35 || 7.3 || Convex Optimization ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 36 || Mini-Test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 37 || Bishop, Duda et al. || Feed-forward Artificial Neural Networks ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 38 || Bishop, Duda et al. || Backpropagation in ANNs ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 39 || Bishop, Duda et al. || Activation Functions: Linear &amp;amp; Nonlinear ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 40 || Bishop, Duda et al. || Step-by-step simple ANN ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 41 || Bishop, Duda et al. || Measures of performance ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 42 || Bishop, Duda et al. || More complex architectures of ANNs ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 43 || Mini-test ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 44 || Final project ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 45 || Review ||  ||  || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5283</id>
		<title>MAT1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5283"/>
		<updated>2025-01-21T15:45:12Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/calculus-volume-1 Calculus (Volume 1) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Topics List - Table==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[The Limit of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function]]  including the [[Absolute Value Functions| Absolute Value]] , [[Rational Functions|Rational]] , and [[Piecewise Functions|Piecewise]] functions &lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Describe the limit of a function using correct notation.&lt;br /&gt;
*Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Define one-sided limits and provide examples.&lt;br /&gt;
*Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
*Describe an infinite limit using correct notation.&lt;br /&gt;
*Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1/2    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Factoring Polynomials]] &lt;br /&gt;
*[[Simplifying Radicals|Identifying conjugate radical expressions]] &lt;br /&gt;
*[[Rational Expression|Simplifying rational expressions]] &lt;br /&gt;
*[[Domain of a Function|Evaluating piecewise functions]] &lt;br /&gt;
*[[Trigonometric Functions|The trigonometric functions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Recognize the basic limit laws.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
*Evaluate the limit of a function by factoring.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
*Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
*Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
*Evaluate left, right, and two sided limits of piecewise defined functions.&lt;br /&gt;
*Evaluate limits of the form K/0, K≠0.&lt;br /&gt;
*Establish  and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2/3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Continuity]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
* [[Interval Notation|Interval Notation]] &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Continuity at a point. &lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Limits at Infinity and Asymptotes]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3/4   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Defining the Derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]] &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]] &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]] &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]] &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]] &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4/5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]] &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Function evaluation at a value]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]] &lt;br /&gt;
* '''[[Understanding of Velocity and Acceleration]]''' &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]] &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]&lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]&lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.6&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[Inverse Functions]] &amp;lt;!-- 1073-7 --&amp;gt;&lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6/7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Implicit and explicit equations]]''' &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]] &lt;br /&gt;
* [[Functions|Function evaluation]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, find the derivative of y with respect to x.&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, and given an equation relating y to x, find the derivative of y with respect to x.&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]] &amp;lt;&lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7/8   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas for area, volume, etc''' &lt;br /&gt;
* '''Similar triangles to form proportions''' &lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8     &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Mathematical Error| Definition of Error in mathematics]] &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]] &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8/9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]] &lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* &lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find c in the conclusion of the MVT (if algebraically feasible)&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas pertaining to area and volume''' &lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Rational Functions| Re-expressing Rational Functions ]] &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[Differentiation Rule]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11/12    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &lt;br /&gt;
* '''[[Area of a rectangle]]''' &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Toolkit Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.2&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Definite Integral]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[The Limit of a Function|Limits of Riemann Sums]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the definition of the definite integral.&lt;br /&gt;
* Explain the terms integrand, limits of integration, and variable of integration.&lt;br /&gt;
* Explain when a function is integrable.&lt;br /&gt;
* Rules for the Definite Integral.&lt;br /&gt;
* Describe the relationship between the definite integral and net area.&lt;br /&gt;
* Use geometry and the properties of definite integrals to evaluate them.&lt;br /&gt;
* Calculate the average value of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week 12/13   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Fundamental Theorem of Calculus]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[Mean Value Theorem]] &lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Describe the meaning of the Mean Value Theorem for Integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 1.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 1, to evaluate derivatives of integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 2.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 2, to evaluate definite integrals.&lt;br /&gt;
* Explain the relationship between differentiation and integration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.4&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration Formulas and the Net Change Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Antiderivatives|Indefinite integrals]]  &lt;br /&gt;
* [[The Fundamental Theorem of Calculus|The Fundamental Theorem (part 2)]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Apply the basic integration formulas.&lt;br /&gt;
* Explain the significance of the net change theorem.&lt;br /&gt;
* Use the net change theorem to solve applied problems.&lt;br /&gt;
* Apply the integrals of odd and even functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.5&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Definite Integral|Solving Basic Integrals]] &lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.6&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integrals Involving Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Exponential Functions]] &lt;br /&gt;
* [[Logarithmic Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions involving exponential functions.&lt;br /&gt;
* Integrate functions involving logarithmic functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integrals Resulting in Inverse Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The inverse sine, cosine and tangent functions|Trigonometric functions and their inverses]] &lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[The Definite Integral|Rules for Integration]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions resulting in inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Topics List - Narrative==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Limit of a Function]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluation of a function]] including the [[Absolute Value Functions|Absolute Value]], [[Rational Functions|Rational]], and [[Piecewise Functions|Piecewise]] functions  &lt;br /&gt;
* [[Functions|Domain and Range of a Function]]&lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Describe the limit of a function using correct notation.&lt;br /&gt;
* Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
* Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
* Define one-sided limits and provide examples.&lt;br /&gt;
* Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
* Describe an infinite limit using correct notation.&lt;br /&gt;
* Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
===Week 1/2===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Limit Laws]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Factoring Polynomials]]  &lt;br /&gt;
* [[Simplifying Radicals|Identifying conjugate radical expressions]]  &lt;br /&gt;
* [[Rational Expression|Simplifying rational expressions]]  &lt;br /&gt;
* [[Domain of a Function|Evaluating piecewise functions]]  &lt;br /&gt;
* [[Trigonometric Functions|The trigonometric functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Recognize the basic limit laws.&lt;br /&gt;
* Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
* Evaluate the limit of a function by factoring.&lt;br /&gt;
* Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
* Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
* Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
* Evaluate left, right, and two-sided limits of piecewise defined functions.&lt;br /&gt;
* Evaluate limits of the form \( K/0, K \neq 0 \).&lt;br /&gt;
* Establish \( \lim_{x \to 0} \frac{\sin x}{x} = 1 \) and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
===Week 2/3===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Continuity]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Domain and Range of a Function]]  &lt;br /&gt;
* [[Interval Notation|Interval Notation]]  &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Continuity at a point.&lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Limits at Infinity and Asymptotes]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
===Week 3/4===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Defining the Derivative]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]]  &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]]  &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Derivative as a Function]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]]  &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]]  &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]]  &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
===Week 4/5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]]  &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Function evaluation at a value]]  &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]]  &lt;br /&gt;
* [[Understanding of Velocity and Acceleration]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]]  &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]  &lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]  &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.6&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Composition of Functions]]  &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]]  &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[One-to-one functions|Injective Functions]]  &lt;br /&gt;
* [[Inverse Functions]]  &lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
===Week 6/7===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Implicit and explicit equations]]  &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]]  &lt;br /&gt;
* [[Functions|Function evaluation]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Assuming \( y \) is implicitly a function of \( x \), find the derivative of \( y \) with respect to \( x \).&lt;br /&gt;
* Assuming \( y \) is implicitly a function of \( x \), and given an equation relating \( y \) to \( x \), find the derivative of \( y \) with respect to \( x \).&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]]  &lt;br /&gt;
* [[The Limit of a Function]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
* [[Implicit Differentiation]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
===Week 7/8===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* Formulas for area, volume, etc.  &lt;br /&gt;
* Similar triangles to form proportions  &lt;br /&gt;
* [[Trigonometric Functions]]  &lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[Implicit Differentiation]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Mathematical Error|Definition of Error in mathematics]]  &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]]  &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization.&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error.&lt;br /&gt;
&lt;br /&gt;
===Week 8/9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]]  &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]]  &lt;br /&gt;
* [[Interval Notation|Interval notation]]  &lt;br /&gt;
* [[Trigonometric Equations]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find \( c \) in the conclusion of the MVT (if algebraically feasible).&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd).&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]]  &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type.&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection.&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* Formulas pertaining to area and volume  &lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Trigonometric Equations]]  &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Rational Functions|Re-expressing Rational Functions]]  &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Inverse Functions]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
* [[Differentiation Rule]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
===Week 11/12===&lt;br /&gt;
====Sections====&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Sigma notation]]  &lt;br /&gt;
* [[Area of a rectangle]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
* [[Toolkit Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5282</id>
		<title>MAT1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5282"/>
		<updated>2025-01-21T15:42:27Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/calculus-volume-1 Calculus (Volume 1) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Topics List - Narrative==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Limit of a Function]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluation of a function]] including the [[Absolute Value Functions|Absolute Value]], [[Rational Functions|Rational]], and [[Piecewise Functions|Piecewise]] functions  &lt;br /&gt;
* [[Functions|Domain and Range of a Function]]&lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Describe the limit of a function using correct notation.&lt;br /&gt;
* Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
* Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
* Define one-sided limits and provide examples.&lt;br /&gt;
* Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
* Describe an infinite limit using correct notation.&lt;br /&gt;
* Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
===Week 1/2===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Limit Laws]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Factoring Polynomials]]  &lt;br /&gt;
* [[Simplifying Radicals|Identifying conjugate radical expressions]]  &lt;br /&gt;
* [[Rational Expression|Simplifying rational expressions]]  &lt;br /&gt;
* [[Domain of a Function|Evaluating piecewise functions]]  &lt;br /&gt;
* [[Trigonometric Functions|The trigonometric functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Recognize the basic limit laws.&lt;br /&gt;
* Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
* Evaluate the limit of a function by factoring.&lt;br /&gt;
* Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
* Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
* Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
* Evaluate left, right, and two-sided limits of piecewise defined functions.&lt;br /&gt;
* Evaluate limits of the form \( K/0, K \neq 0 \).&lt;br /&gt;
* Establish \( \lim_{x \to 0} \frac{\sin x}{x} = 1 \) and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
===Week 2/3===&lt;br /&gt;
====Sections====&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Continuity]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Domain and Range of a Function]]  &lt;br /&gt;
* [[Interval Notation|Interval Notation]]  &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Continuity at a point.&lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Limits at Infinity and Asymptotes]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
===Week 3/4===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Defining the Derivative]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]]  &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]]  &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[The Derivative as a Function]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]]  &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]]  &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]]  &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
===Week 4/5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]]  &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]]  &lt;br /&gt;
* [[The Limit Laws]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Function evaluation at a value]]  &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]]  &lt;br /&gt;
* [[Understanding of Velocity and Acceleration]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]]  &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]  &lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]  &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.6&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Composition of Functions]]  &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]]  &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[One-to-one functions|Injective Functions]]  &lt;br /&gt;
* [[Inverse Functions]]  &lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
===Week 6/7===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Implicit and explicit equations]]  &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]]  &lt;br /&gt;
* [[Functions|Function evaluation]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Assuming \( y \) is implicitly a function of \( x \), find the derivative of \( y \) with respect to \( x \).&lt;br /&gt;
* Assuming \( y \) is implicitly a function of \( x \), and given an equation relating \( y \) to \( x \), find the derivative of \( y \) with respect to \( x \).&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
====Sections====&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]]  &lt;br /&gt;
* [[The Limit of a Function]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[The Chain Rule]]  &lt;br /&gt;
* [[Implicit Differentiation]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
===Week 7/8===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* Formulas for area, volume, etc.  &lt;br /&gt;
* Similar triangles to form proportions  &lt;br /&gt;
* [[Trigonometric Functions]]  &lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[Implicit Differentiation]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Mathematical Error|Definition of Error in mathematics]]  &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]]  &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization.&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error.&lt;br /&gt;
&lt;br /&gt;
===Week 8/9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]]  &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]]  &lt;br /&gt;
* [[Interval Notation|Interval notation]]  &lt;br /&gt;
* [[Trigonometric Equations]]  &lt;br /&gt;
* [[Differentiation Rules]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find \( c \) in the conclusion of the MVT (if algebraically feasible).&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd).&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]]  &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type.&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection.&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* Formulas pertaining to area and volume  &lt;br /&gt;
* [[Functions|Evaluating Functions]]  &lt;br /&gt;
* [[Trigonometric Equations]]  &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Rational Functions|Re-expressing Rational Functions]]  &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
====Sections====&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Inverse Functions]]  &lt;br /&gt;
* [[The Derivative as a Function]]  &lt;br /&gt;
* [[Differentiation Rule]]  &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
===Week 11/12===&lt;br /&gt;
====Sections====&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
====Topics====&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
====Prerequisite Skills====&lt;br /&gt;
* [[Sigma notation]]  &lt;br /&gt;
* [[Area of a rectangle]]  &lt;br /&gt;
* [[Continuity]]  &lt;br /&gt;
* [[Toolkit Functions]]  &lt;br /&gt;
&lt;br /&gt;
====Student Learning Outcomes====&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Topics List - Table==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[The Limit of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function]]  including the [[Absolute Value Functions| Absolute Value]] , [[Rational Functions|Rational]] , and [[Piecewise Functions|Piecewise]] functions &lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Describe the limit of a function using correct notation.&lt;br /&gt;
*Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Define one-sided limits and provide examples.&lt;br /&gt;
*Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
*Describe an infinite limit using correct notation.&lt;br /&gt;
*Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1/2    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Factoring Polynomials]] &lt;br /&gt;
*[[Simplifying Radicals|Identifying conjugate radical expressions]] &lt;br /&gt;
*[[Rational Expression|Simplifying rational expressions]] &lt;br /&gt;
*[[Domain of a Function|Evaluating piecewise functions]] &lt;br /&gt;
*[[Trigonometric Functions|The trigonometric functions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Recognize the basic limit laws.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
*Evaluate the limit of a function by factoring.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
*Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
*Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
*Evaluate left, right, and two sided limits of piecewise defined functions.&lt;br /&gt;
*Evaluate limits of the form K/0, K≠0.&lt;br /&gt;
*Establish  and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2/3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Continuity]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
* [[Interval Notation|Interval Notation]] &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Continuity at a point. &lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Limits at Infinity and Asymptotes]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3/4   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Defining the Derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]] &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]] &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]] &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]] &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]] &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4/5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]] &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Function evaluation at a value]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]] &lt;br /&gt;
* '''[[Understanding of Velocity and Acceleration]]''' &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]] &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]&lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]&lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.6&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[Inverse Functions]] &amp;lt;!-- 1073-7 --&amp;gt;&lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6/7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Implicit and explicit equations]]''' &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]] &lt;br /&gt;
* [[Functions|Function evaluation]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, find the derivative of y with respect to x.&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, and given an equation relating y to x, find the derivative of y with respect to x.&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]] &amp;lt;&lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7/8   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas for area, volume, etc''' &lt;br /&gt;
* '''Similar triangles to form proportions''' &lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8     &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Mathematical Error| Definition of Error in mathematics]] &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]] &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8/9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]] &lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* &lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find c in the conclusion of the MVT (if algebraically feasible)&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas pertaining to area and volume''' &lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Rational Functions| Re-expressing Rational Functions ]] &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[Differentiation Rule]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11/12    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &lt;br /&gt;
* '''[[Area of a rectangle]]''' &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Toolkit Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.2&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Definite Integral]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[The Limit of a Function|Limits of Riemann Sums]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the definition of the definite integral.&lt;br /&gt;
* Explain the terms integrand, limits of integration, and variable of integration.&lt;br /&gt;
* Explain when a function is integrable.&lt;br /&gt;
* Rules for the Definite Integral.&lt;br /&gt;
* Describe the relationship between the definite integral and net area.&lt;br /&gt;
* Use geometry and the properties of definite integrals to evaluate them.&lt;br /&gt;
* Calculate the average value of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week 12/13   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Fundamental Theorem of Calculus]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[Mean Value Theorem]] &lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Describe the meaning of the Mean Value Theorem for Integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 1.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 1, to evaluate derivatives of integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 2.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 2, to evaluate definite integrals.&lt;br /&gt;
* Explain the relationship between differentiation and integration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.4&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration Formulas and the Net Change Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Antiderivatives|Indefinite integrals]]  &lt;br /&gt;
* [[The Fundamental Theorem of Calculus|The Fundamental Theorem (part 2)]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Apply the basic integration formulas.&lt;br /&gt;
* Explain the significance of the net change theorem.&lt;br /&gt;
* Use the net change theorem to solve applied problems.&lt;br /&gt;
* Apply the integrals of odd and even functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.5&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Definite Integral|Solving Basic Integrals]] &lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.6&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integrals Involving Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Exponential Functions]] &lt;br /&gt;
* [[Logarithmic Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions involving exponential functions.&lt;br /&gt;
* Integrate functions involving logarithmic functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integrals Resulting in Inverse Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The inverse sine, cosine and tangent functions|Trigonometric functions and their inverses]] &lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[The Definite Integral|Rules for Integration]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions resulting in inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5281</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5281"/>
		<updated>2025-01-21T15:19:14Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Undergraduate Studies */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Sociocultural Foundations of Mathematics, Data Science, and Computing&lt;br /&gt;
* [[MAT2253]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Foundations of Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MDC5153]] Mathematical Foundations of Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3203]] Abstract Linear Algebra&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Abstract Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4323]] Applied Graph Theory&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I&lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II&lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5265</id>
		<title>MDC5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5265"/>
		<updated>2023-06-30T17:17:03Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Mathematical Foundations of Data Analytics MDC4153/MDC5153 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Mathematical Foundations of Data Analytics MDC4153/MDC5153 ==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2253]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': Data Analytics refers to classic data analysis plus all other areas that support it. This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.   &lt;br /&gt;
&lt;br /&gt;
This course uses generative AI tools to aid in data analysis. Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5232</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5232"/>
		<updated>2023-06-12T16:54:09Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Changed from content to redirection to MDC5153&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT[[MDC5153]]&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5231</id>
		<title>MDC5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5231"/>
		<updated>2023-06-12T16:53:13Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Added content in this page instead of directing.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Mathematical Foundations of Data Analytics MDC4153/MDC5153 ==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': Data Analytics refers to classic data analysis plus all other areas that support it. This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.   &lt;br /&gt;
&lt;br /&gt;
This course uses generative AI tools to aid in data analysis. Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5230</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5230"/>
		<updated>2023-06-12T16:51:02Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Upper Division */  Corrected course code MDC for Mathematical Foundations of Data Analytics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Sociocultural Foundations of Mathematics, Data Science, and Computing&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2253]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Foundations of Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MDC5153]] Mathematical Foundations of Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3203]] Abstract Linear Algebra&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Abstract Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4323]] Applied Graph Theory&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I&lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II&lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1073&amp;diff=5229</id>
		<title>MAT1073</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1073&amp;diff=5229"/>
		<updated>2023-06-12T16:49:12Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Added title level 1 with course name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= College Algebra for Scientists and Engineers - MAT 1073 =&lt;br /&gt;
&lt;br /&gt;
==Course Catalog==&lt;br /&gt;
[https://catalog.utsa.edu/search/?P=MAT%201073 MAT 1073. Algebra for Scientists and Engineers]. (1-4) 3 Credit Hours. (TCCN = MATH 1314). &lt;br /&gt;
&lt;br /&gt;
Prerequisite: Satisfactory performance on a placement examination. This course is designed to prepare the student for [[MAT1093]] Precalculus and [[MAT1214]] Calculus I. Topics may include algebraic expressions; equations; inequalities over the real numbers; relations; functions; polynomial and rational functions; logarithmic and exponential functions; systems of linear equations and inequalities; matrices and determinants; complex numbers; sequences; series binomial expansion; mathematical induction; permutations, and combinations. (Formerly MTC 1073. Credit can be earned for only one of the following: MAT 1073, MTC 1073, [[MAT1063]], MTC 1023, or [[MAT1023]]. NOTE: For the purpose of the Three-Attempt Rule, these courses are considered to be equivalent and additional fees may be charged for the third or subsequent attempt to take any of these courses in any combination.) May apply toward the Core Curriculum requirement in Mathematics. Generally offered: Fall, Spring, Summer. Course Fees: LRC1 $12; LRS1 $45; STSI $21.&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Week !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-                &lt;br /&gt;
|Week 1&lt;br /&gt;
||&lt;br /&gt;
Fundamentals &lt;br /&gt;
||&lt;br /&gt;
* [[Algebraic Properties]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to correctly identify the algebraic properties:&lt;br /&gt;
* Additive &amp;amp; Multiplicative identity&lt;br /&gt;
* Additive &amp;amp; Multiplicative inverse&lt;br /&gt;
* Commutative property&lt;br /&gt;
* Associative property&lt;br /&gt;
* Distributive property&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Students will be able to correctly explain the algebraic properties of numbers and correctly apply these properties in procedural explanations of:&lt;br /&gt;
* Solving mathematical equations&lt;br /&gt;
* Simplifying/evaluating mathematical expressions&lt;br /&gt;
|-&lt;br /&gt;
|Week 2&lt;br /&gt;
||&lt;br /&gt;
Fundamentals&lt;br /&gt;
||&lt;br /&gt;
* [[Fractions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills&lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to add, subtract fractions:&lt;br /&gt;
* Determine common denominators and equivalent fractions&lt;br /&gt;
* Work with proper and improper fractions&lt;br /&gt;
* Simplify to lowest terms&lt;br /&gt;
&lt;br /&gt;
Students will be able to multiply, and divide fractions:&lt;br /&gt;
* Work with proper and improper fractions&lt;br /&gt;
* Simplify to lowest terms&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 2&lt;br /&gt;
||&lt;br /&gt;
Fundamentals&lt;br /&gt;
||&lt;br /&gt;
* [[Factoring]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills &lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Identify factored vs non-factored forms of a polynomial&lt;br /&gt;
* Successfully factor binomials &amp;amp; trinomials and difference of squares into two binomial terms&lt;br /&gt;
* Factor out GCF&lt;br /&gt;
* Multiply and / or distribute to check their factors are correct&lt;br /&gt;
* Differentiate between factors and terms of a polynomial expression &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 3&lt;br /&gt;
||&lt;br /&gt;
Module 1.1&lt;br /&gt;
||&lt;br /&gt;
* [[Linear Equations]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills &lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
* Understanding of the Cartesian coordinate system&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Solving linear equations in one variable&lt;br /&gt;
* Determine a linear equation&lt;br /&gt;
* Write and interpret a linear equation&lt;br /&gt;
* Graph a linear equation&lt;br /&gt;
|-&lt;br /&gt;
|Week 3&lt;br /&gt;
||&lt;br /&gt;
Module 1.2&lt;br /&gt;
||&lt;br /&gt;
* [[Systems of Equations in Two Variables]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills &lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
* Basic understanding of [[Linear Equations]] (Module 1.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Solve systems of equations by graphing.&lt;br /&gt;
* Solve systems of equations by substitution.&lt;br /&gt;
* Solve systems of equations by elimination&lt;br /&gt;
* Identify inconsistent systems of equations containing two variables.&lt;br /&gt;
* Express the solution of a system of dependent equations containing two variables.&lt;br /&gt;
|-&lt;br /&gt;
|Week 4&lt;br /&gt;
||&lt;br /&gt;
Module 2.1&lt;br /&gt;
||&lt;br /&gt;
* [[Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Linear Equations]] (Module 0.4)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Determine whether a relation represents a function.&lt;br /&gt;
|-&lt;br /&gt;
|Week 4&lt;br /&gt;
||&lt;br /&gt;
Module 2.2&lt;br /&gt;
||&lt;br /&gt;
* [[Function Notation]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Functions]] (Module 2.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Find the value of a [[Functions]]&lt;br /&gt;
* Graph the functions listed in the library of functions.&lt;br /&gt;
* Determine whether a function is one-to-one.&lt;br /&gt;
* Use the vertical line test to identify functions.&lt;br /&gt;
|-&lt;br /&gt;
|Week 4&lt;br /&gt;
||&lt;br /&gt;
Module 2.2&lt;br /&gt;
||&lt;br /&gt;
* [[Domain of a Function]]&lt;br /&gt;
||&lt;br /&gt;
* An understanding of [[Function Notation]]&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Find the domain of a function defined by an equation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 4&lt;br /&gt;
||&lt;br /&gt;
Module 2.2&lt;br /&gt;
||&lt;br /&gt;
* [[Range of a Function]]&lt;br /&gt;
||&lt;br /&gt;
* An understanding of [[Function Notation]]&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Find the range of a function defined by an equation.&lt;br /&gt;
|-&lt;br /&gt;
|Week 4&lt;br /&gt;
||&lt;br /&gt;
Module 2.2&lt;br /&gt;
||&lt;br /&gt;
* [[Toolkit Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Functions]] (Module 2.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Identify the basic toolkit functions&lt;br /&gt;
* Determine [[Domain of a Function|Domain]] and [[Range of a Function| Range]] for the basic toolkit functions (Module 2.2)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 5&lt;br /&gt;
||&lt;br /&gt;
Module 3.1&lt;br /&gt;
||&lt;br /&gt;
* [[Composition of Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Functions]] (Module 2.1)&lt;br /&gt;
* Basic understanding of [[Function Notation]] (Module 2.2)&lt;br /&gt;
* Basic understanding of [[Domain of a Function|Domain]] and [[Range of a Function| Range]] (Module 2.2)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Combine functions using [[Algebraic Properties]]&lt;br /&gt;
* Create a new function by composition of functions&lt;br /&gt;
* Evaluate composite functions&lt;br /&gt;
* Find the domain of a composite function&lt;br /&gt;
* Decompose a composite function into its component functions&lt;br /&gt;
|-&lt;br /&gt;
|Week 5&lt;br /&gt;
||&lt;br /&gt;
Module 3.2&lt;br /&gt;
||&lt;br /&gt;
* [[Inverse Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Functions]] (Module 2.1)&lt;br /&gt;
* Basic understanding of [[Function Notation]] (Module 2.2)&lt;br /&gt;
* Basic understanding of [[Domain of a Function|Domain]] and [[Range of a Function| Range]] (Module 2.2)&lt;br /&gt;
* Basic understanding of [[Composition of Functions]] (Module 3.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be to able to:&lt;br /&gt;
* Verify inverse functions using [[Algebraic Properties]]&lt;br /&gt;
* Determine the domain and range of an inverse function, and restrict the domain of a function to make it one-to-one&lt;br /&gt;
* Find or evaluate the inverse of a function&lt;br /&gt;
* Use the graph of a one-to-one function to graph its inverse function on the same axes&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 6&lt;br /&gt;
||&lt;br /&gt;
Module 4.1&lt;br /&gt;
||&lt;br /&gt;
* [[Exponential Properties]]&lt;br /&gt;
||&lt;br /&gt;
* Basic mathematical symbols and terminology&lt;br /&gt;
* Basic arithmetic skills&lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Use the product rule for exponents.&lt;br /&gt;
* Use the quotient rule for exponents.&lt;br /&gt;
* Use the power rule for exponents.&lt;br /&gt;
|-&lt;br /&gt;
|Week 6&lt;br /&gt;
||&lt;br /&gt;
Module 4.2&lt;br /&gt;
||&lt;br /&gt;
* [[Exponential Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Understanding the [[Domain of a Function|Domain]] and [[Range of a Function| Range]] of the [[Toolkit Functions]] for exponential functions (Module 2.2)&lt;br /&gt;
* Basic understanding of [[Exponential Properties]] (Module 4.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Determine the difference between [[Linear Equations|Linear]] and Exponential Functions (Module 1.1)&lt;br /&gt;
* Evaluate exponential functions.&lt;br /&gt;
* Find the equation of an exponential function.&lt;br /&gt;
* Evaluate exponential functions with base e.&lt;br /&gt;
* Evaluate exponential functions with base 10.&lt;br /&gt;
* Graph exponential functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 7&lt;br /&gt;
||&lt;br /&gt;
Module 5.1&lt;br /&gt;
||&lt;br /&gt;
* [[Logarithmic Properties]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Exponential Properties]] (Module 4.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be to able:&lt;br /&gt;
* Rewriting from exponential form to logarithmic form and vice versa &lt;br /&gt;
:-y=b^x\equiv\log_b(y)=x&lt;br /&gt;
* Use the product rule for logarithms.&lt;br /&gt;
* Use the quotient rule for logarithms.&lt;br /&gt;
* Use the power rule for logarithms.&lt;br /&gt;
* Expand logarithmic expressions.&lt;br /&gt;
* Condense logarithmic expressions.&lt;br /&gt;
* Use the change-of-base formula for logarithms.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 7&lt;br /&gt;
||&lt;br /&gt;
Module 5.2&lt;br /&gt;
||&lt;br /&gt;
* [[Logarithmic Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Inverse Functions]] (Module 3.2)&lt;br /&gt;
* Understanding the [[Domain of a Function|Domain]] and [[Range of a Function| Range]] of [[Toolkit Functions]] for logarithmic functions. (Module 2.2)&lt;br /&gt;
* Basic understanding of [[Exponential Properties]] (Module 4.1)&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Evaluate logarithms.&lt;br /&gt;
* Use common logarithms.&lt;br /&gt;
* Use natural logarithms.&lt;br /&gt;
* Graph logarithmic functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 8&lt;br /&gt;
||&lt;br /&gt;
Module 6.2&lt;br /&gt;
||&lt;br /&gt;
* [[Quadratic Equations]]&lt;br /&gt;
||&lt;br /&gt;
* Basic arithmetic skills&lt;br /&gt;
* Basic understanding of [[Algebraic Properties]]&lt;br /&gt;
* Basic understanding of [[Factoring]]&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Determine complex number solutions&lt;br /&gt;
* Determine solutions of quadratic equations using factoring techniques&lt;br /&gt;
* Determine solutions of quadratic equations using Quadratic Formula&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 8&lt;br /&gt;
||&lt;br /&gt;
Module 6.2&lt;br /&gt;
||&lt;br /&gt;
* [[Quadratic Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Quadratic Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Basic understanding of a polynomial expression.&lt;br /&gt;
* Recognize characteristics of parabolas&lt;br /&gt;
* Understand how the graph of a parabola is related to its quadratic function&lt;br /&gt;
* Determine a quadratic function's minimum or maximum value&lt;br /&gt;
* Solve problems involving a quadratic function's minimum or maximum value&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 9&lt;br /&gt;
||&lt;br /&gt;
Module 7.1&lt;br /&gt;
||&lt;br /&gt;
* [[Dividing Polynomials]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of  [[Fractions]] (Fundamentals)&lt;br /&gt;
* Basic understanding of [[Factoring]] (Fundamentals)&lt;br /&gt;
* The student recalls the graphs and equations of [[Toolkit Functions]], and their associated [[Domain of a Function|Domain]] and [[Range of a Function| Range]] (Module  2.2)&lt;br /&gt;
* Basic understanding of [[Quadratic Functions]] (Module 6.2)&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Identify polynomial functions.&lt;br /&gt;
* Identify the degree and leading coefficients of polynomial functions.&lt;br /&gt;
* Use long division to divide polynomials&lt;br /&gt;
* Use synthetic division to divide polynomials&lt;br /&gt;
|-&lt;br /&gt;
|Week 9&lt;br /&gt;
||&lt;br /&gt;
Module 7.2&lt;br /&gt;
||&lt;br /&gt;
* [[Factoring Polynomials|Zeros of Polynomials]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of  [[Fractions]] (Fundamentals)&lt;br /&gt;
* Basic understanding of [[Functions]] (Module 2.1)&lt;br /&gt;
* Basic understanding of [[Dividing Polynomials]] (Module 7.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Evaluate a polynomial using the Remainder Theorem&lt;br /&gt;
* Use the Factor Theorem to solve a polynomial equation&lt;br /&gt;
* Use the Rational Zero Theorem to find rational zeros&lt;br /&gt;
* Find zeros of a polynomial function&lt;br /&gt;
* Solve real-world applications of polynomial equations&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 10&lt;br /&gt;
||&lt;br /&gt;
Module 8.1&lt;br /&gt;
||&lt;br /&gt;
* [[Power and Polynomial Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Factoring]] (Fundamentals)&lt;br /&gt;
* Basic understanding of [[Quadratic Functions]] (Module 6.2)&lt;br /&gt;
* Basic understanding of [[Dividing Polynomials]] (Module 7.1)&lt;br /&gt;
* Basic understanding of [[Factoring Polynomials|Zeros of Polynomials]] (Module 7.2)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Find the average rate of change of a function.&lt;br /&gt;
* Use a graph to determine where a function is increasing, decreasing, or constant.&lt;br /&gt;
* Use a graph to locate local maxima and local minima.&lt;br /&gt;
* Use a graph to locate the absolute maximum and absolute minimum.&lt;br /&gt;
* Identify end behavior of power functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 10&lt;br /&gt;
||&lt;br /&gt;
Module 8.2&lt;br /&gt;
||&lt;br /&gt;
* [[Graphs of Polynomials]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Dividing Polynomials]] (Module 7.1)&lt;br /&gt;
* Basic understanding of [[Factoring Polynomials|Zeros of Polynomials]] (Module 7.2)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Recognize characteristics of graphs of polynomial functions&lt;br /&gt;
* Use [[Factoring]] to find zeros of polynomial functions&lt;br /&gt;
* Identify zeros and their multiplicities&lt;br /&gt;
* Determine end behavior of polynomial functions&lt;br /&gt;
* Understand the relationship between degree and turning points&lt;br /&gt;
* Graph polynomial functions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 11&lt;br /&gt;
||&lt;br /&gt;
Module 9.1&lt;br /&gt;
||&lt;br /&gt;
* [[Rational Expressions]]&lt;br /&gt;
||&lt;br /&gt;
* The student understands that zero in the denominator of a fraction is undefined.&lt;br /&gt;
* Basic understanding of  [[Fractions]] (Fundamentals)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to:&lt;br /&gt;
* Simplify rational expressions.&lt;br /&gt;
* Multiply rational expressions.&lt;br /&gt;
* Divide rational expressions.&lt;br /&gt;
* Add and subtract rational expressions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 11&lt;br /&gt;
||&lt;br /&gt;
Module 9.2&lt;br /&gt;
||&lt;br /&gt;
* [[Graphs of Rational Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Basic understanding of [[Rational Expressions]] (Module 9.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Identify and graph vertical asymptotes&lt;br /&gt;
* Identify and graph horizontal asymptotes&lt;br /&gt;
* Determine behavior of rational functions around vertical asymptotes&lt;br /&gt;
* Find the domains of rational functions&lt;br /&gt;
* Graph rational functions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 12&lt;br /&gt;
||&lt;br /&gt;
Module 10.1&lt;br /&gt;
||&lt;br /&gt;
* [[Single Transformations of Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Understanding of [[Function Notation]] (Module 2.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Graph functions using vertical and horizontal shifts&lt;br /&gt;
* Graph functions using reflections about the x-axis and the y-axis&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Week 12&lt;br /&gt;
||&lt;br /&gt;
Module 10.2&lt;br /&gt;
||&lt;br /&gt;
* [[Multiple Transformations of Functions]]&lt;br /&gt;
||&lt;br /&gt;
* Understanding of [[Single Transformations of Functions]] (Module 10.1)&lt;br /&gt;
||&lt;br /&gt;
Students will be able to: &lt;br /&gt;
* Determine whether a function is even, odd, or neither&lt;br /&gt;
* Graph functions using compressions and stretches&lt;br /&gt;
* Combine transformations&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5228</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5228"/>
		<updated>2023-06-07T15:20:12Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mathematical Foundations of Data Analytics MDC4153/MAT5153 ==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': Data Analytics refers to classic data analysis plus all other areas that support it. This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.   &lt;br /&gt;
&lt;br /&gt;
This course uses generative AI tools to aid in data analysis. Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5227</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5227"/>
		<updated>2023-05-16T16:01:25Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Lower Division */  Updated tittle for MDC1213&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Sociocultural Foundations of Mathematics, Data Science, and Computing&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2253]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Foundations of Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MAT5153]] Mathematical Foundations of Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3203]] Abstract Linear Algebra&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Abstract Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4323]] Applied Graph Theory&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I&lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II&lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5226</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5226"/>
		<updated>2023-05-16T15:58:58Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Added reference to generative AI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mathematical Foundations of Data Analytics MDC4153/MAT5153 ==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': Data Analytics refers to classic data analysis plus all other areas that support it. This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks. This course uses generative AI tools to aid in data analysis.  &lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5225</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5225"/>
		<updated>2023-05-16T15:18:14Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Updated title and description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mathematical Foundations of Data Analytics MDC4153/MAT5153 ==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': Data Analytics refers to classic data analysis plus all other areas that support it. This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5224</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5224"/>
		<updated>2023-05-16T13:54:16Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Upper Division */ Corrected code and title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Foundations of Mathematics, Data Science, and Artificial Intelligence in Cultural Context&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2253]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Foundations of Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MAT5153]] Mathematical Foundations of Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3203]] Abstract Linear Algebra&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Abstract Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4323]] Applied Graph Theory&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I&lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II&lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II   (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC1213&amp;diff=5221</id>
		<title>MDC1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC1213&amp;diff=5221"/>
		<updated>2023-04-26T21:22:54Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Changed title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Sociocultural Foundations of Mathematics, Data Science, and Computing- MDC1213==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': None.&lt;br /&gt;
&lt;br /&gt;
''Content'': This introductory survey course for freshmen aims to explore the connections between mathematics, data science, and artificial intelligence, with an emphasis on their roles in shaping and understanding human culture and experience. Students will be guided through a series of 30 lessons that delve into the ways these fields intersect with ideas, values, beliefs, and other cultural aspects, fostering aesthetic and intellectual creation. Throughout the course, students will have access to the GPT-4 language model to assist with content generation and idea exploration.&lt;br /&gt;
&lt;br /&gt;
This course is intended to be part of the core curriculum in the area “Language, Philosophy and Culture (040)” (3 semester credit hours). Courses in this category focus on how ideas, values, beliefs, and other aspects of culture express and affect human experience. This requirement involves the exploration of ideas that foster aesthetic and intellectual creation in order to understand the human condition across cultures.&lt;br /&gt;
&lt;br /&gt;
== Lesson Overview ==&lt;br /&gt;
&lt;br /&gt;
Through these lessons, students will gain a foundational understanding of the intersections between mathematics, data science, and artificial intelligence, as well as their impact on the human experience across cultures. By leveraging GPT-4 for content generation and idea exploration, students will develop the skills necessary to engage with these fields in a culturally sensitive and ethically responsible manner.&lt;br /&gt;
&lt;br /&gt;
# [[Introduction to Mathematics, Data Science, and Artificial Intelligence]]&lt;br /&gt;
# [[The Historical Evolution of Mathematics in Cultural Context]]&lt;br /&gt;
# [[How Data Science Has Shaped Society and Culture]]&lt;br /&gt;
# [[The Role of Artificial Intelligence in Understanding Human Behavior]]&lt;br /&gt;
# [[The Language of Mathematics: Symbols, Expressions, and Equations]]&lt;br /&gt;
# [[The Art of Problem Solving: Creativity in Mathematics]]&lt;br /&gt;
# [[Statistics and Probability: Interpreting Data and Predicting Outcomes]]&lt;br /&gt;
# [[Cultural Bias in Data Collection and Interpretation]]&lt;br /&gt;
# [[Machine Learning and Pattern Recognition in AI]]&lt;br /&gt;
# [[Ethical Considerations in Data Science and AI]]&lt;br /&gt;
# [[Mathematics and Art: Geometry, Proportion, and Symmetry]]&lt;br /&gt;
# [[The Golden Ratio and Fibonacci Sequence in Nature and Culture]]&lt;br /&gt;
# [[Information Theory: Quantifying Cultural Transmission]]&lt;br /&gt;
# [[Graph Theory and Social Network Analysis]]&lt;br /&gt;
# [[AI in Language and Communication: NLP and GPT-4]]&lt;br /&gt;
# [[The Impact of AI on Employment and the Future of Work]]&lt;br /&gt;
# [[Game Theory: Strategic Decision Making in Cultural Context]]&lt;br /&gt;
# [[Fractals, Chaos Theory, and Cultural Complexity]]&lt;br /&gt;
# [[Music, Mathematics, and AI: A Harmonious Intersection]]&lt;br /&gt;
# [[AI and Literature: Text Analysis, Generation, and Critique]]&lt;br /&gt;
# [[Mathematical Models in Economics and Social Sciences]]&lt;br /&gt;
# [[Big Data and Privacy: Balancing Utility and Ethics]]&lt;br /&gt;
# [[AI in Healthcare: Improving Outcomes and Reducing Disparities]]&lt;br /&gt;
# [[Climate Change, Sustainability, and Mathematical Modeling]]&lt;br /&gt;
# [[The Mathematics of Democracy: Voting Systems and Fair Representation]]&lt;br /&gt;
# [[Bias and Fairness in AI: Challenges and Solutions]]&lt;br /&gt;
# [[The Role of AI in Mental Health and Emotional Well-being]]&lt;br /&gt;
# [[AI and the Creative Arts: Exploring New Frontiers]]&lt;br /&gt;
# [[The Future of AI: Possibilities, Pitfalls, and Predictions]]&lt;br /&gt;
# [[Final Project: Applying Mathematics, Data Science, and AI to Cultural Analysis]]&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC1213&amp;diff=5220</id>
		<title>MDC1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC1213&amp;diff=5220"/>
		<updated>2023-04-26T18:56:32Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Foundations of Mathematics, Data Science, and Artificial Intelligence in Cultural Context - MDC1213==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': None.&lt;br /&gt;
&lt;br /&gt;
''Content'': This introductory survey course for freshmen aims to explore the connections between mathematics, data science, and artificial intelligence, with an emphasis on their roles in shaping and understanding human culture and experience. Students will be guided through a series of 30 lessons that delve into the ways these fields intersect with ideas, values, beliefs, and other cultural aspects, fostering aesthetic and intellectual creation. Throughout the course, students will have access to the GPT-4 language model to assist with content generation and idea exploration.&lt;br /&gt;
&lt;br /&gt;
This course is intended to be part of the core curriculum in the area “Language, Philosophy and Culture (040)” (3 semester credit hours). Courses in this category focus on how ideas, values, beliefs, and other aspects of culture express and affect human experience. This requirement involves the exploration of ideas that foster aesthetic and intellectual creation in order to understand the human condition across cultures.&lt;br /&gt;
&lt;br /&gt;
== Lesson Overview ==&lt;br /&gt;
&lt;br /&gt;
Through these lessons, students will gain a foundational understanding of the intersections between mathematics, data science, and artificial intelligence, as well as their impact on the human experience across cultures. By leveraging GPT-4 for content generation and idea exploration, students will develop the skills necessary to engage with these fields in a culturally sensitive and ethically responsible manner.&lt;br /&gt;
&lt;br /&gt;
# [[Introduction to Mathematics, Data Science, and Artificial Intelligence]]&lt;br /&gt;
# [[The Historical Evolution of Mathematics in Cultural Context]]&lt;br /&gt;
# [[How Data Science Has Shaped Society and Culture]]&lt;br /&gt;
# [[The Role of Artificial Intelligence in Understanding Human Behavior]]&lt;br /&gt;
# [[The Language of Mathematics: Symbols, Expressions, and Equations]]&lt;br /&gt;
# [[The Art of Problem Solving: Creativity in Mathematics]]&lt;br /&gt;
# [[Statistics and Probability: Interpreting Data and Predicting Outcomes]]&lt;br /&gt;
# [[Cultural Bias in Data Collection and Interpretation]]&lt;br /&gt;
# [[Machine Learning and Pattern Recognition in AI]]&lt;br /&gt;
# [[Ethical Considerations in Data Science and AI]]&lt;br /&gt;
# [[Mathematics and Art: Geometry, Proportion, and Symmetry]]&lt;br /&gt;
# [[The Golden Ratio and Fibonacci Sequence in Nature and Culture]]&lt;br /&gt;
# [[Information Theory: Quantifying Cultural Transmission]]&lt;br /&gt;
# [[Graph Theory and Social Network Analysis]]&lt;br /&gt;
# [[AI in Language and Communication: NLP and GPT-4]]&lt;br /&gt;
# [[The Impact of AI on Employment and the Future of Work]]&lt;br /&gt;
# [[Game Theory: Strategic Decision Making in Cultural Context]]&lt;br /&gt;
# [[Fractals, Chaos Theory, and Cultural Complexity]]&lt;br /&gt;
# [[Music, Mathematics, and AI: A Harmonious Intersection]]&lt;br /&gt;
# [[AI and Literature: Text Analysis, Generation, and Critique]]&lt;br /&gt;
# [[Mathematical Models in Economics and Social Sciences]]&lt;br /&gt;
# [[Big Data and Privacy: Balancing Utility and Ethics]]&lt;br /&gt;
# [[AI in Healthcare: Improving Outcomes and Reducing Disparities]]&lt;br /&gt;
# [[Climate Change, Sustainability, and Mathematical Modeling]]&lt;br /&gt;
# [[The Mathematics of Democracy: Voting Systems and Fair Representation]]&lt;br /&gt;
# [[Bias and Fairness in AI: Challenges and Solutions]]&lt;br /&gt;
# [[The Role of AI in Mental Health and Emotional Well-being]]&lt;br /&gt;
# [[AI and the Creative Arts: Exploring New Frontiers]]&lt;br /&gt;
# [[The Future of AI: Possibilities, Pitfalls, and Predictions]]&lt;br /&gt;
# [[Final Project: Applying Mathematics, Data Science, and AI to Cultural Analysis]]&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2313&amp;diff=5219</id>
		<title>MAT2313</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2313&amp;diff=5219"/>
		<updated>2023-04-26T03:48:43Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Combinatorics and Probability - MAT2313= &lt;br /&gt;
''Corequisite'': [[MAT1224]]. &lt;br /&gt;
&lt;br /&gt;
''Content'': Basic counting principles. Permutations and combinations. Binomial and multinomial coefficients. Pigeonhole and inclusion-exclusion principles. Graphs, colorings, planarity. Eulerian and Hamiltonian graphs. Recurrence relations. Generating functions. Prerequisites: MAT1224 Calculus II and MAT 1313 Algebra and Number Systems. 3 Credit Hours &lt;br /&gt;
&lt;br /&gt;
''Sample textbooks'': Alan Tucker, Applied Combinatorics (6th ed). Wiley (2012). &lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
Course outline:&lt;br /&gt;
&lt;br /&gt;
Week 1: Finite sets, strings, enumeration, the addition and product rules.&lt;br /&gt;
&lt;br /&gt;
Week 2: Combinations, permutations. &lt;br /&gt;
&lt;br /&gt;
Week 3: Binomial and multinomial coefficients.&lt;br /&gt;
&lt;br /&gt;
Week 4: The Pigeonhole Principle. The Inclusion-Exclusion Formula, derangements, the Euler ɸ function (totient).&lt;br /&gt;
&lt;br /&gt;
Week 5: Review. First midterm exam.&lt;br /&gt;
&lt;br /&gt;
Week 6: Graphs and multigraphs. &lt;br /&gt;
&lt;br /&gt;
Week 7: Eulerian and Hamiltonian graphs. &lt;br /&gt;
&lt;br /&gt;
Week 8: Trees. Colorings. Planarity.&lt;br /&gt;
&lt;br /&gt;
Week 9: Review. First midterm exam.&lt;br /&gt;
&lt;br /&gt;
Week 10: Generating functions. The Binomial Theorem. Partitions.&lt;br /&gt;
&lt;br /&gt;
Week 11: Recurrence relations. Linear recurrences. &lt;br /&gt;
&lt;br /&gt;
Week 12: Solving recurrences by generating functions. &lt;br /&gt;
&lt;br /&gt;
Week 13: Exponential generating functions. Nonlinear recurrences.&lt;br /&gt;
&lt;br /&gt;
Week 15: Review.&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5383&amp;diff=5218</id>
		<title>MAT5383</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5383&amp;diff=5218"/>
		<updated>2023-04-26T03:46:46Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Mathematical Foundations of Statistics II - MAT4383/MAT5383= &lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I.&lt;br /&gt;
&lt;br /&gt;
''Content'': Mathematical Statistics II is an advanced course that delves into the mathematical foundations of point estimation, sufficiency, confidence intervals, hypothesis testing, inferences based on two samples, analysis of variance (ANOVA), and regression analysis. The course builds on the foundations established in Mathematical Statistics I and equips students with a deeper understanding of statistical methods for data analysis, inference, and prediction, essential for numerous applications in various disciplines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List of Topics==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Session !! Section !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
|  || 7 || Point Estimation  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 1 || 7.1 || General Concepts and Criteria ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 || 7.2 || Methods of Point Estimation   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 || 7.3 || Sufficiency   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 || 7.4 || Information and Efficiency ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 8 || Statistical Intervals Based on a Single Sample  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 || 8.1 || Basic Properties of Confidence Intervals ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 || 8.2 || Large-Sample Confidence Intervals for a Population Mean and Proportion ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 || 8.3 || Intervals Based on a Normal Population Distribution   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 || 8.4 || Confidence Intervals for the Variance and Standard Deviation of a Normal Population  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 || 8.5 || Bootstrap Confidence Intervals ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 || REVIEW ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 || TEST 1 ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 9 || Tests of Hypotheses Based on a Single Sample  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 || 9.1 || Hypotheses and Test Procedures ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 || 9.2 || Tests About a Population Mean   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 || 9.3 || Tests Concerning a Population Proportion ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 15 || 9.4 || P-Values ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 16 || 9.5 || Some Comments on Selecting a Test Procedure   ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 10 || Inferences Based on Two Samples  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 17 || 10.1 || z Tests and Confidence Intervals for a Difference Between Two Population Means  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 18 || 10.2 || The Two-Sample t Test and Confidence Interval   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 10.3 || Analysis of Paired Data   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 20 || 10.4 || Inferences About Two Population Proportions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 21 || 10.5 || Inferences About Two Population Variances   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 22 || 10.6 || Comparisons Using the Bootstrap and Permutation Methods   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 23 || REVIEW ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 24 || TEST 2 ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 11 || The Analysis of Variance  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 25 || 11.1 || Single-Factor ANOVA ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 26 || 11.2 || Multiple Comparisons in ANOVA   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 27 || 11.3 || More on Single-Factor ANOVA   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 28 || 11.4 || Two-Factor ANOVA with Kij = 1   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 29 || 11.5 || Two-Factor ANOVA with Kij &amp;gt; 1   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 30 || 12 || Regression and Correlation  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 31 || 12.1 || The Simple Linear and Logistic Regression Models   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 32 || 12.2 || Estimating Model Parameters ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 33 || 12.3 || Inferences About the Regression Coefficient b1 ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 34 || 12.4 || Inferences Concerning mY ·x* and the Prediction of Future Y Values ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 35 || 12.5 || Correlation ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 36 || 12.6 || Assessing Model Adequacy   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 37 || 12.7 || Multiple Regression Analysis ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 38 || 12.8 || Regression with Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 39 || REVIEW&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5383&amp;diff=5217</id>
		<title>MAT5383</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5383&amp;diff=5217"/>
		<updated>2023-04-26T03:46:16Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Changed name of course&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Mathematical Foundations of Statistics II - MAT4383/MAT5383= &lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I.&lt;br /&gt;
&lt;br /&gt;
''Content'': Mathematical Statistics II is an advanced course that delves into point estimation, sufficiency, confidence intervals, hypothesis testing, inferences based on two samples, analysis of variance (ANOVA), and regression analysis. The course builds on the foundations established in Mathematical Statistics I and equips students with a deeper understanding of statistical methods for data analysis, inference, and prediction, essential for numerous applications in various disciplines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List of Topics==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Session !! Section !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
|  || 7 || Point Estimation  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 1 || 7.1 || General Concepts and Criteria ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 || 7.2 || Methods of Point Estimation   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 || 7.3 || Sufficiency   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 || 7.4 || Information and Efficiency ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 8 || Statistical Intervals Based on a Single Sample  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 || 8.1 || Basic Properties of Confidence Intervals ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 || 8.2 || Large-Sample Confidence Intervals for a Population Mean and Proportion ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 || 8.3 || Intervals Based on a Normal Population Distribution   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 || 8.4 || Confidence Intervals for the Variance and Standard Deviation of a Normal Population  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 || 8.5 || Bootstrap Confidence Intervals ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 || REVIEW ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 || TEST 1 ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 9 || Tests of Hypotheses Based on a Single Sample  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 || 9.1 || Hypotheses and Test Procedures ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 || 9.2 || Tests About a Population Mean   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 || 9.3 || Tests Concerning a Population Proportion ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 15 || 9.4 || P-Values ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 16 || 9.5 || Some Comments on Selecting a Test Procedure   ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 10 || Inferences Based on Two Samples  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 17 || 10.1 || z Tests and Confidence Intervals for a Difference Between Two Population Means  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 18 || 10.2 || The Two-Sample t Test and Confidence Interval   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 10.3 || Analysis of Paired Data   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 20 || 10.4 || Inferences About Two Population Proportions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 21 || 10.5 || Inferences About Two Population Variances   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 22 || 10.6 || Comparisons Using the Bootstrap and Permutation Methods   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 23 || REVIEW ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 24 || TEST 2 ||  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|  || 11 || The Analysis of Variance  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 25 || 11.1 || Single-Factor ANOVA ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 26 || 11.2 || Multiple Comparisons in ANOVA   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 27 || 11.3 || More on Single-Factor ANOVA   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 28 || 11.4 || Two-Factor ANOVA with Kij = 1   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 29 || 11.5 || Two-Factor ANOVA with Kij &amp;gt; 1   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 30 || 12 || Regression and Correlation  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 31 || 12.1 || The Simple Linear and Logistic Regression Models   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 32 || 12.2 || Estimating Model Parameters ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 33 || 12.3 || Inferences About the Regression Coefficient b1 ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 34 || 12.4 || Inferences Concerning mY ·x* and the Prediction of Future Y Values ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 35 || 12.5 || Correlation ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 36 || 12.6 || Assessing Model Adequacy   ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 37 || 12.7 || Multiple Regression Analysis ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 38 || 12.8 || Regression with Matrices ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 39 || REVIEW&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5373&amp;diff=5216</id>
		<title>MAT5373</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5373&amp;diff=5216"/>
		<updated>2023-04-26T03:44:56Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Mathematical Statistics I - MAT4173/5373 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Mathematical Foundations of Statistics I - MAT4173/5373=&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT1213]]/[[MAT1214]] Calculus I.&lt;br /&gt;
&lt;br /&gt;
''Content'': Mathematical Foundations of Statistics I is an introductory course that covers key concepts in statistics from a mathematical perspective, including populations and samples, descriptive statistics, probability, discrete and continuous distributions, transformations, jointly distributed random variables, covariance and correlation, order statistics, and the Central Limit Theorem. The course equips students with foundational knowledge and techniques for data analysis and statistical modeling in various fields.&lt;br /&gt;
&lt;br /&gt;
== List of Topics==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Session || Section || Topic || Pre-requisites&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 1.1 || Populations and Samples || &lt;br /&gt;
|-&lt;br /&gt;
| 2 || 1.2 || Pictorial and Tabular Methods in Descriptive Statistics || &lt;br /&gt;
|-&lt;br /&gt;
| 3 || 1.3 || Measures of Location || &lt;br /&gt;
|-&lt;br /&gt;
| 4 || 1.4 || Measures of Variability || &lt;br /&gt;
|-&lt;br /&gt;
| 5 || 2.1 || Sample Spaces and Events || &lt;br /&gt;
|-&lt;br /&gt;
| 6 || 2.2 || Axioms, Interpretations, and Properties of Probability || &lt;br /&gt;
|-&lt;br /&gt;
| 7 || 2.3 || Counting Techniques || &lt;br /&gt;
|-&lt;br /&gt;
| 8 || 2.4 || Conditional Probability || &lt;br /&gt;
|-&lt;br /&gt;
| 9 || 2.5 || Independence || &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  colspan=&amp;quot;3&amp;quot; |  REVIEW &lt;br /&gt;
|-&lt;br /&gt;
| 11 || colspan=&amp;quot;3&amp;quot; |   TEST 1  &lt;br /&gt;
|-&lt;br /&gt;
| 12 || 3.1 || Random Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 13 || 3.2 || Probability Distributions for Discrete Random Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 14 || 3.3 || Expected Values of Discrete Random Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 15 || 3.4 || Moments and Moment Generating Functions || &lt;br /&gt;
|-&lt;br /&gt;
| 16 || 3.5 || The Binomial Probability Distribution || &lt;br /&gt;
|-&lt;br /&gt;
| 17 || 3.6 || Hypergeometric and Negative Binomial Distributions || &lt;br /&gt;
|-&lt;br /&gt;
| 18 || 3.7 || The Poisson Probability Distribution || &lt;br /&gt;
|-&lt;br /&gt;
| 19 || 4.1 || Probability Density Functions and Cumulative Distribution Functions || &lt;br /&gt;
|-&lt;br /&gt;
| 20 || 4.2 || Expected Values and Moment Generating Functions || &lt;br /&gt;
|-&lt;br /&gt;
| 21 || 4.3 || The Normal Distribution || &lt;br /&gt;
|-&lt;br /&gt;
| 22 || 4.4 || The Gamma Distribution and Its Relatives || &lt;br /&gt;
|-&lt;br /&gt;
| 23 || 4.5 || Other Continuous Distributions || &lt;br /&gt;
|-&lt;br /&gt;
| 24 || 4.6 || Probability Plots || &lt;br /&gt;
|-&lt;br /&gt;
| 25 || 4.7 || Transformations of a Random Variable || &lt;br /&gt;
|-&lt;br /&gt;
| 26 || colspan=&amp;quot;3&amp;quot; | REVIEW  &lt;br /&gt;
|-&lt;br /&gt;
| 27 || colspan=&amp;quot;3&amp;quot; | TEST 2  &lt;br /&gt;
|-&lt;br /&gt;
| 28 || 5.1 || Jointly Distributed Random Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 29 || 5.2 || Expected Values, Covariance, and Correlation || &lt;br /&gt;
|-&lt;br /&gt;
| 30 || 5.3 || Conditional Distributions || &lt;br /&gt;
|-&lt;br /&gt;
| 31 || 5.4 || Transformations of Random Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 32 || 5.5 || Order Statistics || &lt;br /&gt;
|-&lt;br /&gt;
| 33 || 6.1 || Statistics and Their Distributions || &lt;br /&gt;
|-&lt;br /&gt;
| 34 || 6.2 || The Distribution of the Sample Mean || &lt;br /&gt;
|-&lt;br /&gt;
| 35 || 6.3 || The Mean, Variance, and MGF for Several Variables || &lt;br /&gt;
|-&lt;br /&gt;
| 36 || 6.4 || Distributions Based on a Normal Random Sample || &lt;br /&gt;
|-&lt;br /&gt;
| 37 || 6.5 || Proof of the Central Limit Theorem || &lt;br /&gt;
|-&lt;br /&gt;
| 38 || colspan=&amp;quot;3&amp;quot; | REVIEW &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5215</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5215"/>
		<updated>2023-04-26T03:44:15Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Upper Division */  changes course name for MAT4373 &amp;amp; 4383&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Foundations of Mathematics, Data Science, and Artificial Intelligence in Cultural Context&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2253]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Foundations of Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Foundations of Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MDC5153]] Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3203]] Abstract Linear Algebra&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Abstract Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4323]] Applied Graph Theory&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I (fall even years) &lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II (spring even years) &lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I  (fall even years)&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra (fall odd years)&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (fall, even years) (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (spring even years) (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (spring odd years) (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (spring even years)  (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics (spring even years)  (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II (spring odd years)  (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (fall even years)  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2313&amp;diff=5214</id>
		<title>MAT2313</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2313&amp;diff=5214"/>
		<updated>2023-04-26T03:41:28Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Changed content from Probability to combinatorics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Combinatorics and Probability= &lt;br /&gt;
3 Credit Hours &lt;br /&gt;
&lt;br /&gt;
==Course Catalog== &lt;br /&gt;
''Corequisite'': [[MAT1224]]. &lt;br /&gt;
&lt;br /&gt;
''Content'': Basic counting principles. Permutations and combinations. Binomial and multinomial coefficients. Pigeonhole and inclusion-exclusion principles. Graphs, colorings, planarity. Eulerian and Hamiltonian graphs. Recurrence relations. Generating functions. Prerequisites: MAT1224 Calculus II and MAT 1313 Algebra and Number Systems.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Introduction to the theory of probability, through the study of discrete and continuous random variables.&lt;br /&gt;
&lt;br /&gt;
==Sample textbooks==&lt;br /&gt;
Alan Tucker, Applied Combinatorics (6th ed). Wiley (2012). &lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
Course outline:&lt;br /&gt;
&lt;br /&gt;
Week 1: Finite sets, strings, enumeration, the addition and product rules.&lt;br /&gt;
&lt;br /&gt;
Week 2: Combinations, permutations. &lt;br /&gt;
&lt;br /&gt;
Week 3: Binomial and multinomial coefficients.&lt;br /&gt;
&lt;br /&gt;
Week 4: The Pigeonhole Principle. The Inclusion-Exclusion Formula, derangements, the Euler ɸ function (totient).&lt;br /&gt;
&lt;br /&gt;
Week 5: Review. First midterm exam.&lt;br /&gt;
&lt;br /&gt;
Week 6: Graphs and multigraphs. &lt;br /&gt;
&lt;br /&gt;
Week 7: Eulerian and Hamiltonian graphs. &lt;br /&gt;
&lt;br /&gt;
Week 8: Trees. Colorings. Planarity.&lt;br /&gt;
&lt;br /&gt;
Week 9: Review. First midterm exam.&lt;br /&gt;
&lt;br /&gt;
Week 10: Generating functions. The Binomial Theorem. Partitions.&lt;br /&gt;
&lt;br /&gt;
Week 11: Recurrence relations. Linear recurrences. &lt;br /&gt;
&lt;br /&gt;
Week 12: Solving recurrences by generating functions. &lt;br /&gt;
&lt;br /&gt;
Week 13: Exponential generating functions. Nonlinear recurrences.&lt;br /&gt;
&lt;br /&gt;
Week 15: Review.&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5213</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5213"/>
		<updated>2023-04-25T14:00:19Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */ Added prerequisites&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. || None. || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  || Previous exposure to computer programming in any language. || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. || None. || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants || Linear Algebra and Calculus I || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  Scripts vs. compiled code (week 2) || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions || Linear discriminants (week 4-5) || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases || Scripts vs. compiled code (week 2) || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering || Generalized regressions (week 7) || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. || Scripts vs. compiled code (week 2) || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). || Clustering (week 9) || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. || Scripts vs. compiled code (week 2) || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. || Scripts vs. compiled code (week 2) || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations || Entire course || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5212</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5212"/>
		<updated>2023-04-25T13:56:12Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */  Refined order lesson to ensure that a week of technical material is followed by a week of conceptual week. This increased time for completion of technical assignments,&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || Understanding of government databases. Conduct basic data exploration. Identity questions answerable with data available for a specific problem. &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Scripts vs. compiled code.  ||  || Basic numeric operations in scripting vs. compiled code. Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Ethics in data analysis. ||  || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants I ||  || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions ||  || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases ||  || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering ||  || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. ||  || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5211</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5211"/>
		<updated>2023-04-25T13:42:06Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || Understanding of government databases&lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Scripts vs. compiled code.  ||  || Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. Setting up environments. Basic numeric operations in scripting vs. compiled code.&lt;br /&gt;
|-&lt;br /&gt;
| 4 - 5 ||  || Linear discriminants I ||  || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions ||  || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases ||  || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering ||  || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. ||  || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5210</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5210"/>
		<updated>2023-04-25T13:39:56Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */  Refinement of order of lessons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || Understanding of government databases&lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Scripts vs. compiled code. Setting up environments. ||  || Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Linear discriminants ||  || Ability to minimize an equation involving matrices and vectors. Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Basic numeric operations in scripting vs. compiled code. ||  || Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions ||  || Understanding of mathematical approaches to produce an infinite family of regressions for the purpose of data smoothing.&lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases ||  || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering ||  || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. ||  || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5209</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5209"/>
		<updated>2023-04-24T18:30:55Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */  Adjusted order&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || Understanding of government databases&lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Scripts vs. compiled code. Setting up environments. ||  || Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic numeric operations in scripting vs. compiled code. ||  || Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Linear discriminants ||  || Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions ||  || Understanding of mathematical approaches to produce an infinite family of regressions. &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases ||  || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering ||  || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Solution architecture &amp;amp; reproducibility. ||  || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5208</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5208"/>
		<updated>2023-04-24T17:57:19Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Course Content */  Added Student Learning Outcomes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || Understanding of government databases&lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || Identification of biases introduced during data collection, storage, analysis, and access.&lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Scripts vs. compiled code. Setting up environments. ||  || Clarity about the differences between interpreted and compiled code, and how it impacts data analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic numeric operations in scripting vs. compiled code. ||  || Mastery in multi-linear operations in scripting and compiled languages. Understanding of the balance between computational performance and development time. &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Linear discriminants ||  || Mastery of Principal Component Analysis (PCA), Fisher's linear discriminant, and multiple discriminant analysis. &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Visualization (basic and advanced). ||  || Understanding of different families of visualization techniques. Ability to create Circos plots. &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Generalized regressions ||  || Understanding of mathematical approaches to produce an infinite family of regressions, &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Clustering ||  || Ability to create basic clusters using multiple definitions of distance. &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Relational databases ||  || Ability to  create, access, and use relational databases from within programming environments. Understanding of when to use relational databases &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || Capability to program a fully-connected feed-forward artificial neural network from scratch. Understanding of the effect of multiple activation functions,  &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Solution architecture &amp;amp; reproducibility. ||  || Capacity to design a complex data analysis solution that guarantees reproducibility, interoperability, and maintainability, &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || Ability to program in collaborative multi-layered environments. Capacity to resolve conflicts in code, create code branches, and propagate effectively code changes across multiple environments such as development, test production, etc.&lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || Dexterity to break a data analysis problems into multiple interconnected components, and then produce automated reports targeting specific audiences. &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || Exposure to presentation of results in front an audience of experts. &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5207</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5207"/>
		<updated>2023-04-24T17:30:53Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Refinement of content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential mathematical skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will be exposed to the entire life cycle of data analysis. Throughout the course, participants will explore basic operations in scripting languages, delve into advanced visualization techniques, and investigate linear discriminants, generalized regressions, time series analysis, and non-linear discriminants, and clustering. Students will program essential algorithms, instead of using toolboxes, to explore the discrete Fourier transform, generalized regressions, clustering algorithms, and artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. &lt;br /&gt;
&lt;br /&gt;
By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Scripts vs. compiled code. Setting up environments.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic numeric operations in scripting vs. compiled code.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Visualization (basic and advanced). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Relational databases  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Linear discriminants ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Generalized regressions ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Clustering ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Solution architecture &amp;amp; reproducibility. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Data analysis plans &amp;amp; standardized reports. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations ||  || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5192</id>
		<title>MAT5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT5153&amp;diff=5192"/>
		<updated>2023-04-06T22:15:45Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Created page with &amp;quot;==Data Analytics MDC4153/MAT5153==  '''Catalog entry'''  ''Prerequisite'': MAT2243 Applied Linear Algebra or (MAT2233 Linear Algebra and MAT2214/MAT2213 Calcul...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will learn the importance of ethics in data analysis and how to set up a suitable environment for efficient processing. Throughout the course, participants will explore basic operations in Python, delve into advanced visualization techniques, and investigate linear and non-linear discriminants, such as artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Environment setup. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic operations in python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Visualization (basic and advanced). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Linear discriminants &amp;amp; regressions. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Relational databases. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases from python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Data analysis plans.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Solution architecture &amp;amp; reproducibility.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Standardized reports.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5191</id>
		<title>MDC5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5191"/>
		<updated>2023-04-06T22:15:33Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Redirected page to MAT5153&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT[[MAT5153]]&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5190</id>
		<title>MDC5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5190"/>
		<updated>2023-04-06T21:26:59Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Data Analytics MDC4153/MDC5153 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MAT5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will learn the importance of ethics in data analysis and how to set up a suitable environment for efficient processing. Throughout the course, participants will explore basic operations in Python, delve into advanced visualization techniques, and investigate linear and non-linear discriminants, such as artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Environment setup. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic operations in python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Visualization (basic and advanced). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Linear discriminants &amp;amp; regressions. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Relational databases. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases from python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Data analysis plans.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Solution architecture &amp;amp; reproducibility.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Standardized reports.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5188</id>
		<title>MDC5153</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MDC5153&amp;diff=5188"/>
		<updated>2023-04-03T15:35:52Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Data Analytics MDC4153/MDC5153 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Data Analytics MDC4153/MDC5153==&lt;br /&gt;
&lt;br /&gt;
'''Catalog entry'''&lt;br /&gt;
&lt;br /&gt;
''Prerequisite'': [[MAT2243]] Applied Linear Algebra or ([[MAT2233]] Linear Algebra and [[MAT2214]]/[[MAT2213]] Calculus III).&lt;br /&gt;
&lt;br /&gt;
''Content'': This immersive Data Analytics course equips students with the essential skills and knowledge required to analyze, visualize, and interpret complex datasets. Students will learn the importance of ethics in data analysis and how to set up a suitable environment for efficient processing. Throughout the course, participants will explore basic operations in Python, delve into advanced visualization techniques, and investigate linear and non-linear discriminants, such as artificial neural networks.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the course will provide an understanding of relational databases and their integration with programming environments, as well as guidance on creating effective data analysis plans. Emphasis will be placed on solution architecture, reproducibility, configuration management, and generating standardized reports. By the end of the course, students will have a strong foundation in data analytics, allowing them to transform raw data into valuable insights for decision-making.&lt;br /&gt;
&lt;br /&gt;
== Course Content==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Week !! Source !! Topic !! Prerequisites !! SLOs&lt;br /&gt;
|-&lt;br /&gt;
| 1 ||  || Description of the course project. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 2 ||  || Ethics in data analysis. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 3 ||  || Environment setup. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 4 ||  || Basic operations in python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 5 ||  || Visualization (basic and advanced). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 6 ||  || Linear discriminants &amp;amp; regressions. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 7 ||  || Relational databases. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 8 ||  || Relational databases from python. ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 9 ||  || Non-linear discriminants (i.e. artificial neural networks). ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 10 ||  || Data analysis plans.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 11 ||  || Solution architecture &amp;amp; reproducibility.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 12 ||  || Management of the configuration.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 13 ||  || Standardized reports.  ||  || &lt;br /&gt;
|-&lt;br /&gt;
| 14 ||  || Project presentations&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5184</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=Main_Page&amp;diff=5184"/>
		<updated>2023-03-31T22:53:08Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Core M.Sc. Studies */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;UTSA Department of Mathematics&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To edit tables in each course below, you can use [https://tableconvert.com/mediawiki-to-excel MediaWiki-to-Excel converter] and/or the [https://tableconvert.com/excel-to-mediawiki Excel-to-MediaWiki converter] &lt;br /&gt;
&lt;br /&gt;
== Undergraduate Studies ==&lt;br /&gt;
===STEM Core===&lt;br /&gt;
* [[MAT1073]] College Algebra for Scientists and Engineers &lt;br /&gt;
* [[MAT1093]] Precalculus &lt;br /&gt;
* [[MAT1193]] Calculus for Biosciences &lt;br /&gt;
* [[MAT1214]] Calculus I (4 credit hours)&lt;br /&gt;
* [[MAT1224]] Calculus II (4 credit hours) &lt;br /&gt;
* [[MAT2214]] Calculus III (4 credit hours) &lt;br /&gt;
* [[MAT2233]] Linear Algebra &lt;br /&gt;
&lt;br /&gt;
===Minor in Mathematics===&lt;br /&gt;
To receive a minor, students must complete at least 18 semester credit hours, including 6 hours at the upper-division level at UTSA, and must achieve a grade point average of at least 2.0 (on a 4.0 scale) on all work used to satisfy the requirements of a minor. See [https://catalog.utsa.edu/undergraduate/bachelorsdegreeregulations/minors/  UTSA's Undergraduate Catalog]&lt;br /&gt;
&lt;br /&gt;
The Minor in Mathematics requires the Calculus series plus linear algebra, and upper division courses in either the Math Major or the Data &amp;amp; Applied Science Core&lt;br /&gt;
&lt;br /&gt;
===Data &amp;amp; Applied Science Core===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MDC1213]] Foundations of Mathematics, Data Science, and Artificial Intelligence in Cultural Context&lt;br /&gt;
* [[MAT1213]] Calculus I (3 credit hours)&lt;br /&gt;
* [[MAT1223]] Calculus II (3 credit hours)&lt;br /&gt;
* [[MAT2213]] Calculus III (3 credit hours)&lt;br /&gt;
* [[MAT2243]] Applied Linear Algebra (3 credit hours)&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT4133]]/[[MAT5133]] Mathematical Biology&lt;br /&gt;
* [[MAT4143]]/[[MAT5143]] Mathematical Physics&lt;br /&gt;
* [[MAT4373]]/[[MAT5373]] Mathematical Statistics I (discrete &amp;amp; continuous PDFs)&lt;br /&gt;
* [[MAT4383]]/[[MAT5383]] Mathematical Statistics II (statistical inference)&lt;br /&gt;
* [[MDC4153]]/[[MDC5153]] Data Analytics&lt;br /&gt;
&lt;br /&gt;
===Math Major===&lt;br /&gt;
==== Lower Division ====&lt;br /&gt;
* [[MAT1313]] Algebra and Number Systems &lt;br /&gt;
* [[MAT2313]] Combinatorics and Probability&lt;br /&gt;
&lt;br /&gt;
==== Upper Division ====&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics &lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3013]] Foundations of Mathematics&amp;lt;/del&amp;gt; Course transitioning to be eventually replaced by [[MAT3003]] Discrete Mathematics (below).&lt;br /&gt;
* [[MAT3003]] Discrete Mathematics&lt;br /&gt;
* [[MAT3203]] Linear Algebra II&lt;br /&gt;
* &amp;lt;del&amp;gt;[[MAT3213]] Foundations of Analysis&amp;lt;/del&amp;gt; Course transitioning to be eventually replaced by [[MAT3333]] Fundamentals of Analysis and Topology (below).&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
* [[MAT3333]] Fundamentals of Analysis and Topology&lt;br /&gt;
* [[MAT3313]] Logic and Computability&lt;br /&gt;
* [[MAT3613]] Differential Equations I &lt;br /&gt;
* [[MAT3623]] Differential Equations II &lt;br /&gt;
* [[MAT3633]] Numerical Analysis &lt;br /&gt;
* [[MAT3223]] Complex Variables &lt;br /&gt;
* [[MAT4033]] Linear Algebra II&lt;br /&gt;
* [[MAT4213]] Real Analysis I &lt;br /&gt;
* [[MAT4223]] Real Analysis II &lt;br /&gt;
* [[MAT4233]] Modern Abstract Algebra&lt;br /&gt;
* [[MAT4273]] Topology&lt;br /&gt;
* [[MAT4283]] Computing for Mathematics&lt;br /&gt;
* [[MAT4373]] Mathematical Statistics I&lt;br /&gt;
&lt;br /&gt;
===Business===&lt;br /&gt;
* [[MAT1053]] Algebra for Business &lt;br /&gt;
* [[MAT1133]] Calculus for Business &lt;br /&gt;
&lt;br /&gt;
===Math for Liberal Arts===&lt;br /&gt;
* [[MAT1043]] Introduction to Mathematics &lt;br /&gt;
&lt;br /&gt;
=== Elementary Education ===&lt;br /&gt;
* [[MAT1023]] College Algebra &lt;br /&gt;
* [[MAT1153]] Essential Elements in Mathematics I &lt;br /&gt;
* [[MAT1163]] Essential Elements in Mathematics II &lt;br /&gt;
&lt;br /&gt;
=== General Math Studies===&lt;br /&gt;
* [[MAT3233]] Modern Algebra&lt;br /&gt;
&lt;br /&gt;
== Graduate Studies ==&lt;br /&gt;
=== Core M.Sc. Studies ===&lt;br /&gt;
Core courses, common across all M.Sc. tracks, must be at least 50% of the credit 30 hours needed to obtain a M.Sc. degree. The following courses add up to 15 credit hours. &lt;br /&gt;
* Two courses in the Analysis &amp;amp; Algebra sequences in the following combinations: &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5183]] Algebra II. &lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5243]] General Topology I. &lt;br /&gt;
** [[MAT5243]] General Topology I &amp;amp; [[MAT5253]] General Topology II. &lt;br /&gt;
** [[MAT5203]] Analysis I  &amp;amp; [[MAT5213]] Analysis II&lt;br /&gt;
** [[MAT5173]] Algebra I &amp;amp;  [[MAT5203]] Analysis I.&lt;br /&gt;
** [[MAT5173]] Algebra  I &amp;amp; [[MAT5123]] Cryptography I.&lt;br /&gt;
** [[MAT5123]] Cryptography I &amp;amp;  [[MAT5323]] Cryptography II.&lt;br /&gt;
* Two course in discrete mathematics among the following:&lt;br /&gt;
** [[MAT5423]] Discrete Mathematics I (fall even years) &lt;br /&gt;
** [[MAT5433]] Discrete Mathematics II (spring even years) &lt;br /&gt;
* One course in computation among the following:&lt;br /&gt;
** [[MAT5373]] Mathematical Statistics I  (fall even years)&lt;br /&gt;
** [[MDC5153]] Data Analytics&lt;br /&gt;
* [[MAT5283]] Linear Algebra (fall odd years)&lt;br /&gt;
&lt;br /&gt;
=== Qualifying Examination Tracks  ===&lt;br /&gt;
* [[MAT5183]] Algebra II (fall, even years) (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5123]] Cryptography (spring even years) (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5323]] Cryptography II (spring odd years) (Pure, Applied tracks))&lt;br /&gt;
* [[MAT5213]] Analysis II (spring even years)  (Pure track)&lt;br /&gt;
* [[MAT5113]] Computing for Mathematics (spring even years)  (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5433]] Discrete Mathematics II (spring odd years)  (Pure, Applied tracks)&lt;br /&gt;
* [[MAT5383]] Mathematical Statistics II  (fall even years)  (Applied tracks)&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Pure Mathematics  ===&lt;br /&gt;
* [[MAT5443]] Logic and Computability&lt;br /&gt;
* [[MAT5243]] General Topology&lt;br /&gt;
* [[MAT5253]] General Topology II&lt;br /&gt;
* [[MAT5323]] Cryptography II&lt;br /&gt;
* [[MAT5183]] Algebra II&lt;br /&gt;
* [[MAT5223]] Theory of Functions of a Complex Variable&lt;br /&gt;
* [[MAT5343]] Differential Geometry&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. Track in Applied &amp;amp; Industrial Mathematics ===&lt;br /&gt;
* [[MDC5153]] Data Analytics&lt;br /&gt;
* [[AIM 5113]] Introduction to Industrial Mathematics&lt;br /&gt;
* [[MAT 5113]] Computing for Mathematics&lt;br /&gt;
* [[MAT 5653]] Differential Equations I&lt;br /&gt;
* [[MAT 5673]] Partial Differential Equations&lt;br /&gt;
&lt;br /&gt;
=== M.Sc. in Mathematics Education ===&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2214&amp;diff=5183</id>
		<title>MAT2214</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2214&amp;diff=5183"/>
		<updated>2023-03-31T21:51:36Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-3 Calculus (Volume 3) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions: Unit Circle Approach]] &lt;br /&gt;
* [[Inverse Trigonometric Functions]] &lt;br /&gt;
||&lt;br /&gt;
* Plot points using polar coordinates and find several polar coordinates of a single point&lt;br /&gt;
* Convert polar coordinates to rectangular coordinates and vice versa&lt;br /&gt;
* Transform equations from polar form to rectangular form and vice versa&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Three-Dimensional Coordinate Systems]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Two-dimensional coordinate systems]] &lt;br /&gt;
* [[Solving Equations and Inequalities| Algebraic Expressions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Three-dimensional coordinate systems.&lt;br /&gt;
* Distance Formula in Space. &lt;br /&gt;
* Standard Equation for a Sphere.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 1/2  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Vectors in The Plane, Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Linear Equations|Line Segments]] &lt;br /&gt;
* [[Distance Formula| Distance Formula]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector Algebra Operations &lt;br /&gt;
* The Magnitude of a vector&lt;br /&gt;
* Unit Vectors&lt;br /&gt;
* The Midpoint of a Line Segment&lt;br /&gt;
* The Vector projection&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Definition of  Dot Product&lt;br /&gt;
* Properties of Dot Product&lt;br /&gt;
* Angle between vectors&lt;br /&gt;
* Orthogonal vectors&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Determinants]] &lt;br /&gt;
* [[Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Definition of Cross Product&lt;br /&gt;
* Properties of the cross product&lt;br /&gt;
* Area of a parallelogram&lt;br /&gt;
* Cross product as a determinant&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write the vector, parametric equation of a line through a given point in a given direction, and a line through two given points.&lt;br /&gt;
* Find the distance from a point to a given line.&lt;br /&gt;
* Write the equation of a plane through a given point with a given normal, and a plane through three given points.&lt;br /&gt;
* Find the distance from a point to a given plane.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space|Cylinders and Quadratic Surfaces]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* '''[[Conics]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find equations for cylinders that are generated by rotating lines that are parallel to a plane&lt;br /&gt;
* Understand basic quadratic surfaces&lt;br /&gt;
* Understand general quadratic surfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 3/4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.1, 3.2 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector functions&lt;br /&gt;
* Limits of vector functions&lt;br /&gt;
* Continuity of vector functions&lt;br /&gt;
* Differentiation rules for vector functions&lt;br /&gt;
* Curves and paths in space&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Arc Length]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Distance Formula| The Length of a Line Segment]]''' &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions|Vector Functions]] &lt;br /&gt;
* [[Line Integrals|Integrals of Vector Functions]], [[Derivatives of Vector Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* The arc Length of a vector function&lt;br /&gt;
* Arc length parameterization&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 4/5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Motion in Space]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Derivatives of Vector Functions]] &lt;br /&gt;
||&lt;br /&gt;
* The Unit tangent vector&lt;br /&gt;
* The curvature&lt;br /&gt;
* The Principal Unit Normal Vector&lt;br /&gt;
* The Binormal Vector&lt;br /&gt;
* The tangential and normal components of acceleration&lt;br /&gt;
* The Torsion&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5/6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Functions of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Domain of a Function]] &lt;br /&gt;
* [[Range of a Function]] &lt;br /&gt;
* [[Solving Equations and Inequalities]] &lt;br /&gt;
* [[Graphs| Graphing a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Functions of two variables&lt;br /&gt;
* Functions of three variables&lt;br /&gt;
* Domain and range of multivariable functions&lt;br /&gt;
* Bounded regions&lt;br /&gt;
* Graphs and level curves of two variable functions&lt;br /&gt;
* Level surfaces of three variable functions&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Limit and Continuity of Function of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Limits of functions of two variables&lt;br /&gt;
* Limits of functions of more than two variables&lt;br /&gt;
* Properties of limits of functions of several variables&lt;br /&gt;
* Two path test of non-existing of a limit&lt;br /&gt;
* Continuity for functions of several variables&lt;br /&gt;
* Continuity of composition&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Partial Derivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The first]] and [[The Second Derivative|second derivative]] of a function &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Partial derivatives for functions of two variables&lt;br /&gt;
* Partial derivatives for functions of more than two variables&lt;br /&gt;
* Partial derivatives and continuity&lt;br /&gt;
* Second order partial derivatives&lt;br /&gt;
* Mixed derivative theorem&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.4 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Directional Derivatives and Gradient Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions]]   &lt;br /&gt;
* [[Vectors, Unit Vectors]]  &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Gradients]]&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
||&lt;br /&gt;
* Directional derivatives for functions of two variables&lt;br /&gt;
* Gradients&lt;br /&gt;
* Properties of directional derivatives&lt;br /&gt;
* Tangents to level curves&lt;br /&gt;
* Directional derivatives for functions of three variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.5 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
[[Tangent Plane]],&lt;br /&gt;
[[Differentiability]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Parametric Equations]] of Lines&lt;br /&gt;
* [[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Determine the equation of a plane tangent to a given surface at a point&lt;br /&gt;
* Determine the parametric equation of a normal line to a given surface at a point&lt;br /&gt;
* The linear approximation of a function of two variables at a point&lt;br /&gt;
* The definition of differentiability for  a function of two variables&lt;br /&gt;
* Differentiability implies  Continuity   &lt;br /&gt;
* Continuity of First Partial Derivatives implies Differentiability&lt;br /&gt;
* The definition of total differentiability for  a function of two variables&lt;br /&gt;
* Use the total differential to approximate the change in a function of two variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.6 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Chain Rule for Functions of more than One Variable]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Chain rule for functions of one independent variable and several intermediate variables.&lt;br /&gt;
* Chain rule for functions of two independent variable and several intermediate variables.&lt;br /&gt;
* Method for implicit differentiation.&lt;br /&gt;
* The general chain rule for functions of several independent variables  &lt;br /&gt;
|-&lt;br /&gt;
|Week 8 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.7 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Extreme values on closed and bounded domains]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Maxima and Minima|Maxima, Minima and Critical Points of a Function]] &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* The derivative test for local extreme values&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
* Critical points and saddle points for functions of two variables&lt;br /&gt;
* Second derivative test for local extreme values&lt;br /&gt;
* Absolute maxima and minima on closed and bounded regions&lt;br /&gt;
|-&lt;br /&gt;
|Week 8/9 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.8 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Lagrange Multipliers]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Lagrange Multipliers with One Constraint&lt;br /&gt;
* Lagrange Multipliers with Two Constraints&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9/10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.1 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over Rectangular Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Approximating Areas]] &lt;br /&gt;
* [[The Definite Integral|Limits of Riemann Sums]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integral is the limit of Double Sums.&lt;br /&gt;
* Double Integrals over Rectangular Regions.&lt;br /&gt;
* Interated Integrals.&lt;br /&gt;
* Fubini's Theorem (part 1).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over General Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Determining Volumes by Slicing]] &lt;br /&gt;
* [[Multiple Integrals|Double and Iterated Integrals over Rectangular regions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double integrals over bounded, general regions.&lt;br /&gt;
* Properties of double Integrals. &lt;br /&gt;
* Fubini's theorem (part 2) &lt;br /&gt;
* Changing the order of Integration.&lt;br /&gt;
* Calculating Volumes, Areas and Average Values &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals in Polar Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals over General Regions]] &lt;br /&gt;
* [[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integrals over rectangular polar  regions.&lt;br /&gt;
* Double Integrals over general polar regions.&lt;br /&gt;
* Changing Cartesian Integrals into Polar Integrals.&lt;br /&gt;
* Using Double Integrals in Polar Coordinates to find Volumes, Areas.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
  5.4 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Rectangular Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals]] &lt;br /&gt;
* [[Multiple Integrals|Area by Double Integration]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Triple Integrals over general bounded regions. &lt;br /&gt;
* Finding Volumes by evaluating Triple Integrals.&lt;br /&gt;
* Average value of a function in space.&lt;br /&gt;
* Changing Integration Order and Coordinate systems.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.5 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Cylindrical and Spherical Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals in Polar Form]]  &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals in Rectangular Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrations  in Cylindrical Coordinates.&lt;br /&gt;
* Equations relating rectangular and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
* Integrations in Spherical coordinates.&lt;br /&gt;
* Equations relating spherical coordinates to Cartesian and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Applications of Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Two Dimensions.&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Three Dimensions.&lt;br /&gt;
|-&lt;br /&gt;
|Week 13/14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Change of Variables in Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the image of a region under a given transformation of variables.&lt;br /&gt;
* Compute the Jacobian of a given transformation.&lt;br /&gt;
* Evaluate a double integral using a change of variables.&lt;br /&gt;
* Evaluate a triple integral using a change of variables.&lt;br /&gt;
|-&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &amp;lt;!-- 2214-12.3 --&amp;gt;&lt;br /&gt;
* [[Directional Derivatives and Gradient Vectors]] &lt;br /&gt;
||&lt;br /&gt;
* Vector Fields in a plane.&lt;br /&gt;
* Vector Fields in Space.&lt;br /&gt;
* Potential Functions.&lt;br /&gt;
* Gradient Fields, Conservative Vector Fields.&lt;br /&gt;
* The Cross-Partial Test for Conservative Vector Fields.&lt;br /&gt;
* Determining Whether a Vector Field is conservative. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Line Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
* [[Arc Length]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Line Integrals of  functions a long a smooth curves in a planer or in space&lt;br /&gt;
* Line Integrals of  of vector fields along an oriented curves in a plane or space..&lt;br /&gt;
* Properties of Vector Line Integrals.&lt;br /&gt;
* Evaluating  Line Integrals.&lt;br /&gt;
* Applications of line integrals: Calculating Arc Length, the Mass of a wire, Work done by a force, Flux across a curve, Circulation of a force.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Conservative Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields and Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Describe simple and closed curves&lt;br /&gt;
* Define connected and simply connected regions.&lt;br /&gt;
* Explain how to test a vector field to determine whether it is conservative.&lt;br /&gt;
* Find a potential function for a conservative vector field.&lt;br /&gt;
* Use the Fundamental Theorem for Line Integrals to evaluate a line integral of a vector field.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Green's Theorem]]&lt;br /&gt;
&lt;br /&gt;
[[Stokes' Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields]]&lt;br /&gt;
* [[Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[Line Integrals|Path Independence]]&lt;br /&gt;
* [[Conservative Vector Fields]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Circulation form of Green's Theorem.&lt;br /&gt;
* Flux Form of Green’s Theorem.&lt;br /&gt;
* Applying Green's Theorem to find Work, Flux.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5182</id>
		<title>MAT1223</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5182"/>
		<updated>2023-03-31T21:50:39Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-2 Calculus (Volume 2) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 || 1.5 || [[Integration by Substitution]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Linear Approximations and Differentials]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 &amp;amp; 2 || 2.1 || [[Area between Curves]] || * [[Toolkit Functions]] || [[Graphing Elementary Functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 2 || 2.2 || [[Determining Volumes by Slicing]] || * '''[[Areas of basic shapes]]'''  || &lt;br /&gt;
* '''[[Volume of a cylinder]]''' &lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || 2.3 || [[Volumes of Revolution, Cylindrical Shells]] || * [[Toolkit Functions]] || [[Graphing elementary functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || 2.4 || [[Arc Length and Surface Area]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 4 || 2.5 || [[Physical Applications]] || * '''[[Areas of basic shapes]]'''  || &lt;br /&gt;
* '''[[Volume of a cylinder]]''' &lt;br /&gt;
|-&lt;br /&gt;
| Week 4 &amp;amp; 5 || 2.6 || [[Moments and Center of Mass]] || * [[Toolkit Functions]] || [[Graphing elementary functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || 3.1 || [[Integration by Parts]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Linear Approximations and Differentials]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 || 3.2 || [[Trigonometric Integrals]] || * [[Trigonometric Functions]]  || &lt;br /&gt;
* [[Properties of the Trigonometric Functions]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 &amp;amp; 7 || 3.3 || [[Trigonometric Substitution]] || * [[Completing the Square]]  || &lt;br /&gt;
* [[Trigonometric Functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 7 || 3.4 || [[Partial Fractions]] || * [[Factoring Polynomials]]  || &lt;br /&gt;
* [[Completing the Square]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 8  || 3.7 || [[Improper Integrals]] || * [[The Fundamental Theorem of Calculus]]  || &lt;br /&gt;
* [[Integration by Substitution]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 9 || 5.1 || [[Sequences]] || * [[The Limit Laws]] || [[The Limit Laws and Squeeze Theorem]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 10 || 5.2 || [[Infinite Series]] || * '''[[Sigma notation]]'''  || &lt;br /&gt;
* [[Sequences]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || 5.3 || [[The Divergence and Integral Tests]] || * [[The Limit Laws]]  || &lt;br /&gt;
* [[Limits at Infinity and Asymptotes]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || 5.4 || [[Comparison Tests]] || * [[Limits at Infinity and Asymptotes]] || [[Limits at Infinity]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || 5.5 || [[Alternating Series]] || * [[Limits at Infinity and Asymptotes]] || [[Limits at Infinity]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || 5.6 || [[Ratio and Root Tests]] || * '''[[Factorials]]'''  || &lt;br /&gt;
* [[Limits at Infinity and Asymptotes]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 13 || 6.1 || [[Power Series and Functions]] || * [[Infinite Series]] || [[The Geometric Series Test]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 14 || 6.2 || [[Properties of Power Series]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Antiderivatives]]  &lt;br /&gt;
|-&lt;br /&gt;
| Week 15 || 6.3 || [[Taylor and Maclaurin Series]] || * [[The Derivative as a Function]] || [[Higher-Order Derivatives]] &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5181</id>
		<title>MAT2213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5181"/>
		<updated>2023-03-31T21:43:51Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-  &lt;br /&gt;
|Week 1 || 1.2 || [[Three-Dimensional Coordinate Systems]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 1  ||  2.1  || [[Vectors in The Plane, Space]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 1 ||  2.3  || [[The Dot Product]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 2 ||  2.4  || [[The Cross Product]]  Scalar triple product  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 2 ||  2.5  || [[Equations of Lines, Planes and Surfaces in Space]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 3 ||  2.6  || [[Equations of Lines, Planes and Surfaces in Space|Equaitons of Curves. Equations of Surfaces]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 3 ||  3.1, 3.2  || [[Curves in Space and Vector-Valued Functions]]  Derivatives and integrals of vector functions || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 4 ||  3.3  || [[Arc Length]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 4/5 ||  3.4  || [[Motion in Space]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 5/6  ||  4.1 || [[Functions of Several Variables]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 6 ||  4.2  || [[Limit and Continuity of Function of Several Variables]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 6  ||  4.3 ||  [[Partial Derivatives]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7  ||  4.4  ||  [[Directional Derivatives and Gradient Vectors]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7 ||  4.5 ||  [[Tangent Plane]], [[Differentiability]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7  ||  4.6 ||  [[The Chain Rule for Functions of more than One Variable]] || || &lt;br /&gt;
|-&lt;br /&gt;
|Week 8 || 4.7 ||  [[Maxima and Minima Problems]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 8/9 || 4.8 ||  [[Lagrange Multipliers]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 9/10 || 5.1 ||  [[Multiple Integrals|Double Integrals over Rectangular Regions]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 10 || 5.2 ||  [[Multiple Integrals|Double Integrals over General Regions]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 11    || 5.3 ||  [[Multiple Integrals|Double Integrals in Polar Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 11 ||  5.4 || [[Multiple Integrals|Triple Integrals in Rectangular Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 12 ||  5.5 || [[Multiple Integrals|Triple Integrals in Cylindrical and Spherical Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 13  || 5.6 || [[Multiple Integrals|Applications of Multiple Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 13/14  || 5.7 || [[Multiple Integrals|Change of Variables in Multiple Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 14 || 6.1 || [[Vector Fields]] || || &lt;br /&gt;
|-&lt;br /&gt;
|Week 14 ||  6.2  ||  [[Line Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 14/15  || 6.3 || [[Conservative Vector Fields]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 14/15  || 6.4 || [[Green's Theorem]]  [[Stokes' Theorem]] || ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5180</id>
		<title>MAT2213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5180"/>
		<updated>2023-03-31T21:36:50Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-  &lt;br /&gt;
|Week 1 || 1.1  || [[Polar Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 1 || 1.2 || [[Three-Dimensional Coordinate Systems]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 1/2  ||  2.1  || [[Vectors in The Plane, Space]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 2 ||  2.3  || [[The Dot Product]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 2 ||  2.4  || [[The Cross Product]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 3 ||  2.5  || [[Equations of Lines, Planes and Surfaces in Space]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 3 ||  2.6  || [[Equations of Lines, Planes and Surfaces in Space|Cylinders and Quadratic Surfaces]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 3/4 ||  3.1, 3.2  || [[Curves in Space and Vector-Valued Functions]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 4 ||  3.3  || [[Arc Length]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 4/5 ||  3.4  || [[Motion in Space]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 5/6  ||  4.1 || [[Functions of Several Variables]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 6 ||  4.2  || [[Limit and Continuity of Function of Several Variables]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 6  ||  4.3 ||  [[Partial Derivatives]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7  ||  4.4  ||  [[Directional Derivatives and Gradient Vectors]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7 ||  4.5 ||  [[Tangent Plane]], [[Differentiability]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 7  ||  4.6 ||  [[The Chain Rule for Functions of more than One Variable]] || || &lt;br /&gt;
|-&lt;br /&gt;
|Week 8 || 4.7 ||  [[Maxima and Minima Problems]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 8/9 || 4.8 ||  [[Lagrange Multipliers]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 9/10 || 5.1 ||  [[Multiple Integrals|Double Integrals over Rectangular Regions]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 10 || 5.2 ||  [[Multiple Integrals|Double Integrals over General Regions]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 11    || 5.3 ||  [[Multiple Integrals|Double Integrals in Polar Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 11 ||  5.4 || [[Multiple Integrals|Triple Integrals in Rectangular Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 12 ||  5.5 || [[Multiple Integrals|Triple Integrals in Cylindrical and Spherical Coordinates]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 13  || 5.6 || [[Multiple Integrals|Applications of Multiple Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 13/14  || 5.7 || [[Multiple Integrals|Change of Variables in Multiple Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 14 || 6.1 || [[Vector Fields]] || || &lt;br /&gt;
|-&lt;br /&gt;
|Week 14 ||  6.2  ||  [[Line Integrals]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Week 14/15  || 6.3 || [[Conservative Vector Fields]] || ||&lt;br /&gt;
|-&lt;br /&gt;
|Weeks 14/15  || 6.4 || [[Green's Theorem]]  [[Stokes' Theorem]] || ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5179</id>
		<title>MAT2213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2213&amp;diff=5179"/>
		<updated>2023-03-31T21:17:57Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */  Removed HTML formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions: Unit Circle Approach]] &lt;br /&gt;
* [[Inverse Trigonometric Functions]] &lt;br /&gt;
||&lt;br /&gt;
* Plot points using polar coordinates and find several polar coordinates of a single point&lt;br /&gt;
* Convert polar coordinates to rectangular coordinates and vice versa&lt;br /&gt;
* Transform equations from polar form to rectangular form and vice versa&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Three-Dimensional Coordinate Systems]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Two-dimensional coordinate systems]] &lt;br /&gt;
* [[Solving Equations and Inequalities| Algebraic Expressions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Three-dimensional coordinate systems.&lt;br /&gt;
* Distance Formula in Space. &lt;br /&gt;
* Standard Equation for a Sphere.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 1/2  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Vectors in The Plane, Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Linear Equations|Line Segments]] &lt;br /&gt;
* [[Distance Formula| Distance Formula]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector Algebra Operations &lt;br /&gt;
* The Magnitude of a vector&lt;br /&gt;
* Unit Vectors&lt;br /&gt;
* The Midpoint of a Line Segment&lt;br /&gt;
* The Vector projection&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Definition of  Dot Product&lt;br /&gt;
* Properties of Dot Product&lt;br /&gt;
* Angle between vectors&lt;br /&gt;
* Orthogonal vectors&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Determinants]] &lt;br /&gt;
* [[Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Definition of Cross Product&lt;br /&gt;
* Properties of the cross product&lt;br /&gt;
* Area of a parallelogram&lt;br /&gt;
* Cross product as a determinant&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write the vector, parametric equation of a line through a given point in a given direction, and a line through two given points.&lt;br /&gt;
* Find the distance from a point to a given line.&lt;br /&gt;
* Write the equation of a plane through a given point with a given normal, and a plane through three given points.&lt;br /&gt;
* Find the distance from a point to a given plane.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space|Cylinders and Quadratic Surfaces]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* '''[[Conics]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find equations for cylinders that are generated by rotating lines that are parallel to a plane&lt;br /&gt;
* Understand basic quadratic surfaces&lt;br /&gt;
* Understand general quadratic surfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 3/4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.1, 3.2 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector functions&lt;br /&gt;
* Limits of vector functions&lt;br /&gt;
* Continuity of vector functions&lt;br /&gt;
* Differentiation rules for vector functions&lt;br /&gt;
* Curves and paths in space&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Arc Length]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Distance Formula| The Length of a Line Segment]]''' &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions|Vector Functions]] &lt;br /&gt;
* [[Line Integrals|Integrals of Vector Functions]], [[Derivatives of Vector Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* The arc Length of a vector function&lt;br /&gt;
* Arc length parameterization&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 4/5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Motion in Space]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Derivatives of Vector Functions]] &lt;br /&gt;
||&lt;br /&gt;
* The Unit tangent vector&lt;br /&gt;
* The curvature&lt;br /&gt;
* The Principal Unit Normal Vector&lt;br /&gt;
* The Binormal Vector&lt;br /&gt;
* The tangential and normal components of acceleration&lt;br /&gt;
* The Torsion&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5/6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Functions of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Domain of a Function]] &lt;br /&gt;
* [[Range of a Function]] &lt;br /&gt;
* [[Solving Equations and Inequalities]] &lt;br /&gt;
* [[Graphs| Graphing a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Functions of two variables&lt;br /&gt;
* Functions of three variables&lt;br /&gt;
* Domain and range of multivariable functions&lt;br /&gt;
* Bounded regions&lt;br /&gt;
* Graphs and level curves of two variable functions&lt;br /&gt;
* Level surfaces of three variable functions&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Limit and Continuity of Function of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Limits of functions of two variables&lt;br /&gt;
* Limits of functions of more than two variables&lt;br /&gt;
* Properties of limits of functions of several variables&lt;br /&gt;
* Two path test of non-existing of a limit&lt;br /&gt;
* Continuity for functions of several variables&lt;br /&gt;
* Continuity of composition&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Partial Derivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The first]] and [[The Second Derivative|second derivative]] of a function &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Partial derivatives for functions of two variables&lt;br /&gt;
* Partial derivatives for functions of more than two variables&lt;br /&gt;
* Partial derivatives and continuity&lt;br /&gt;
* Second order partial derivatives&lt;br /&gt;
* Mixed derivative theorem&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.4 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Directional Derivatives and Gradient Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions]]   &lt;br /&gt;
* [[Vectors, Unit Vectors]]  &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Gradients]]&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
||&lt;br /&gt;
* Directional derivatives for functions of two variables&lt;br /&gt;
* Gradients&lt;br /&gt;
* Properties of directional derivatives&lt;br /&gt;
* Tangents to level curves&lt;br /&gt;
* Directional derivatives for functions of three variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.5 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
[[Tangent Plane]],&lt;br /&gt;
[[Differentiability]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Parametric Equations]] of Lines&lt;br /&gt;
* [[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Determine the equation of a plane tangent to a given surface at a point&lt;br /&gt;
* Determine the parametric equation of a normal line to a given surface at a point&lt;br /&gt;
* The linear approximation of a function of two variables at a point&lt;br /&gt;
* The definition of differentiability for  a function of two variables&lt;br /&gt;
* Differentiability implies  Continuity   &lt;br /&gt;
* Continuity of First Partial Derivatives implies Differentiability&lt;br /&gt;
* The definition of total differentiability for  a function of two variables&lt;br /&gt;
* Use the total differential to approximate the change in a function of two variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.6 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Chain Rule for Functions of more than One Variable]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Chain rule for functions of one independent variable and several intermediate variables.&lt;br /&gt;
* Chain rule for functions of two independent variable and several intermediate variables.&lt;br /&gt;
* Method for implicit differentiation.&lt;br /&gt;
* The general chain rule for functions of several independent variables  &lt;br /&gt;
|-&lt;br /&gt;
|Week 8 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.7 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Extreme values on closed and bounded domains]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Maxima and Minima|Maxima, Minima and Critical Points of a Function]] &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* The derivative test for local extreme values&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
* Critical points and saddle points for functions of two variables&lt;br /&gt;
* Second derivative test for local extreme values&lt;br /&gt;
* Absolute maxima and minima on closed and bounded regions&lt;br /&gt;
|-&lt;br /&gt;
|Week 8/9 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.8 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Lagrange Multipliers]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Lagrange Multipliers with One Constraint&lt;br /&gt;
* Lagrange Multipliers with Two Constraints&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9/10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.1 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over Rectangular Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Approximating Areas]] &lt;br /&gt;
* [[The Definite Integral|Limits of Riemann Sums]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integral is the limit of Double Sums.&lt;br /&gt;
* Double Integrals over Rectangular Regions.&lt;br /&gt;
* Interated Integrals.&lt;br /&gt;
* Fubini's Theorem (part 1).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over General Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Determining Volumes by Slicing]] &lt;br /&gt;
* [[Multiple Integrals|Double and Iterated Integrals over Rectangular regions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double integrals over bounded, general regions.&lt;br /&gt;
* Properties of double Integrals. &lt;br /&gt;
* Fubini's theorem (part 2) &lt;br /&gt;
* Changing the order of Integration.&lt;br /&gt;
* Calculating Volumes, Areas and Average Values &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals in Polar Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals over General Regions]] &lt;br /&gt;
* [[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integrals over rectangular polar  regions.&lt;br /&gt;
* Double Integrals over general polar regions.&lt;br /&gt;
* Changing Cartesian Integrals into Polar Integrals.&lt;br /&gt;
* Using Double Integrals in Polar Coordinates to find Volumes, Areas.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
  5.4 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Rectangular Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals]] &lt;br /&gt;
* [[Multiple Integrals|Area by Double Integration]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Triple Integrals over general bounded regions. &lt;br /&gt;
* Finding Volumes by evaluating Triple Integrals.&lt;br /&gt;
* Average value of a function in space.&lt;br /&gt;
* Changing Integration Order and Coordinate systems.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.5 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Cylindrical and Spherical Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals in Polar Form]]  &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals in Rectangular Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrations  in Cylindrical Coordinates.&lt;br /&gt;
* Equations relating rectangular and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
* Integrations in Spherical coordinates.&lt;br /&gt;
* Equations relating spherical coordinates to Cartesian and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Applications of Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Two Dimensions.&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Three Dimensions.&lt;br /&gt;
|-&lt;br /&gt;
|Week 13/14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Change of Variables in Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the image of a region under a given transformation of variables.&lt;br /&gt;
* Compute the Jacobian of a given transformation.&lt;br /&gt;
* Evaluate a double integral using a change of variables.&lt;br /&gt;
* Evaluate a triple integral using a change of variables.&lt;br /&gt;
|-&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &amp;lt;!-- 2214-12.3 --&amp;gt;&lt;br /&gt;
* [[Directional Derivatives and Gradient Vectors]] &lt;br /&gt;
||&lt;br /&gt;
* Vector Fields in a plane.&lt;br /&gt;
* Vector Fields in Space.&lt;br /&gt;
* Potential Functions.&lt;br /&gt;
* Gradient Fields, Conservative Vector Fields.&lt;br /&gt;
* The Cross-Partial Test for Conservative Vector Fields.&lt;br /&gt;
* Determining Whether a Vector Field is conservative. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Line Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
* [[Arc Length]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Line Integrals of  functions a long a smooth curves in a planer or in space&lt;br /&gt;
* Line Integrals of  of vector fields along an oriented curves in a plane or space..&lt;br /&gt;
* Properties of Vector Line Integrals.&lt;br /&gt;
* Evaluating  Line Integrals.&lt;br /&gt;
* Applications of line integrals: Calculating Arc Length, the Mass of a wire, Work done by a force, Flux across a curve, Circulation of a force.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Conservative Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields and Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Describe simple and closed curves&lt;br /&gt;
* Define connected and simply connected regions.&lt;br /&gt;
* Explain how to test a vector field to determine whether it is conservative.&lt;br /&gt;
* Find a potential function for a conservative vector field.&lt;br /&gt;
* Use the Fundamental Theorem for Line Integrals to evaluate a line integral of a vector field.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Green's Theorem]]&lt;br /&gt;
&lt;br /&gt;
[[Stokes' Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields]]&lt;br /&gt;
* [[Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[Line Integrals|Path Independence]]&lt;br /&gt;
* [[Conservative Vector Fields]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Circulation form of Green's Theorem.&lt;br /&gt;
* Flux Form of Green’s Theorem.&lt;br /&gt;
* Applying Green's Theorem to find Work, Flux.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT2214&amp;diff=5178</id>
		<title>MAT2214</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT2214&amp;diff=5178"/>
		<updated>2023-03-31T21:17:30Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */  Removed HTML formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions: Unit Circle Approach]] &lt;br /&gt;
* [[Inverse Trigonometric Functions]] &lt;br /&gt;
||&lt;br /&gt;
* Plot points using polar coordinates and find several polar coordinates of a single point&lt;br /&gt;
* Convert polar coordinates to rectangular coordinates and vice versa&lt;br /&gt;
* Transform equations from polar form to rectangular form and vice versa&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 1.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[Three-Dimensional Coordinate Systems]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Two-dimensional coordinate systems]] &lt;br /&gt;
* [[Solving Equations and Inequalities| Algebraic Expressions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Three-dimensional coordinate systems.&lt;br /&gt;
* Distance Formula in Space. &lt;br /&gt;
* Standard Equation for a Sphere.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 1/2  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Vectors in The Plane, Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Linear Equations|Line Segments]] &lt;br /&gt;
* [[Distance Formula| Distance Formula]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector Algebra Operations &lt;br /&gt;
* The Magnitude of a vector&lt;br /&gt;
* Unit Vectors&lt;br /&gt;
* The Midpoint of a Line Segment&lt;br /&gt;
* The Vector projection&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Definition of  Dot Product&lt;br /&gt;
* Properties of Dot Product&lt;br /&gt;
* Angle between vectors&lt;br /&gt;
* Orthogonal vectors&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions|Basic Trig Functions]]  &lt;br /&gt;
* [[Determinants]] &lt;br /&gt;
* [[Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Definition of Cross Product&lt;br /&gt;
* Properties of the cross product&lt;br /&gt;
* Area of a parallelogram&lt;br /&gt;
* Cross product as a determinant&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write the vector, parametric equation of a line through a given point in a given direction, and a line through two given points.&lt;br /&gt;
* Find the distance from a point to a given line.&lt;br /&gt;
* Write the equation of a plane through a given point with a given normal, and a plane through three given points.&lt;br /&gt;
* Find the distance from a point to a given plane.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 2.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Equations of Lines, Planes and Surfaces in Space|Cylinders and Quadratic Surfaces]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Quadratic Functions]] &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* '''[[Conics]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find equations for cylinders that are generated by rotating lines that are parallel to a plane&lt;br /&gt;
* Understand basic quadratic surfaces&lt;br /&gt;
* Understand general quadratic surfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 3/4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.1, 3.2 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Vector functions&lt;br /&gt;
* Limits of vector functions&lt;br /&gt;
* Continuity of vector functions&lt;br /&gt;
* Differentiation rules for vector functions&lt;br /&gt;
* Curves and paths in space&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Arc Length]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Distance Formula| The Length of a Line Segment]]''' &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions|Vector Functions]] &lt;br /&gt;
* [[Line Integrals|Integrals of Vector Functions]], [[Derivatives of Vector Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* The arc Length of a vector function&lt;br /&gt;
* Arc length parameterization&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 4/5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 3.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Motion in Space]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Vectors]]  &lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[The Cross Product]] &lt;br /&gt;
* [[Derivatives of Vector Functions]] &lt;br /&gt;
||&lt;br /&gt;
* The Unit tangent vector&lt;br /&gt;
* The curvature&lt;br /&gt;
* The Principal Unit Normal Vector&lt;br /&gt;
* The Binormal Vector&lt;br /&gt;
* The tangential and normal components of acceleration&lt;br /&gt;
* The Torsion&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5/6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Functions of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Domain of a Function]] &lt;br /&gt;
* [[Range of a Function]] &lt;br /&gt;
* [[Solving Equations and Inequalities]] &lt;br /&gt;
* [[Graphs| Graphing a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Functions of two variables&lt;br /&gt;
* Functions of three variables&lt;br /&gt;
* Domain and range of multivariable functions&lt;br /&gt;
* Bounded regions&lt;br /&gt;
* Graphs and level curves of two variable functions&lt;br /&gt;
* Level surfaces of three variable functions&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Limit and Continuity of Function of Several Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Limits of functions of two variables&lt;br /&gt;
* Limits of functions of more than two variables&lt;br /&gt;
* Properties of limits of functions of several variables&lt;br /&gt;
* Two path test of non-existing of a limit&lt;br /&gt;
* Continuity for functions of several variables&lt;br /&gt;
* Continuity of composition&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Partial Derivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The first]] and [[The Second Derivative|second derivative]] of a function &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Partial derivatives for functions of two variables&lt;br /&gt;
* Partial derivatives for functions of more than two variables&lt;br /&gt;
* Partial derivatives and continuity&lt;br /&gt;
* Second order partial derivatives&lt;br /&gt;
* Mixed derivative theorem&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.4 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Directional Derivatives and Gradient Vectors]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Trigonometric Functions]]   &lt;br /&gt;
* [[Vectors, Unit Vectors]]  &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Gradients]]&lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
||&lt;br /&gt;
* Directional derivatives for functions of two variables&lt;br /&gt;
* Gradients&lt;br /&gt;
* Properties of directional derivatives&lt;br /&gt;
* Tangents to level curves&lt;br /&gt;
* Directional derivatives for functions of three variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.5 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
[[Tangent Plane]],&lt;br /&gt;
[[Differentiability]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Parametric Equations]] of Lines&lt;br /&gt;
* [[Equations of Lines, Planes and Surfaces in Space]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Determine the equation of a plane tangent to a given surface at a point&lt;br /&gt;
* Determine the parametric equation of a normal line to a given surface at a point&lt;br /&gt;
* The linear approximation of a function of two variables at a point&lt;br /&gt;
* The definition of differentiability for  a function of two variables&lt;br /&gt;
* Differentiability implies  Continuity   &lt;br /&gt;
* Continuity of First Partial Derivatives implies Differentiability&lt;br /&gt;
* The definition of total differentiability for  a function of two variables&lt;br /&gt;
* Use the total differential to approximate the change in a function of two variables&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.6 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Chain Rule for Functions of more than One Variable]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Chain rule for functions of one independent variable and several intermediate variables.&lt;br /&gt;
* Chain rule for functions of two independent variable and several intermediate variables.&lt;br /&gt;
* Method for implicit differentiation.&lt;br /&gt;
* The general chain rule for functions of several independent variables  &lt;br /&gt;
|-&lt;br /&gt;
|Week 8 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.7 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* [[Extreme values on closed and bounded domains]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Maxima and Minima|Maxima, Minima and Critical Points of a Function]] &lt;br /&gt;
* [[Limit and Continuity of Function of Several Variables]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* The derivative test for local extreme values&lt;br /&gt;
* Extreme values on closed and bounded domains&lt;br /&gt;
* Critical points and saddle points for functions of two variables&lt;br /&gt;
* Second derivative test for local extreme values&lt;br /&gt;
* Absolute maxima and minima on closed and bounded regions&lt;br /&gt;
|-&lt;br /&gt;
|Week 8/9 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 4.8 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Lagrange Multipliers]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Lagrange Multipliers with One Constraint&lt;br /&gt;
* Lagrange Multipliers with Two Constraints&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9/10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.1 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over Rectangular Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Approximating Areas]] &lt;br /&gt;
* [[The Definite Integral|Limits of Riemann Sums]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integral is the limit of Double Sums.&lt;br /&gt;
* Double Integrals over Rectangular Regions.&lt;br /&gt;
* Interated Integrals.&lt;br /&gt;
* Fubini's Theorem (part 1).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals over General Regions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Determining Volumes by Slicing]] &lt;br /&gt;
* [[Multiple Integrals|Double and Iterated Integrals over Rectangular regions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double integrals over bounded, general regions.&lt;br /&gt;
* Properties of double Integrals. &lt;br /&gt;
* Fubini's theorem (part 2) &lt;br /&gt;
* Changing the order of Integration.&lt;br /&gt;
* Calculating Volumes, Areas and Average Values &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.3 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Double Integrals in Polar Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals over General Regions]] &lt;br /&gt;
* [[Polar Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Double Integrals over rectangular polar  regions.&lt;br /&gt;
* Double Integrals over general polar regions.&lt;br /&gt;
* Changing Cartesian Integrals into Polar Integrals.&lt;br /&gt;
* Using Double Integrals in Polar Coordinates to find Volumes, Areas.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
  5.4 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Rectangular Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals]] &lt;br /&gt;
* [[Multiple Integrals|Area by Double Integration]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Triple Integrals over general bounded regions. &lt;br /&gt;
* Finding Volumes by evaluating Triple Integrals.&lt;br /&gt;
* Average value of a function in space.&lt;br /&gt;
* Changing Integration Order and Coordinate systems.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.5 &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Multiple Integrals|Triple Integrals in Cylindrical and Spherical Coordinates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integrals in Polar Form]]  &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals in Rectangular Coordinates]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrations  in Cylindrical Coordinates.&lt;br /&gt;
* Equations relating rectangular and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
* Integrations in Spherical coordinates.&lt;br /&gt;
* Equations relating spherical coordinates to Cartesian and cylindrical coordinates.&lt;br /&gt;
* Changing Cartesian integrations into Cylindrical integrations.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Applications of Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Two Dimensions.&lt;br /&gt;
* Finding Masses, Moments, Centers of Masses, Moments of Inertia in Three Dimensions.&lt;br /&gt;
|-&lt;br /&gt;
|Week 13/14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 5.7 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Multiple Integrals|Change of Variables in Multiple Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Multiple Integrals|Double Integral]] &lt;br /&gt;
* [[Multiple Integrals|Triple Integrals]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the image of a region under a given transformation of variables.&lt;br /&gt;
* Compute the Jacobian of a given transformation.&lt;br /&gt;
* Evaluate a double integral using a change of variables.&lt;br /&gt;
* Evaluate a triple integral using a change of variables.&lt;br /&gt;
|-&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.1 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Dot Product]] &amp;lt;!-- 2214-12.3 --&amp;gt;&lt;br /&gt;
* [[Directional Derivatives and Gradient Vectors]] &lt;br /&gt;
||&lt;br /&gt;
* Vector Fields in a plane.&lt;br /&gt;
* Vector Fields in Space.&lt;br /&gt;
* Potential Functions.&lt;br /&gt;
* Gradient Fields, Conservative Vector Fields.&lt;br /&gt;
* The Cross-Partial Test for Conservative Vector Fields.&lt;br /&gt;
* Determining Whether a Vector Field is conservative. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.2 &lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Line Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &lt;br /&gt;
* [[Curves in Space and Vector-Valued Functions]] &lt;br /&gt;
* [[Arc Length]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Line Integrals of  functions a long a smooth curves in a planer or in space&lt;br /&gt;
* Line Integrals of  of vector fields along an oriented curves in a plane or space..&lt;br /&gt;
* Properties of Vector Line Integrals.&lt;br /&gt;
* Evaluating  Line Integrals.&lt;br /&gt;
* Applications of line integrals: Calculating Arc Length, the Mass of a wire, Work done by a force, Flux across a curve, Circulation of a force.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Conservative Vector Fields]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields and Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* Describe simple and closed curves&lt;br /&gt;
* Define connected and simply connected regions.&lt;br /&gt;
* Explain how to test a vector field to determine whether it is conservative.&lt;br /&gt;
* Find a potential function for a conservative vector field.&lt;br /&gt;
* Use the Fundamental Theorem for Line Integrals to evaluate a line integral of a vector field.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Weeks 14/15  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
 6.4 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Green's Theorem]]&lt;br /&gt;
&lt;br /&gt;
[[Stokes' Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Vector Fields]]&lt;br /&gt;
* [[Line Integrals]] &lt;br /&gt;
* [[Partial Derivatives]]  &lt;br /&gt;
* [[The Dot Product]] &lt;br /&gt;
* [[Line Integrals|Path Independence]]&lt;br /&gt;
* [[Conservative Vector Fields]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Circulation form of Green's Theorem.&lt;br /&gt;
* Flux Form of Green’s Theorem.&lt;br /&gt;
* Applying Green's Theorem to find Work, Flux.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5177</id>
		<title>MAT1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5177"/>
		<updated>2023-03-31T20:28:41Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Changed content to match a 3-CH course with instructors' input&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/calculus-volume-1 Calculus (Volume 1) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 || 2.2 || [[The Limit of a Function]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 &amp;amp; 2 || 2.3 || [[The Limit Laws]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 2 || 2.4 || [[Continuity]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || 4.6 || [[Limits at Infinity and Asymptotes]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 3 &amp;amp; 4 || 3.1 || [[Defining the Derivative]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 4 || 3.2 || [[The Derivative as a Function]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || 3.3 || [[Differentiation Rules]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || 3.4 || [[Derivatives_Rates_of_Change | Derivative as a rate of change]]  || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || 3.5 || [[Derivatives of the Trigonometric Functions]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 || 3.6 || [[Chain_Rule | The Chain Rule]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 || 3.7 || [[Derivatives of Inverse Functions]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 6/7 || 3.8 || [[Implicit Differentiation]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 8 || 3.9 || [[Derivatives of Exponential and Logarithmic Functions]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 9 || 4.1 || [[Related Rates]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 9 || 4.3 || [[Maxima and Minima]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 10 || 4.4 || [[Mean Value Theorem]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 10 || 4.5 || [[Derivatives and the Shape of a Graph]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || 4.7 || [[Applied Optimization Problems]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || 4.8 || [[L’Hôpital’s Rule]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 13 || 4.10 || [[Antiderivatives]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 13 || 5.1 || [[Approximating Areas]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 14 || 5.2 || [[The Definite Integral]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 15 || 5.3 || [[The Fundamental Theorem of Calculus]]   || ||&lt;br /&gt;
|-&lt;br /&gt;
| Week 15 || 5.4 || [[Integration Formulas and the Net Change Theorem]]   || ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5176</id>
		<title>MAT1213</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1213&amp;diff=5176"/>
		<updated>2023-03-31T19:58:27Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */  removed html formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/calculus-volume-1 Calculus (Volume 1) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[The Limit of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function]]  including the [[Absolute Value Functions| Absolute Value]] , [[Rational Functions|Rational]] , and [[Piecewise Functions|Piecewise]] functions &lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Describe the limit of a function using correct notation.&lt;br /&gt;
*Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Define one-sided limits and provide examples.&lt;br /&gt;
*Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
*Describe an infinite limit using correct notation.&lt;br /&gt;
*Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1/2    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Factoring Polynomials]] &lt;br /&gt;
*[[Simplifying Radicals|Identifying conjugate radical expressions]] &lt;br /&gt;
*[[Rational Expression|Simplifying rational expressions]] &lt;br /&gt;
*[[Domain of a Function|Evaluating piecewise functions]] &lt;br /&gt;
*[[Trigonometric Functions|The trigonometric functions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Recognize the basic limit laws.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
*Evaluate the limit of a function by factoring.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
*Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
*Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
*Evaluate left, right, and two sided limits of piecewise defined functions.&lt;br /&gt;
*Evaluate limits of the form K/0, K≠0.&lt;br /&gt;
*Establish  and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2/3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Continuity]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
* [[Interval Notation|Interval Notation]] &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Continuity at a point. &lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Limits at Infinity and Asymptotes]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3/4   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Defining the Derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]] &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]] &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]] &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]] &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]] &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4/5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]] &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Function evaluation at a value]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]] &lt;br /&gt;
* '''[[Understanding of Velocity and Acceleration]]''' &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]] &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]&lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]&lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.6&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[Inverse Functions]] &amp;lt;!-- 1073-7 --&amp;gt;&lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6/7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Implicit and explicit equations]]''' &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]] &lt;br /&gt;
* [[Functions|Function evaluation]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, find the derivative of y with respect to x.&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, and given an equation relating y to x, find the derivative of y with respect to x.&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]] &amp;lt;&lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7/8   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas for area, volume, etc''' &lt;br /&gt;
* '''Similar triangles to form proportions''' &lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8     &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Mathematical Error| Definition of Error in mathematics]] &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]] &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8/9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]] &lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* &lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find c in the conclusion of the MVT (if algebraically feasible)&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas pertaining to area and volume''' &lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Rational Functions| Re-expressing Rational Functions ]] &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[Differentiation Rule]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11/12    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &lt;br /&gt;
* '''[[Area of a rectangle]]''' &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Toolkit Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.2&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Definite Integral]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[The Limit of a Function|Limits of Riemann Sums]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the definition of the definite integral.&lt;br /&gt;
* Explain the terms integrand, limits of integration, and variable of integration.&lt;br /&gt;
* Explain when a function is integrable.&lt;br /&gt;
* Rules for the Definite Integral.&lt;br /&gt;
* Describe the relationship between the definite integral and net area.&lt;br /&gt;
* Use geometry and the properties of definite integrals to evaluate them.&lt;br /&gt;
* Calculate the average value of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week 12/13   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Fundamental Theorem of Calculus]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[Mean Value Theorem]] &lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Describe the meaning of the Mean Value Theorem for Integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 1.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 1, to evaluate derivatives of integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 2.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 2, to evaluate definite integrals.&lt;br /&gt;
* Explain the relationship between differentiation and integration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.4&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration Formulas and the Net Change Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Antiderivatives|Indefinite integrals]]  &lt;br /&gt;
* [[The Fundamental Theorem of Calculus|The Fundamental Theorem (part 2)]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Apply the basic integration formulas.&lt;br /&gt;
* Explain the significance of the net change theorem.&lt;br /&gt;
* Use the net change theorem to solve applied problems.&lt;br /&gt;
* Apply the integrals of odd and even functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.5&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Definite Integral|Solving Basic Integrals]] &lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.6&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integrals Involving Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Exponential Functions]] &lt;br /&gt;
* [[Logarithmic Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions involving exponential functions.&lt;br /&gt;
* Integrate functions involving logarithmic functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integrals Resulting in Inverse Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The inverse sine, cosine and tangent functions|Trigonometric functions and their inverses]] &lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[The Definite Integral|Rules for Integration]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions resulting in inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1214&amp;diff=5175</id>
		<title>MAT1214</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1214&amp;diff=5175"/>
		<updated>2023-03-31T19:57:34Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */  removed HTML formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/calculus-volume-1 Calculus (Volume 1) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-  &lt;br /&gt;
&lt;br /&gt;
|Week 1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
        &lt;br /&gt;
[[The Limit of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function]]  including the [[Absolute Value Functions| Absolute Value]] , [[Rational Functions|Rational]] , and [[Piecewise Functions|Piecewise]] functions &lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Describe the limit of a function using correct notation.&lt;br /&gt;
*Use a table of values to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Use a graph to estimate the limit of a function or to identify when the limit does not exist.&lt;br /&gt;
*Define one-sided limits and provide examples.&lt;br /&gt;
*Explain the relationship between one-sided and two-sided limits.&lt;br /&gt;
*Describe an infinite limit using correct notation.&lt;br /&gt;
*Define a vertical asymptote.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 1/2    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Factoring Polynomials]] &lt;br /&gt;
*[[Simplifying Radicals|Identifying conjugate radical expressions]] &lt;br /&gt;
*[[Rational Expression|Simplifying rational expressions]] &lt;br /&gt;
*[[Domain of a Function|Evaluating piecewise functions]] &lt;br /&gt;
*[[Trigonometric Functions|The trigonometric functions]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
*Recognize the basic limit laws.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a function.&lt;br /&gt;
*Evaluate the limit of a function by factoring.&lt;br /&gt;
*Use the limit laws to evaluate the limit of a polynomial or rational function.&lt;br /&gt;
*Evaluate the limit of a function by factoring or by using conjugates.&lt;br /&gt;
*Evaluate the limit of a function by using the squeeze theorem.&lt;br /&gt;
*Evaluate left, right, and two sided limits of piecewise defined functions.&lt;br /&gt;
*Evaluate limits of the form K/0, K≠0.&lt;br /&gt;
*Establish  and use this to evaluate other limits involving trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 2/3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
2.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Continuity]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Domain and Range of a Function]] &lt;br /&gt;
* [[Interval Notation|Interval Notation]] &lt;br /&gt;
* [[Limits of Functions|Evaluate limits]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Polynomial Functions|Finding roots of a function]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Continuity at a point. &lt;br /&gt;
* Describe three kinds of discontinuities.&lt;br /&gt;
* Define continuity on an interval.&lt;br /&gt;
* State the theorem for limits of composite functions and use the theorem to evaluate limits.&lt;br /&gt;
* Provide an example of the intermediate value theorem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Limits at Infinity and Asymptotes]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the limit of a function that is unbounded.&lt;br /&gt;
* Identify a horizontal asymptote for the graph of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 3/4   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Defining the Derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluation of a function at a value]] &lt;br /&gt;
* [[Linear Functions and Slope|The equation of a line and its slope]] &lt;br /&gt;
* [[Limits of Functions|Evaluating limits]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize the meaning of the tangent to a curve at a point.&lt;br /&gt;
* Calculate the slope of a secant line (average rate of change of a function over an interval).&lt;br /&gt;
* Calculate the slope of a tangent line.&lt;br /&gt;
* Find the equation of the line tangent to a curve at a point.&lt;br /&gt;
* Identify the derivative as the limit of a difference quotient.&lt;br /&gt;
* Calculate the derivative of a given function at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions and their graphs|Graphing Functions]] &lt;br /&gt;
* [[Continuity|Continuity of a function at a point]] &lt;br /&gt;
* [[Defining the Derivative|The derivative represents the slope of the curve at a point]] &lt;br /&gt;
* [[Limits of Functions|When a limit fails to exist]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Define the derivative function of a given function.&lt;br /&gt;
* Graph a derivative function from the graph of a given function.&lt;br /&gt;
* State the connection between derivatives and continuity.&lt;br /&gt;
* Describe three conditions for when a function does not have a derivative.&lt;br /&gt;
* Explain the meaning of and compute a higher-order derivative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 4/5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Differentiation Rules]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Simplifying Radicals|Radical &amp;amp; Rational Exponents]] &lt;br /&gt;
* [[Simplifying Exponents|Re-write negative exponents]] &lt;br /&gt;
* [[The Limit Laws]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the constant, constant multiple, and power rules.&lt;br /&gt;
* Apply the sum and difference rules to combine derivatives.&lt;br /&gt;
* Use the product rule for finding the derivative of a product of functions.&lt;br /&gt;
* Use the quotient rule for finding the derivative of a quotient of functions.&lt;br /&gt;
* Extend the power rule to functions with negative exponents.&lt;br /&gt;
* Combine the differentiation rules to find the derivative of a polynomial or rational function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives_Rates_of_Change|Derivatives as Rates of Change]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Function evaluation at a value]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solving an algebraic equation]] &lt;br /&gt;
* '''[[Understanding of Velocity and Acceleration]]''' &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine a new value of a quantity from the old value and the amount of change.&lt;br /&gt;
* Calculate the average rate of change and explain how it differs from the instantaneous rate of change.&lt;br /&gt;
* Apply rates of change to displacement, velocity, and acceleration of an object moving along a straight line.&lt;br /&gt;
* Predict the future population from the present value and the population growth rate.&lt;br /&gt;
* Use derivatives to calculate marginal cost and revenue in a business situation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives of the Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric identities]] &lt;br /&gt;
* [[Graphs of the Sine and Cosine Functions]]&lt;br /&gt;
* [[Graphs of the Tangent, Cotangent, Cosecant and Secant Functions]]&lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivatives of the sine and cosine function.&lt;br /&gt;
* Find the derivatives of the standard trigonometric functions.&lt;br /&gt;
* Calculate the higher-order derivatives of the sine and cosine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.6&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Chain_Rule|The Chain Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Composition of Functions]] &lt;br /&gt;
* [[Trigonometric Equations|Solve Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules|Rules for finding Derivatives]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the chain rule for the composition of two functions.&lt;br /&gt;
* Apply the chain rule together with the power rule.&lt;br /&gt;
* Apply the chain rule and the product/quotient rules correctly in combination when both are necessary.&lt;br /&gt;
* Recognize and apply the chain rule for a composition of three or more functions.&lt;br /&gt;
* Use interchangeably the Newton and Leibniz Notation for the Chain Rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Derivatives of Inverse Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[Inverse Functions]] &amp;lt;!-- 1073-7 --&amp;gt;&lt;br /&gt;
* [[Inverse Trigonometric Functions|Customary domain restrictions for Trigonometric Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the Inverse Function Theorem for Derivatives.&lt;br /&gt;
* Apply the Inverse Function Theorem to find the derivative of a function at a point given its inverse and a point on its graph.&lt;br /&gt;
* Derivatives of the inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 6/7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Implicit Differentiation]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Implicit and explicit equations]]''' &lt;br /&gt;
* [[Linear Equations|Linear Functions and Slope]] &lt;br /&gt;
* [[Functions|Function evaluation]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, find the derivative of y with respect to x.&lt;br /&gt;
* Assuming, for example, y is implicitly a function of x, and given an equation relating y to x, find the derivative of y with respect to x.&lt;br /&gt;
* Find the equation of a line tangent to an implicitly defined curve at a point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
3.9&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Derivatives of Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Logarithmic Functions|Properties of logarithms]] &amp;lt;&lt;br /&gt;
* [[The Limit of a Function]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[The Chain Rule]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the derivative of functions that involve exponential functions.&lt;br /&gt;
* Find the derivative of functions that involve logarithmic functions.&lt;br /&gt;
* Use logarithmic differentiation to find the derivative of functions containing combinations of powers, products, and quotients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 7/8   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.1&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Related Rates]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas for area, volume, etc''' &lt;br /&gt;
* '''Similar triangles to form proportions''' &lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Implicit Differentiation]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Express changing quantities in terms of derivatives.&lt;br /&gt;
* Find relationships among the derivatives in a given problem.&lt;br /&gt;
* Use the chain rule to find the rate of change of one quantity that depends on the rate of change of other quantities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8     &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Linear Approximations and Differentials]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Mathematical Error| Definition of Error in mathematics]] &lt;br /&gt;
* [[Linear Equations|Slope of a Line]]  &lt;br /&gt;
* [[Defining the Derivative|Equation of the tangent line]] &lt;br /&gt;
* [[Derivatives Rates of Change|Leibnitz notation of the derivative]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Approximate the function value close to the center of the linear approximation using the linearization.&lt;br /&gt;
* Given an expression to be evaluated/approximated, come up with the function and its linearization&lt;br /&gt;
* Understand the formula for the differential; how it can be used to estimate the change in the dependent variable quantity, given the small change in the independent variable quantity.&lt;br /&gt;
* Use the information above to estimate potential relative (and percentage) error&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 8/9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Maxima and Minima]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The First Derivative Test|Increasing and decreasing functions]] &lt;br /&gt;
* [[Solving Equations and Inequalities|Solve an algebraic equation]] &lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
* [[Derivatives of Exponential and Logarithmic Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
* &lt;br /&gt;
* Know the definitions of absolute and local extrema.&lt;br /&gt;
* Know what a critical point is and locate it (them).&lt;br /&gt;
* Use the Extreme Value Theorem to find the absolute extrema of a continuous function on a closed interval.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Mean Value Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Defining the Derivative|Slope of a Line]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine if the MVT applies given a function on an interval.&lt;br /&gt;
* Find c in the conclusion of the MVT (if algebraically feasible)&lt;br /&gt;
* Know the first 3 Corollaries of MVT (especially the 3rd)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 9    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Derivatives and the Shape of a Graph]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Second Derivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the First Derivative Test to find intervals on which the function is increasing and decreasing and the local extrema and their type&lt;br /&gt;
* Use the Concavity Test (aka the Second Derivative Test for Concavity) to find the intervals on which the function is concave up and down, and point(s) of inflection&lt;br /&gt;
* Understand the shape of the graph, given the signs of the first and second derivatives.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Applied Optimization Problems]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''Formulas pertaining to area and volume''' &lt;br /&gt;
* [[Functions|Evaluating Functions]] &lt;br /&gt;
* [[Trigonometric Equations]] &lt;br /&gt;
* [[Maxima and Minima|Critical Points of a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Set up a function to be optimized and find the value(s) of the independent variable which provide the optimal solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[L’Hôpital’s Rule]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Rational Functions| Re-expressing Rational Functions ]] &lt;br /&gt;
* [[The Limit of a Function|When a Limit is Undefined]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify indeterminate forms produced by quotients, products, subtractions, and powers, and apply L’Hôpital’s rule in each case.&lt;br /&gt;
* Recognize when to apply L’Hôpital’s rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
4.10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
[[Antiderivatives]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
* [[The Derivative as a Function]] &lt;br /&gt;
* [[Differentiation Rule]] &lt;br /&gt;
* [[Derivatives of the Trigonometric Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the general antiderivative of a given function.&lt;br /&gt;
* Explain the terms and notation used for an indefinite integral.&lt;br /&gt;
* State the power rule for integrals.&lt;br /&gt;
* Use anti-differentiation to solve simple initial-value problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 11/12    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.1&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Approximating Areas]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &lt;br /&gt;
* '''[[Area of a rectangle]]''' &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
* [[Toolkit Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate sums and powers of integers.&lt;br /&gt;
* Use the sum of rectangular areas to approximate the area under a curve.&lt;br /&gt;
* Use Riemann sums to approximate area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.2&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Definite Integral]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Interval Notation|Interval notation]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[The Limit of a Function|Limits of Riemann Sums]] &lt;br /&gt;
* [[Continuity]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* State the definition of the definite integral.&lt;br /&gt;
* Explain the terms integrand, limits of integration, and variable of integration.&lt;br /&gt;
* Explain when a function is integrable.&lt;br /&gt;
* Rules for the Definite Integral.&lt;br /&gt;
* Describe the relationship between the definite integral and net area.&lt;br /&gt;
* Use geometry and the properties of definite integrals to evaluate them.&lt;br /&gt;
* Calculate the average value of a function.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week 12/13   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.3&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[The Fundamental Theorem of Calculus]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
* [[Mean Value Theorem]] &lt;br /&gt;
* [[Inverse Functions]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Describe the meaning of the Mean Value Theorem for Integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 1.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 1, to evaluate derivatives of integrals.&lt;br /&gt;
* State the meaning of the Fundamental Theorem of Calculus, Part 2.&lt;br /&gt;
* Use the Fundamental Theorem of Calculus, Part 2, to evaluate definite integrals.&lt;br /&gt;
* Explain the relationship between differentiation and integration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.4&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration Formulas and the Net Change Theorem]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Antiderivatives|Indefinite integrals]]  &lt;br /&gt;
* [[The Fundamental Theorem of Calculus|The Fundamental Theorem (part 2)]]  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Apply the basic integration formulas.&lt;br /&gt;
* Explain the significance of the net change theorem.&lt;br /&gt;
* Use the net change theorem to solve applied problems.&lt;br /&gt;
* Apply the integrals of odd and even functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.5&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Definite Integral|Solving Basic Integrals]] &lt;br /&gt;
* [[The Derivative as a Function|The Derivative of a Function]] &lt;br /&gt;
* '''[[Change of Variables]]''' &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 14/15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.6&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integrals Involving Exponential and Logarithmic Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Exponential Functions]] &lt;br /&gt;
* [[Logarithmic Functions]] &lt;br /&gt;
* [[Differentiation Rules]] &lt;br /&gt;
* [[Antiderivatives]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions involving exponential functions.&lt;br /&gt;
* Integrate functions involving logarithmic functions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week 15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
5.7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integrals Resulting in Inverse Trigonometric Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The inverse sine, cosine and tangent functions|Trigonometric functions and their inverses]] &lt;br /&gt;
* [[One-to-one functions|Injective Functions]] &lt;br /&gt;
* [[The Definite Integral|Rules for Integration]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate functions resulting in inverse trigonometric functions.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5174</id>
		<title>MAT1223</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5174"/>
		<updated>2023-03-31T19:46:51Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */  Changed content with instructors' input&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-2 Calculus (Volume 2) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 || 1.5 || [[Integration by Substitution]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Linear Approximations and Differentials]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 &amp;amp; 2 || 2.1 || [[Area between Curves]] || * [[Toolkit Functions]] || [[Graphing Elementary Functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 2 || 2.2 || [[Determining Volumes by Slicing]] || * '''[[Areas of basic shapes]]'''  || &lt;br /&gt;
* '''[[Volume of a cylinder]]''' &lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || 2.3 || [[Volumes of Revolution, Cylindrical Shells]] || * [[Toolkit Functions]] || [[Graphing elementary functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || 2.4 || [[Arc Length and Surface Area]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 4 || 2.5 || [[Physical Applications]] || * '''[[Areas of basic shapes]]'''  || &lt;br /&gt;
* '''[[Volume of a cylinder]]''' &lt;br /&gt;
|-&lt;br /&gt;
| Week 4 &amp;amp; 5 || 2.6 || [[Moments and Center of Mass]] || * [[Toolkit Functions]] || [[Graphing elementary functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || 3.1 || [[Integration by Parts]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Linear Approximations and Differentials]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 || 3.2 || [[Trigonometric Integrals]] || * [[Trigonometric Functions]]  || &lt;br /&gt;
* [[Properties of the Trigonometric Functions]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 &amp;amp; 7 || 3.3 || [[Trigonometric Substitution]] || * [[Completing the Square]]  || &lt;br /&gt;
* [[Trigonometric Functions]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 7 || 3.4 || [[Partial Fractions]] || * [[Factoring Polynomials]]  || &lt;br /&gt;
* [[Completing the Square]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 8  || 3.7 || [[Improper Integrals]] || * [[The Fundamental Theorem of Calculus]]  || &lt;br /&gt;
* [[Integration by Substitution]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 9 || 5.1 || [[Sequences]] || * [[The Limit Laws]] || [[The Limit Laws and Squeeze Theorem]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 10 || 5.2 || [[Infinite Series]] || * '''[[Sigma notation]]'''  || &lt;br /&gt;
* [[Sequences]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || 5.3 || [[The Divergence and Integral Tests]] || * [[The Limit Laws]]  || &lt;br /&gt;
* [[Limits at Infinity and Asymptotes]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || 5.4 || [[Comparison Tests]] || * [[Limits at Infinity and Asymptotes]] || [[Limits at Infinity]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || 5.5 || [[Alternating Series]] || * [[Limits at Infinity and Asymptotes]] || [[Limits at Infinity]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || 5.6 || [[Ratio and Root Tests]] || * '''[[Factorials]]'''  || &lt;br /&gt;
* [[Limits at Infinity and Asymptotes]]&lt;br /&gt;
|-&lt;br /&gt;
| Week 13 || 6.1 || [[Power Series and Functions]] || * [[Infinite Series]] || [[The Geometric Series Test]] &lt;br /&gt;
|-&lt;br /&gt;
| Week 14 || 6.2 || [[Properties of Power Series]] || * [[Differentiation Rules]]  || &lt;br /&gt;
* [[Antiderivatives]]  &lt;br /&gt;
|-&lt;br /&gt;
| Week 15 || 6.3 || [[Taylor and Maclaurin Series]] || * [[The Derivative as a Function]] || [[Higher-Order Derivatives]] &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5173</id>
		<title>MAT1223</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5173"/>
		<updated>2023-03-31T19:38:19Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: Undo revision 5172 by Juan.gutierrez3 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-2 Calculus (Volume 2) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;1   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;1.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integration by Substitution]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[The Definite Integral]] &amp;lt;!-- 1214-5.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize when to use integration by substitution.&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Area between Curves]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing Elementary Functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Definite Integral]] &amp;lt;!-- 1214-5.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the area of a region between two curves by integrating with respect to the independent variable.&lt;br /&gt;
* Find the area of a compound region.&lt;br /&gt;
* Determine the area of a region between two curves by integrating with respect to the dependent variable.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Determining Volumes by Slicing]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Areas of basic shapes]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the volume of a solid by integrating a cross-section (the slicing method).&lt;br /&gt;
* Find the volume of a solid of revolution using the disk method.&lt;br /&gt;
* Find the volume of a solid of revolution with a cavity using the washer method&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Volumes of Revolution, Cylindrical Shells]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[Determining Volumes by Slicing]] &amp;lt;!-- 1224-2.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the volume of a solid of revolution by using the method of cylindrical shells.&lt;br /&gt;
* Compare the different methods for calculating a volume of revolution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;3&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Arc Length and Surface Area]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the length of a plane curve between two points.&lt;br /&gt;
* Find the surface area of a solid of revolution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Physical Applications]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Areas of basic shapes]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Basic Physics (Mass, Force, Work, Newton's Second Law, Hooke's Law)]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the mass of a one-dimensional object from its linear density function.&lt;br /&gt;
* Determine the mass of a two-dimensional circular object from its radial density function.&lt;br /&gt;
* Calculate the work done by a variable force acting along a line.&lt;br /&gt;
* Calculate the work done in stretching/compressing a spring.&lt;br /&gt;
* Calculate the work done in lifting a rope/cable.&lt;br /&gt;
* Calculate the work done in pumping a liquid from one height to another.&lt;br /&gt;
* Find the hydrostatic force against a submerged vertical plate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.6&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Moments and Center of Mass]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the center of mass of objects distributed along a line.&lt;br /&gt;
* Find the center of mass of objects distributed in a plane.&lt;br /&gt;
* Locate the center of mass of a thin plate.&lt;br /&gt;
* Use symmetry to help locate the centroid of a thin plate.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Parts]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize when to use integration by parts.&lt;br /&gt;
* Use the integration-by-parts formula to evaluate indefinite integrals.&lt;br /&gt;
* Use the integration-by-parts formula to evaluate definite integrals.&lt;br /&gt;
* Use the tabular method to perform integration by parts.&lt;br /&gt;
* Solve problems involving applications of integration using integration by parts.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Trigonometric Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Evaluate integrals involving products and powers of sin(x) and cos(x).&lt;br /&gt;
* Evaluate integrals involving products and powers of sec(x) and tan(x).&lt;br /&gt;
* Evaluate integrals involving products of sin(ax), sin(bx), cos(ax), and cos(bx).&lt;br /&gt;
* Solve problems involving applications of integration using trigonometric integrals.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Trigonometric Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Completing the Square]] &amp;lt;!-- 1073-Mod 3.2--&amp;gt;&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Evaluate integrals involving the square root of a sum or difference of two squares.&lt;br /&gt;
* Solve problems involving applications of integration using trigonometric substitution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Partial Fractions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Factoring Polynomials]] &amp;lt;!-- 1073-Mod 0.2 --&amp;gt;&lt;br /&gt;
* [[Completing the Square]] &amp;lt;!-- 1073-Mod 3.2--&amp;gt;&lt;br /&gt;
* [[Dividing Polynomials|Long Division of Polynomials]] &amp;lt;!-- 1073-Mod 4.1 --&amp;gt;&lt;br /&gt;
* [[Systems of Linear Equations]] &amp;lt;!-- 1073-Mod 12.1 and 12.2 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate a rational function whose denominator is a product of linear and quadratic polynomials.&lt;br /&gt;
* Recognize distinct linear factors in a rational function.&lt;br /&gt;
* Recognize repeated linear factors in a rational function.&lt;br /&gt;
* Recognize distinct irreducible quadratic factors in a rational function.&lt;br /&gt;
* Recognize repeated irreducible quadratic factors in a rational function.&lt;br /&gt;
* Solve problems involving applications of integration using partial fractions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.7&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Improper Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Substitution]] &amp;lt;!-- 1224-3.3 --&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4 --&amp;gt;&lt;br /&gt;
* [[The Limit Laws]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1224-4.6 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize improper integrals and determine their convergence or divergence.&lt;br /&gt;
* Evaluate an integral over an infinite interval.&lt;br /&gt;
* Evaluate an integral over a closed interval with an infinite discontinuity within the interval.&lt;br /&gt;
* Use the comparison theorem to determine whether an improper integral is convergent or divergent.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;4.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Separation of Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Factoring Polynomials]] &amp;lt;!-- 1073-Mod 0.2 --&amp;gt;&lt;br /&gt;
* [[Exponential Properties]] &amp;lt;!-- 1073-Mod 9.1 --&amp;gt;&lt;br /&gt;
* [[Logarithmic Properties]] &amp;lt;!-- 1073-Mod 10.2 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[Initial Value Problem]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Substitution]] &amp;lt;!-- 1224-3.3 --&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize separable differential equations.&lt;br /&gt;
* Use separation of variables to solve a differential equation.&lt;br /&gt;
* Develop and analyze elementary mathematical models.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;8    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;4.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[First-Order Linear Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Separation of Variables]] &amp;lt;!-- 1224-4.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write a first-order linear differential equation in standard form.&lt;br /&gt;
* Find an integrating factor and use it to solve a first-order linear differential equation.&lt;br /&gt;
* Solve applied problems involving first-order linear differential equations.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Sequences]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws| The Limit Laws and Squeeze Theorem]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1214-4.6 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph| Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find a formula for the general term of a sequence.&lt;br /&gt;
* Find a recursive definition of a sequence.&lt;br /&gt;
* Determine the convergence or divergence of a given sequence.&lt;br /&gt;
* Find the limit of a convergent sequence. &lt;br /&gt;
* Determine whether a sequence is bounded and/or monotone.&lt;br /&gt;
* Apply the Monotone Convergence Theorem.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Infinite Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &amp;lt;!-- DNE (recommend 1093) --&amp;gt;&lt;br /&gt;
* [[Sequences]] &amp;lt;!-- 10224-5.1--&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write an infinite series using sigma notation.&lt;br /&gt;
* Find the nth partial sum of an infinite series.&lt;br /&gt;
* Define the convergence or divergence of an infinite series.&lt;br /&gt;
* Identify a geometric series.&lt;br /&gt;
* Apply the Geometric Series Test.&lt;br /&gt;
* Find the sum of a convergent geometric series.&lt;br /&gt;
* Identify a telescoping series.&lt;br /&gt;
* Find the sum of a telescoping series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Divergence and Integral Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1214-4.6 --&amp;gt;&lt;br /&gt;
* [[Continuity]] &amp;lt;!-- 1214-3.5 --&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph| Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Improper Integrals]] &amp;lt;!-- 1224-3.7 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Divergence Test to determine whether a series diverges.&lt;br /&gt;
* Use the Integral Test to determine whether a series converges or diverges.&lt;br /&gt;
* Use the p-Series Test to determine whether a series converges or diverges.&lt;br /&gt;
* Estimate the sum of a series by finding bounds on its remainder term.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Comparison Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests|The p-Series Test]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Direct Comparison Test to determine whether a series converges or diverges.&lt;br /&gt;
* Use the Limit Comparison Test to determine whether a series converges or diverges.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;11    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Alternating Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests|The p-Series Test]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
* [[Comparison Tests]] &amp;lt;!-- 1224-5.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Alternating Series Test to determine the convergence of an alternating series.&lt;br /&gt;
* Estimate the sum of an alternating series.&lt;br /&gt;
* Explain the meaning of absolute convergence and conditional convergence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;12 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.6&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Ratio and Root Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Factorials]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Ratio Test to determine absolute convergence or divergence of a series.&lt;br /&gt;
* Use the Root Test to determine absolute convergence or divergence of a series.&lt;br /&gt;
* Describe a strategy for testing the convergence or divergence of a series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Power Series and Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
* [[Comparison Tests]] &amp;lt;!-- 1224-5.4 --&amp;gt;&lt;br /&gt;
* [[Alternating Series]] &amp;lt;!-- 1224-5.5 --&amp;gt;&lt;br /&gt;
* [[Ratio and Root Tests]] &amp;lt;!-- 1224-5.6 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify a power series.&lt;br /&gt;
* Determine the interval of convergence and radius of convergence of a power series.&lt;br /&gt;
* Use a power series to represent certain functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Properties of Power Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]]  &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]]  &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Power Series and Functions]] &amp;lt;!-- 1224-6.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Combine power series by addition or subtraction.&lt;br /&gt;
* Multiply two power series together.&lt;br /&gt;
* Differentiate and integrate power series term-by-term.&lt;br /&gt;
* Use differentiation and integration of power series to represent certain functions as power series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Taylor and Maclaurin Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|Higher-Order Derivatives]] &amp;lt;!-- 1214-3.2 --&amp;gt;&lt;br /&gt;
* [[Power Series and Functions]] &amp;lt;!-- 1224-6.1 --&amp;gt;&lt;br /&gt;
* [[Properties of Power Series]] &amp;lt;!-- 1224-6.2 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find a Taylor or Maclaurin series representation of a function.&lt;br /&gt;
* Find the radius of convergence of a Taylor Series or Maclaurin series.&lt;br /&gt;
* Finding a Taylor polynomial of a given order for a function.&lt;br /&gt;
* Use Taylor's Theorem to estimate the remainder for a Taylor series approximation of a given function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;7.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Parametric Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Sketching Elementary Functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* '''[[Equation of a Circle]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Equation of an Ellipse]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Plot a curve described by parametric equations.&lt;br /&gt;
* Convert the parametric equations of a curve into the form y=f(x) by eliminating the parameter.&lt;br /&gt;
* Recognize the parametric equations of basic curves, such as a line and a circle.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;7.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[The Calculus of Parametric Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &amp;lt;!-- 1224-7.1 --&amp;gt;&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[The Derivative as a Function|Higher-Order Derivatives]] &amp;lt;!-- 1214-3.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the slope of the tangent line to a parametric curve at a point.&lt;br /&gt;
* Use the second derivative to determine the concavity of a parametric curve at a point.&lt;br /&gt;
* Determine the area bounded by a parametric curve.&lt;br /&gt;
* Determine the arc length of a parametric curve.&lt;br /&gt;
* Determine the area of a surface obtained by rotating a parametric curve about an axis.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5172</id>
		<title>MAT1223</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5172"/>
		<updated>2023-03-31T19:37:39Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */ Modifed content per input by Calc II instructors&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-2 Calculus (Volume 2) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;1.5&amp;lt;/div&amp;gt; || [[Integration by Substitution]] || * [[Differentiation Rules]] &amp;lt; || -- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials&lt;br /&gt;
|-&lt;br /&gt;
| Week 1 &amp;amp; 2 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.1&amp;lt;/div&amp;gt; || [[Area between Curves]] || * [[Toolkit Functions || Graphing Elementary Functions]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 2 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.2&amp;lt;/div&amp;gt; || [[Determining Volumes by Slicing]] || * '''[[Areas of basic shapes]]''' &amp;lt; || -- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.3&amp;lt;/div&amp;gt; || [[Volumes of Revolution, Cylindrical Shells]] || * [[Toolkit Functions || Graphing elementary functions]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 3 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.4&amp;lt;/div&amp;gt; || [[Arc Length and Surface Area]] || * [[Differentiation Rules]] &amp;lt; || -- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 4 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.5&amp;lt;/div&amp;gt; || [[Physical Applications]] || * '''[[Areas of basic shapes]]''' &amp;lt; || -- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 4 &amp;amp; 5 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.6&amp;lt;/div&amp;gt; || [[Moments and Center of Mass]] || * [[Toolkit Functions || Graphing elementary functions]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 5 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.1&amp;lt;/div&amp;gt; || [[Integration by Parts]] || * [[Differentiation Rules]] &amp;lt; || -- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.2&amp;lt;/div&amp;gt; || [[Trigonometric Integrals]] || * [[Trigonometric Functions]] &amp;lt; || -- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions&lt;br /&gt;
|-&lt;br /&gt;
| Week 6 &amp;amp; 7 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.3&amp;lt;/div&amp;gt; || [[Trigonometric Substitution]] || * [[Completing the Square]] &amp;lt; || -- 1073-Mod 3.2--&amp;gt;&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 7 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.4&amp;lt;/div&amp;gt; || [[Partial Fractions]] || * [[Factoring Polynomials]] &amp;lt; || -- 1073-Mod 0.2 --&amp;gt;&lt;br /&gt;
* [[Completing the Square]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 8  || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.7&amp;lt;/div&amp;gt; || [[Improper Integrals]] || * [[The Fundamental Theorem of Calculus]] &amp;lt; || -- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 9 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.1&amp;lt;/div&amp;gt; || [[Sequences]] || * [[The Limit Laws || The Limit Laws and Squeeze Theorem]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 10 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.2&amp;lt;/div&amp;gt; || [[Infinite Series]] || * '''[[Sigma notation]]''' &amp;lt; || -- DNE (recommend 1093) --&amp;gt;&lt;br /&gt;
* [[Sequences]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.3&amp;lt;/div&amp;gt; || [[The Divergence and Integral Tests]] || * [[The Limit Laws]] &amp;lt; || -- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes&lt;br /&gt;
|-&lt;br /&gt;
| Week 11 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.4&amp;lt;/div&amp;gt; || [[Comparison Tests]] || * [[Limits at Infinity and Asymptotes || Limits at Infinity]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.5&amp;lt;/div&amp;gt; || [[Alternating Series]] || * [[Limits at Infinity and Asymptotes || Limits at Infinity]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 12 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.6&amp;lt;/div&amp;gt; || [[Ratio and Root Tests]] || * '''[[Factorials]]''' &amp;lt; || -- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes&lt;br /&gt;
|-&lt;br /&gt;
| Week 13 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.1&amp;lt;/div&amp;gt; || [[Power Series and Functions]] || * [[Infinite Series || The Geometric Series Test]] &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 14 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.2&amp;lt;/div&amp;gt; || [[Properties of Power Series]] || * [[Differentiation Rules]] &amp;lt; || -- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]]  &amp;lt;&lt;br /&gt;
|-&lt;br /&gt;
| Week 15 || &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.3&amp;lt;/div&amp;gt; || [[Taylor and Maclaurin Series]] || * [[The Derivative as a Function || Higher-Order Derivatives]] &amp;lt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
	<entry>
		<id>https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5171</id>
		<title>MAT1223</title>
		<link rel="alternate" type="text/html" href="https://mathresearch.utsa.edu/wiki/index.php?title=MAT1223&amp;diff=5171"/>
		<updated>2023-03-31T19:25:03Z</updated>

		<summary type="html">&lt;p&gt;Juan.gutierrez3: /* Topics List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The textbook for this course is &lt;br /&gt;
[https://openstax.org/details/books/calculus-volume-2 Calculus (Volume 2) by Gilbert Strang, Edwin Herman, et al.]&lt;br /&gt;
&lt;br /&gt;
A comprehensive list of all undergraduate math courses at UTSA can be found [https://catalog.utsa.edu/undergraduate/coursedescriptions/mat/  here].&lt;br /&gt;
&lt;br /&gt;
The Wikipedia summary of [https://en.wikipedia.org/wiki/Calculus  calculus and its history].&lt;br /&gt;
&lt;br /&gt;
==Topics List==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Date !! Sections !! Topics !! Prerequisite Skills !! Student Learning Outcomes&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;1   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;1.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Integration by Substitution]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[The Definite Integral]] &amp;lt;!-- 1214-5.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize when to use integration by substitution.&lt;br /&gt;
* Use substitution to evaluate indefinite integrals.&lt;br /&gt;
* Use substitution to evaluate definite integrals.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;2&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Area between Curves]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing Elementary Functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Definite Integral]] &amp;lt;!-- 1214-5.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the area of a region between two curves by integrating with respect to the independent variable.&lt;br /&gt;
* Find the area of a compound region.&lt;br /&gt;
* Determine the area of a region between two curves by integrating with respect to the dependent variable.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;2 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Determining Volumes by Slicing]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Areas of basic shapes]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the volume of a solid by integrating a cross-section (the slicing method).&lt;br /&gt;
* Find the volume of a solid of revolution using the disk method.&lt;br /&gt;
* Find the volume of a solid of revolution with a cavity using the washer method&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;3 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Volumes of Revolution, Cylindrical Shells]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[Determining Volumes by Slicing]] &amp;lt;!-- 1224-2.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Calculate the volume of a solid of revolution by using the method of cylindrical shells.&lt;br /&gt;
* Compare the different methods for calculating a volume of revolution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;3&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Arc Length and Surface Area]] &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the length of a plane curve between two points.&lt;br /&gt;
* Find the surface area of a solid of revolution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Physical Applications]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Areas of basic shapes]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Volume of a cylinder]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Basic Physics (Mass, Force, Work, Newton's Second Law, Hooke's Law)]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Determine the mass of a one-dimensional object from its linear density function.&lt;br /&gt;
* Determine the mass of a two-dimensional circular object from its radial density function.&lt;br /&gt;
* Calculate the work done by a variable force acting along a line.&lt;br /&gt;
* Calculate the work done in stretching/compressing a spring.&lt;br /&gt;
* Calculate the work done in lifting a rope/cable.&lt;br /&gt;
* Calculate the work done in pumping a liquid from one height to another.&lt;br /&gt;
* Find the hydrostatic force against a submerged vertical plate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;4&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;2.6&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Moments and Center of Mass]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Graphing elementary functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the center of mass of objects distributed along a line.&lt;br /&gt;
* Find the center of mass of objects distributed in a plane.&lt;br /&gt;
* Locate the center of mass of a thin plate.&lt;br /&gt;
* Use symmetry to help locate the centroid of a thin plate.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;5&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Integration by Parts]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize when to use integration by parts.&lt;br /&gt;
* Use the integration-by-parts formula to evaluate indefinite integrals.&lt;br /&gt;
* Use the integration-by-parts formula to evaluate definite integrals.&lt;br /&gt;
* Use the tabular method to perform integration by parts.&lt;br /&gt;
* Solve problems involving applications of integration using integration by parts.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;5 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Trigonometric Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Evaluate integrals involving products and powers of sin(x) and cos(x).&lt;br /&gt;
* Evaluate integrals involving products and powers of sec(x) and tan(x).&lt;br /&gt;
* Evaluate integrals involving products of sin(ax), sin(bx), cos(ax), and cos(bx).&lt;br /&gt;
* Solve problems involving applications of integration using trigonometric integrals.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;6 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Trigonometric Substitution]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Completing the Square]] &amp;lt;!-- 1073-Mod 3.2--&amp;gt;&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Evaluate integrals involving the square root of a sum or difference of two squares.&lt;br /&gt;
* Solve problems involving applications of integration using trigonometric substitution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;6&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Partial Fractions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Factoring Polynomials]] &amp;lt;!-- 1073-Mod 0.2 --&amp;gt;&lt;br /&gt;
* [[Completing the Square]] &amp;lt;!-- 1073-Mod 3.2--&amp;gt;&lt;br /&gt;
* [[Dividing Polynomials|Long Division of Polynomials]] &amp;lt;!-- 1073-Mod 4.1 --&amp;gt;&lt;br /&gt;
* [[Systems of Linear Equations]] &amp;lt;!-- 1073-Mod 12.1 and 12.2 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Integrate a rational function whose denominator is a product of linear and quadratic polynomials.&lt;br /&gt;
* Recognize distinct linear factors in a rational function.&lt;br /&gt;
* Recognize repeated linear factors in a rational function.&lt;br /&gt;
* Recognize distinct irreducible quadratic factors in a rational function.&lt;br /&gt;
* Recognize repeated irreducible quadratic factors in a rational function.&lt;br /&gt;
* Solve problems involving applications of integration using partial fractions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;7&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;3.7&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Improper Integrals]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Substitution]] &amp;lt;!-- 1224-3.3 --&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4 --&amp;gt;&lt;br /&gt;
* [[The Limit Laws]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1224-4.6 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize improper integrals and determine their convergence or divergence.&lt;br /&gt;
* Evaluate an integral over an infinite interval.&lt;br /&gt;
* Evaluate an integral over a closed interval with an infinite discontinuity within the interval.&lt;br /&gt;
* Use the comparison theorem to determine whether an improper integral is convergent or divergent.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;8&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;4.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Separation of Variables]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Factoring Polynomials]] &amp;lt;!-- 1073-Mod 0.2 --&amp;gt;&lt;br /&gt;
* [[Exponential Properties]] &amp;lt;!-- 1073-Mod 9.1 --&amp;gt;&lt;br /&gt;
* [[Logarithmic Properties]] &amp;lt;!-- 1073-Mod 10.2 --&amp;gt;&lt;br /&gt;
* [[Linear Approximations and Differentials|Differentials]] &amp;lt;!-- 1214-4.2 --&amp;gt;&lt;br /&gt;
* [[Initial Value Problem]] &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Integrals]] &amp;lt;!-- 1224-3.2 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Substitution]] &amp;lt;!-- 1224-3.3 --&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Recognize separable differential equations.&lt;br /&gt;
* Use separation of variables to solve a differential equation.&lt;br /&gt;
* Develop and analyze elementary mathematical models.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;8    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;4.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[First-Order Linear Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Separation of Variables]] &amp;lt;!-- 1224-4.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write a first-order linear differential equation in standard form.&lt;br /&gt;
* Find an integrating factor and use it to solve a first-order linear differential equation.&lt;br /&gt;
* Solve applied problems involving first-order linear differential equations.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;9   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Sequences]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws| The Limit Laws and Squeeze Theorem]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1214-4.6 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph| Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find a formula for the general term of a sequence.&lt;br /&gt;
* Find a recursive definition of a sequence.&lt;br /&gt;
* Determine the convergence or divergence of a given sequence.&lt;br /&gt;
* Find the limit of a convergent sequence. &lt;br /&gt;
* Determine whether a sequence is bounded and/or monotone.&lt;br /&gt;
* Apply the Monotone Convergence Theorem.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Infinite Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Sigma notation]]''' &amp;lt;!-- DNE (recommend 1093) --&amp;gt;&lt;br /&gt;
* [[Sequences]] &amp;lt;!-- 10224-5.1--&amp;gt;&lt;br /&gt;
* [[Partial Fractions]] &amp;lt;!-- 1224-3.4--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Write an infinite series using sigma notation.&lt;br /&gt;
* Find the nth partial sum of an infinite series.&lt;br /&gt;
* Define the convergence or divergence of an infinite series.&lt;br /&gt;
* Identify a geometric series.&lt;br /&gt;
* Apply the Geometric Series Test.&lt;br /&gt;
* Find the sum of a convergent geometric series.&lt;br /&gt;
* Identify a telescoping series.&lt;br /&gt;
* Find the sum of a telescoping series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;10&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[The Divergence and Integral Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Limit Laws]] &amp;lt;!-- 1214-2.3 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes| Limits at Infinity]] &amp;lt;!-- 1214-4.6 --&amp;gt;&lt;br /&gt;
* [[Continuity]] &amp;lt;!-- 1214-3.5 --&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph| Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Improper Integrals]] &amp;lt;!-- 1224-3.7 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Divergence Test to determine whether a series diverges.&lt;br /&gt;
* Use the Integral Test to determine whether a series converges or diverges.&lt;br /&gt;
* Use the p-Series Test to determine whether a series converges or diverges.&lt;br /&gt;
* Estimate the sum of a series by finding bounds on its remainder term.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;11   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.4&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Comparison Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests|The p-Series Test]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Direct Comparison Test to determine whether a series converges or diverges.&lt;br /&gt;
* Use the Limit Comparison Test to determine whether a series converges or diverges.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;11    &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.5&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Alternating Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[Derivatives and the Shape of a Graph|Increasing and Decreasing Functions]] &amp;lt;!-- 1214-4.5 --&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests|The p-Series Test]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
* [[Comparison Tests]] &amp;lt;!-- 1224-5.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Alternating Series Test to determine the convergence of an alternating series.&lt;br /&gt;
* Estimate the sum of an alternating series.&lt;br /&gt;
* Explain the meaning of absolute convergence and conditional convergence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;12 &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;5.6&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Ratio and Root Tests]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* '''[[Factorials]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Limits at Infinity and Asymptotes|Limits at Infinity]] &amp;lt;!-- 1214-4.6--&amp;gt;&lt;br /&gt;
* [[L’Hôpital’s Rule]] &amp;lt;!-- 1214-4.8 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Use the Ratio Test to determine absolute convergence or divergence of a series.&lt;br /&gt;
* Use the Root Test to determine absolute convergence or divergence of a series.&lt;br /&gt;
* Describe a strategy for testing the convergence or divergence of a series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;12   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
  &lt;br /&gt;
[[Power Series and Functions]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Infinite Series|The Geometric Series Test]] &amp;lt;!-- 1224-5.2 --&amp;gt;&lt;br /&gt;
* [[The Divergence and Integral Tests]] &amp;lt;!-- 1224-5.3 --&amp;gt;&lt;br /&gt;
* [[Comparison Tests]] &amp;lt;!-- 1224-5.4 --&amp;gt;&lt;br /&gt;
* [[Alternating Series]] &amp;lt;!-- 1224-5.5 --&amp;gt;&lt;br /&gt;
* [[Ratio and Root Tests]] &amp;lt;!-- 1224-5.6 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Identify a power series.&lt;br /&gt;
* Determine the interval of convergence and radius of convergence of a power series.&lt;br /&gt;
* Use a power series to represent certain functions.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;13&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
[[Properties of Power Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[Antiderivatives]]  &amp;lt;!-- 1214-4.10 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]]  &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Power Series and Functions]] &amp;lt;!-- 1224-6.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Combine power series by addition or subtraction.&lt;br /&gt;
* Multiply two power series together.&lt;br /&gt;
* Differentiate and integrate power series term-by-term.&lt;br /&gt;
* Use differentiation and integration of power series to represent certain functions as power series.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;14  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;6.3&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||  &lt;br /&gt;
&lt;br /&gt;
[[Taylor and Maclaurin Series]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[The Derivative as a Function|Higher-Order Derivatives]] &amp;lt;!-- 1214-3.2 --&amp;gt;&lt;br /&gt;
* [[Power Series and Functions]] &amp;lt;!-- 1224-6.1 --&amp;gt;&lt;br /&gt;
* [[Properties of Power Series]] &amp;lt;!-- 1224-6.2 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find a Taylor or Maclaurin series representation of a function.&lt;br /&gt;
* Find the radius of convergence of a Taylor Series or Maclaurin series.&lt;br /&gt;
* Finding a Taylor polynomial of a given order for a function.&lt;br /&gt;
* Use Taylor's Theorem to estimate the remainder for a Taylor series approximation of a given function.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;7.1&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[Parametric Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Toolkit Functions|Sketching Elementary Functions]] &amp;lt;!-- 1073-Mod 1.2 --&amp;gt;&lt;br /&gt;
* '''[[Equation of a Circle]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* '''[[Equation of an Ellipse]]''' &amp;lt;!-- Grades 6-12 --&amp;gt;&lt;br /&gt;
* [[Trigonometric Functions]] &amp;lt;!-- 1093-2.2 --&amp;gt;&lt;br /&gt;
* [[Properties of the Trigonometric Functions|Trigonometric Identities]] &amp;lt;!-- 1093-3.4 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Plot a curve described by parametric equations.&lt;br /&gt;
* Convert the parametric equations of a curve into the form y=f(x) by eliminating the parameter.&lt;br /&gt;
* Recognize the parametric equations of basic curves, such as a line and a circle.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|Week&amp;amp;nbsp;15   &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;7.2&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
[[The Calculus of Parametric Equations]]&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* [[Parametric Equations]] &amp;lt;!-- 1224-7.1 --&amp;gt;&lt;br /&gt;
* [[Differentiation Rules]] &amp;lt;!-- 1214-3.3 --&amp;gt;&lt;br /&gt;
* [[The Derivative as a Function|Higher-Order Derivatives]] &amp;lt;!-- 1214-3.2 --&amp;gt;&lt;br /&gt;
* [[The Fundamental Theorem of Calculus]] &amp;lt;!-- 1214-5.3 --&amp;gt;&lt;br /&gt;
* [[Integration by Substitution]] &amp;lt;!-- 1224-1.5 --&amp;gt;&lt;br /&gt;
* [[Integration by Parts]] &amp;lt;!-- 1224-3.1 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
* Find the slope of the tangent line to a parametric curve at a point.&lt;br /&gt;
* Use the second derivative to determine the concavity of a parametric curve at a point.&lt;br /&gt;
* Determine the area bounded by a parametric curve.&lt;br /&gt;
* Determine the arc length of a parametric curve.&lt;br /&gt;
* Determine the area of a surface obtained by rotating a parametric curve about an axis.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Juan.gutierrez3</name></author>
		
	</entry>
</feed>