CS232.

Slides:



Advertisements
Similar presentations
Chapter 28 – Part II Matrix Operations. Gaussian elimination Gaussian elimination LU factorization LU factorization Gaussian elimination with partial.
Advertisements

Chapter 2 Solutions of Systems of Linear Equations / Matrix Inversion
Linear Algebra Applications in Matlab ME 303. Special Characters and Matlab Functions.
MATH 685/ CSI 700/ OR 682 Lecture Notes
Lecture 7 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
Lecture 9: Introduction to Matrix Inversion Gaussian Elimination Sections 2.4, 2.5, 2.6 Sections 2.2.3, 2.3.
Lecture 6 Matrix Operations and Gaussian Elimination for Solving Linear Systems Shang-Hua Teng.
Chapter 9 Gauss Elimination The Islamic University of Gaza
Lecture 11 - LU Decomposition
Maths for Computer Graphics
Linear Algebraic Equations
Lecture 6 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
Matrix Operations. Matrix Notation Example Equality of Matrices.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
Lecture 14 Simplex, Hyper-Cube, Convex Hull and their Volumes
Chapter 2 Matrices Definition of a matrix.
Lecture 3 Hyper-planes, Matrices, and Linear Systems
Lecture 7 Hyper-planes, Matrices, and Linear Systems Shang-Hua Teng.
Lecture 2: Geometry vs Linear Algebra Points-Vectors and Distance-Norm Shang-Hua Teng.
10.1 Gaussian Elimination Method
資訊科學數學11 : Linear Equation and Matrices
Copyright © Cengage Learning. All rights reserved. 7.6 The Inverse of a Square Matrix.
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
Introduction The central problems of Linear Algebra are to study the properties of matrices and to investigate the solutions of systems of linear equations.
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
Chapter 1 – Linear Equations
Scientific Computing Linear Systems – LU Factorization.
Graphics CSE 581 – Interactive Computer Graphics Mathematics for Computer Graphics CSE 581 – Roger Crawfis (slides developed from Korea University slides)
ECON 1150 Matrix Operations Special Matrices
Advanced Computer Graphics Spring 2014 K. H. Ko School of Mechatronics Gwangju Institute of Science and Technology.
Square n-by-n Matrix.
MA2213 Lecture 5 Linear Equations (Direct Solvers)
Slide Chapter 7 Systems and Matrices 7.1 Solving Systems of Two Equations.
Chapter 7 Notes Honors Pre-Calculus. 7.1/7.2 Solving Systems Methods to solve: EXAMPLES: Possible intersections: 1 point, 2 points, none Elimination,
Review of Matrices Or A Fast Introduction.
1 Math Review Coordinate systems 2-D, 3-D Vectors Matrices Matrix operations.
10.4 Matrix Algebra 1.Matrix Notation 2.Sum/Difference of 2 matrices 3.Scalar multiple 4.Product of 2 matrices 5.Identity Matrix 6.Inverse of a matrix.
Linear Algebra 1.Basic concepts 2.Matrix operations.
Lecture 8 Matrix Inverse and LU Decomposition
Chapter 9 Gauss Elimination The Islamic University of Gaza
1. Systems of Linear Equations and Matrices (8 Lectures) 1.1 Introduction to Systems of Linear Equations 1.2 Gaussian Elimination 1.3 Matrices and Matrix.
10.4 Matrix Algebra 1.Matrix Notation 2.Sum/Difference of 2 matrices 3.Scalar multiple 4.Product of 2 matrices 5.Identity Matrix 6.Inverse of a matrix.
Chapter 4 Section 5 and 6 Finding and Using Inverses Algebra 2 Notes February 26, 2009.
Ch 6 Vector Spaces. Vector Space Axioms X,Y,Z elements of  and α, β elements of  Def of vector addition Def of multiplication of scalar and vector These.
Section 1.7 Linear Independence and Nonsingular Matrices
2.5 – Determinants and Multiplicative Inverses of Matrices.
Unit #1 Linear Systems Fall Dr. Jehad Al Dallal.
Linear Algebra Review Tuesday, September 7, 2010.
Linear Algebra Engineering Mathematics-I. Linear Systems in Two Unknowns Engineering Mathematics-I.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Graphics Graphics Korea University kucg.korea.ac.kr Mathematics for Computer Graphics 고려대학교 컴퓨터 그래픽스 연구실.
Lecture 1 Linear algebra Vectors, matrices. Linear algebra Encyclopedia Britannica:“a branch of mathematics that is concerned with mathematical structures.
Maths for Signals and Systems Linear Algebra for Engineering Applications Lectures 1-2, Tuesday 13 th October 2014 DR TANIA STATHAKI READER (ASSOCIATE.
Numerical Computation Lecture 6: Linear Systems – part II United International College.
MTH108 Business Math I Lecture 20.
Solving Linear Systems
Matrices and Vector Concepts
Linear Algebra review (optional)
Introduction The central problems of Linear Algebra are to study the properties of matrices and to investigate the solutions of systems of linear equations.
Introduction The central problems of Linear Algebra are to study the properties of matrices and to investigate the solutions of systems of linear equations.
Linear Algebra Lecture 2.
Spring Dr. Jehad Al Dallal
Linear Equations.
Linear independence and matrix rank
Linear Algebra Lecture 15.
Numerical Analysis Lecture14.
CSE 541 – Numerical Methods
Lecture 2: Geometry vs Linear Algebra Points-Vectors and Distance-Norm
Linear Algebra review (optional)
Lecture 8 Matrix Inverse and LU Decomposition
Presentation transcript:

CS232

Schedule 1. Introduction 2. Points vs vector (distance, balls, sphere) Chapter 1 3. Divide and Conquer: Algorithms for Near Neighbor Problem Handout (section)

4. Hyperplanes Chapter 2 Ray intersections Lines By linear equations By two points When does a line passing the origin Intersection of two lines Matrix and algebraic approach (two variables and two equations)

3D Ray and mirrors Planes in three dimensions By linear equations By three points When does a plane passing the origin

Hyperplanes Hypereplanes in n-dimensions Intersection of three planes Matrix and algebraic approach (three variables and equations) Hypereplanes in n-dimensions By linear equations By n points When does a hyperplane passing through the origin Intersection of n hyperplanes in n dimensions

Matrix Form What is a matrix? Matrix vector multiplication (inner product after all) Matrix form of intersection of n hyperplanes --- system of linear equations?

Column Picture: combination of vectors Find proper linear combinations of vectors Visualize hyperplane is hard, so you might eventually like the column pictures.

Repeated the questions Row pictures: n hyperplanes meets at a single points Column pictures: combines n vectors to produce another vector

Gaussian Elimination Gaussian Elimination in 2 dimensions example Pictures Pivots Multipliers Upper triangular matrix Back substitution

Two dimensions Unique solution No solution Infinitely many solutions What if the pivot is 0!!!

3D Gaussian Elimination in 3 dimensions example Pictures Pivots Multipliers Upper triangular matrix Back substitution Can be extended to any dimensions

5. Gaussian Elimination (General form) Matrix Algebra Matrix addition Scalar times a matrix Matrix multiplication (dimensions have to agree) Associative law Non commutative law

Gaussian Elimination (General form) Identity matrix Elimination matrix

Permutation Matrix

Matrix algebra (General form) All the laws (page 58 – 59)

Complexity of Matrix Multiplication cube

Block Multiplication

Strassen’s Fast Matrix Mulplication Divide and conquer

6. Inverse Matrix 7 Quiz 1 8 LU factorization Rest of chapter 2

9. Two dimensional convex Hull From the handout Convex combination

10. Algorithms for Null space 3.1 – 3.3

11. Complete Linear Solver 3.4 – 3.6

12. No class 13 Geometric Projection 4.1 – 4.2

14. Midterm 15 Least Square Algorithm

16. QR Decomposition

17-18 no classes spring break

19. Hubs and Authority Theory for Webs Hand out Understanding webs How Google works

20. Simplex and its Volume Chapter 5

21. Determinants: Matrix Representation of volume

22. Eivenvalue problem and Spectral Geometry

23. Quiz 2

24. Diagonalization

25. Quadratic Shapes Positive Definite matrices

26. Dimensional Reduction Singular value Decomposition

27. Application: Computer Graphics

28. Spherical Geometry Points on sphere Caps Stereographic Transformation

29. Geometric Transformation Chapter 7

30 Geometric Transformation

31. Triangulations and Voronoi Diagram