Intro to Linear Algebra
(Wee Kean here.) I'd like to give a brief intro to linear algebra and wrap up with some personal experience with learning math.
Definitions
A vector space is a set of elements with two operations and , representing scalar multiplication and addition respectively. They satisfy the following axioms,
In summary, addition is commutative and associative, addition distibutes over multiplication and multiplication distributes over addition like you expect it to. In general, you can replace with any field but encapsulates most of the intuition.
A familiar example of a vector space would be the set of tuples - a 2D vector. Addition works component wise - . Multiplication works as expected too - .
Linear Independence
We say that a set of vectors are linearly independent if and only if the only solution to the equation
is .
Span
Similarly, the span of a set of vectors is the set of vectors attainable from a linear combination of these vectors. In other words, the set of vectors such that
for some .
Basis
A basis for a vector space is a set of linearly independent vectors such that the span of these vectors is itself. For example, is a basis for .
Dimension
The dimension of a vector space is then, the cardinality of a basis of . We can show this is well-defined for vector spaces with a finite basis. The idea is to show the stronger statement: if , are finite subsets of such that spans and is linearly independent then . Suppose , , then since spans , . Then, WLOG, is non-zero. Then, hence is spanning. We repeat with , utilizing the fact that some coefficient must be non-zero at each step since is linearly independent.
An application
(Iran TST 2012 Q3) Let be a positive integer. Let be a subset of points on the plane with these conditions:
i) There does not exist lines in the plane such that every element of is on at least one of them.
ii) for all there exists lines in the plane such that every element of is on at least one of them.
Find maximum of .
Trying some small cases, a good guess is , achieved when the points are arranged in a triangular array.
Each line is of the form . Drawing from the construction utilised in lagrange interpolation, if we product these lines, we get some two variable polynomial which evaluates to 0 at all but one point. In other words, for each point in the set , there exists some two variable polynomial which evaluates to 0 at all points except . Then, these polynomials must be linearly independent. But each term in the polynomial has degree less than or equal to . The dimension of the vector space of all two variable polynomials with degree less than or equal to is . Hence, the number of such polynomials and hence the number of points is less than or equal to as needed.
Rant Warning
I had a brief intro to linear algebra in secondary 2, taught in RI's Euler Programme. I was told that the determinant (whatever that meant) of a 2 by 2 matrix is and a unique solution exists iff that quantity was non-zero. I was taught how to perform guassian elimination on a general matrix and what the row echelon form of a matrix is and how to derive it. Or how to use Cramer's rule to solve a simultaneous equation.
The lasting impression I got was that linear algebra was all about staring at large grids of numbers and following some strict rules of manipulating these numbers to obtain solutions to some simulataneous equations. Needless to say, I was extremely unimpressed. Later on, I realised that a lot of things were vector spaces, not just list of numbers - solutions to linear differential equations formed vectors spaces, solutions to linear recursions formed vector spaces and I realise "ah, there was a lot more to this."
Anyways, if you're in a similar situation, I hope this post resparks your interest!
Comments
Post a Comment