<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ClearMath</title>
	<atom:link href="http://clearmath.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://clearmath.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 20 Apr 2008 15:43:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='clearmath.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ClearMath</title>
		<link>http://clearmath.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://clearmath.wordpress.com/osd.xml" title="ClearMath" />
	<atom:link rel='hub' href='http://clearmath.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Matrix Operations</title>
		<link>http://clearmath.wordpress.com/2008/04/20/matrix-operations/</link>
		<comments>http://clearmath.wordpress.com/2008/04/20/matrix-operations/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 15:43:06 +0000</pubDate>
		<dc:creator>ddube</dc:creator>
				<category><![CDATA[Linear Algebra]]></category>

		<guid isPermaLink="false">http://clearmath.wordpress.com/?p=6</guid>
		<description><![CDATA[A little bit more basic stuff before I go on. I want to quickly touch on some basic matrix operations. This is a crash course, I may try to be more specific and flesh this out later, but I don&#8217;t want to be spending time describing this basic stuff right now, I&#8217;m more interested in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=6&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A little bit more basic stuff before I go on.  I want to quickly touch on some basic matrix operations.  This is a crash course, I may try to be more specific and flesh this out later, but I don&#8217;t want to be spending time describing this basic stuff right now, I&#8217;m more interested in some applications of these techniques.</p>
<p>The first thing to know, which may be obvious, is that a vector is analogous to a <strong>column</strong> of a matrix.  If we want to talk about a <strong>row</strong> of a matrix, we need to <strong>transpose</strong> the vector.  I am using an apostrophe, <img src='http://s0.wp.com/latex.php?latex=%27&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#039;' title='&#039;' class='latex' />, as the transpose operator.  For example:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7Ba%7D+%3D+%5Cleft%7C%5Cbegin%7Barray%7D%7Bc%7Da_1%5C%5Ca_2%5Cend%7Barray%7D%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{a} = &#92;left|&#92;begin{array}{c}a_1&#92;&#92;a_2&#92;end{array}&#92;right|' title='&#92;mathbf{a} = &#92;left|&#92;begin{array}{c}a_1&#92;&#92;a_2&#92;end{array}&#92;right|' class='latex' /> is a column vector, while <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7Ba%27%7D+%3D+%28a_1%2Ca_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{a&#039;} = (a_1,a_2)' title='&#92;mathbf{a&#039;} = (a_1,a_2)' class='latex' /> is a row vector.  (A lot of times, I will get lazy and write a column vector as a row vector to save time, but the meaning is ALWAYS supposed to be what I just wrote here)</p>
<p>This distinction seems stupid right now, but it becomes very important later.  <strong>Always</strong> keep this in the back of your head.  The dimensions of arrays and matrices matter a lot when things get more complicated, even though it seems trivially obvious right now.</p>
<p>So, on to matrix operations.  Recall our matrix:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c+c%7D+a_%7B1%2C1%7D+%26+a_%7B1%2C2%7D+%26+a_%7B1%2C3%7D+%5C%5Ca_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%26+a_%7B2%2C3%7D+%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right|' title='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right|' class='latex' /></p>
<p>Suppose we want to multiply this matrix by a single number.  We will call this number <img src='http://s0.wp.com/latex.php?latex=c&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='c' title='c' class='latex' /> for now, and we write this like this:</p>
<p><img src='http://s0.wp.com/latex.php?latex=c%2A%5Cmathbf%7BA%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='c*&#92;mathbf{A}' title='c*&#92;mathbf{A}' class='latex' /></p>
<p>Let&#8217;s see what is going on here:</p>
<p><img src='http://s0.wp.com/latex.php?latex=c%2A%5Cmathbf%7BA%7D+%3D+c%2A%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c+c%7D+a_%7B1%2C1%7D+%26+a_%7B1%2C2%7D+%26+a_%7B1%2C3%7D+%5C%5Ca_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%26+a_%7B2%2C3%7D+%5Cend%7Barray%7D+%5Cright%7C+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c+c%7D+c%2Aa_%7B1%2C1%7D+%26+c%2Aa_%7B1%2C2%7D+%26+c%2Aa_%7B1%2C3%7D+%5C%5Cc%2Aa_%7B2%2C1%7D+%26+c%2Aa_%7B2%2C2%7D+%26+c%2Aa_%7B2%2C3%7D+%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='c*&#92;mathbf{A} = c*&#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right| = &#92;left| &#92;begin{array}{c c c} c*a_{1,1} &amp; c*a_{1,2} &amp; c*a_{1,3} &#92;&#92;c*a_{2,1} &amp; c*a_{2,2} &amp; c*a_{2,3} &#92;end{array} &#92;right|' title='c*&#92;mathbf{A} = c*&#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right| = &#92;left| &#92;begin{array}{c c c} c*a_{1,1} &amp; c*a_{1,2} &amp; c*a_{1,3} &#92;&#92;c*a_{2,1} &amp; c*a_{2,2} &amp; c*a_{2,3} &#92;end{array} &#92;right|' class='latex' /></p>
<p>That <img src='http://s0.wp.com/latex.php?latex=c&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='c' title='c' class='latex' /> can be thought of as a 1&#215;1 matrix, and we call that a constant.  When we multiply a constant by a matrix, each element in the matrix gets multiplied by that constant.</p>
<p>Typically, we can only add matrices that have the same dimensions.  When we do this, we add element by element:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c%7D+a_%7B1%2C1%7D+%26+a_%7B1%2C2%7D++%5C%5Ca_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%5Cend%7Barray%7D+%5Cright%7C+%2B+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c%7D+b_%7B1%2C1%7D+%26+b_%7B1%2C2%7D++%5C%5Cb_%7B2%2C1%7D+%26+b_%7B2%2C2%7D+%5Cend%7Barray%7D+%5Cright%7C+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c%7D+a_%7B1%2C1%7D%2Bb_%7B1%2C1%7D+%26+a_%7B1%2C2%7D+%2B+b_%7B1%2C2%7D++%5C%5Ca_%7B2%2C1%7D+%2B+a_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%2B+b_%7B2%2C2%7D+%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;left| &#92;begin{array}{c c} a_{1,1} &amp; a_{1,2}  &#92;&#92;a_{2,1} &amp; a_{2,2} &#92;end{array} &#92;right| + &#92;left| &#92;begin{array}{c c} b_{1,1} &amp; b_{1,2}  &#92;&#92;b_{2,1} &amp; b_{2,2} &#92;end{array} &#92;right| = &#92;left| &#92;begin{array}{c c} a_{1,1}+b_{1,1} &amp; a_{1,2} + b_{1,2}  &#92;&#92;a_{2,1} + a_{2,1} &amp; a_{2,2} + b_{2,2} &#92;end{array} &#92;right|' title='&#92;left| &#92;begin{array}{c c} a_{1,1} &amp; a_{1,2}  &#92;&#92;a_{2,1} &amp; a_{2,2} &#92;end{array} &#92;right| + &#92;left| &#92;begin{array}{c c} b_{1,1} &amp; b_{1,2}  &#92;&#92;b_{2,1} &amp; b_{2,2} &#92;end{array} &#92;right| = &#92;left| &#92;begin{array}{c c} a_{1,1}+b_{1,1} &amp; a_{1,2} + b_{1,2}  &#92;&#92;a_{2,1} + a_{2,1} &amp; a_{2,2} + b_{2,2} &#92;end{array} &#92;right|' class='latex' /></p>
<p>Here, the two matrices are <strong>both</strong> 2&#215;2.  We can add matrices as long as they both have the same dimensions; such as 2&#215;3, 4&#215;7, lxw, etc.</p>
<p>Finally, let&#8217;s quickly look at matrix multiplication.  Again, the dimensions matter.  The rule of thumb for multiplying matrices is that the first matrix has to have the same number of columns as the second matrix has rows.  For example, if we have one matrix that is 3&#215;4, then it can be multiplied by any matrix with 4 rows: 4&#215;3, 4&#215;1, 4&#215;4646.  The order of the multiplication matters here!  It is not always true that <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D+%2A+%5Cmathbf%7BB%7D+%3D+%5Cmathbf%7BB%7D+%2A+%5Cmathbf%7BA%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A} * &#92;mathbf{B} = &#92;mathbf{B} * &#92;mathbf{A}' title='&#92;mathbf{A} * &#92;mathbf{B} = &#92;mathbf{B} * &#92;mathbf{A}' class='latex' />!  This should be obvious if you think about matrices that are not square.</p>
<p>I am being vague here, because I don&#8217;t want to get into too many of the details.  Here is an example of how this works, because for now I only want to emphasize the mechanics of it:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c+c%7D+a_%7B1%2C1%7D+%26+a_%7B1%2C2%7D+%26+a_%7B1%2C3%7D++%5C%5Ca_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%26+a_%7B2%2C3%7D%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3}  &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3}&#92;end{array} &#92;right|' title='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3}  &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3}&#92;end{array} &#92;right|' class='latex' /></p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BB%7D+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c%7D+b_%7B1%2C1%7D+%26+b_%7B1%2C2%7D+%5C%5Cb_%7B2%2C1%7D+%26+b_%7B2%2C2%7D+%5C%5Cb_%7B3%2C1%7D+%26+b_%7B3%2C2%7D%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{B} = &#92;left| &#92;begin{array}{c c} b_{1,1} &amp; b_{1,2} &#92;&#92;b_{2,1} &amp; b_{2,2} &#92;&#92;b_{3,1} &amp; b_{3,2}&#92;end{array} &#92;right|' title='&#92;mathbf{B} = &#92;left| &#92;begin{array}{c c} b_{1,1} &amp; b_{1,2} &#92;&#92;b_{2,1} &amp; b_{2,2} &#92;&#92;b_{3,1} &amp; b_{3,2}&#92;end{array} &#92;right|' class='latex' /></p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D%2A%5Cmathbf%7BB%7D+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c%7D+a_%7B1%2C1%7D%2Ab_%7B1%2C1%7D+%2B+a_%7B1%2C2%7D%2Ab_%7B2%2C1%7D+%2B+a_%7B1%2C3%7D%2Ab_%7B3%2C1%7D+%26+a_%7B1%2C1%7D%2Ab_%7B1%2C2%7D+%2B+a_%7B1%2C2%7D%2Ab_%7B2%2C2%7D+%2B+a_%7B1%2C3%7D%2Ab_%7B3%2C2%7D++%5C%5C+a_%7B2%2C1%7D%2Ab_%7B1%2C1%7D+%2B+a_%7B2%2C2%7D%2Ab_%7B2%2C1%7D+%2B+a_%7B2%2C3%7D%2Ab_%7B3%2C1%7D++%26+a_%7B2%2C1%7D%2Ab_%7B1%2C2%7D+%2B+a_%7B2%2C2%7D%2Ab_%7B2%2C2%7D+%2B+a_%7B2%2C3%7D%2Ab_%7B3%2C2%7D+%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A}*&#92;mathbf{B} = &#92;left| &#92;begin{array}{c c} a_{1,1}*b_{1,1} + a_{1,2}*b_{2,1} + a_{1,3}*b_{3,1} &amp; a_{1,1}*b_{1,2} + a_{1,2}*b_{2,2} + a_{1,3}*b_{3,2}  &#92;&#92; a_{2,1}*b_{1,1} + a_{2,2}*b_{2,1} + a_{2,3}*b_{3,1}  &amp; a_{2,1}*b_{1,2} + a_{2,2}*b_{2,2} + a_{2,3}*b_{3,2} &#92;end{array} &#92;right|' title='&#92;mathbf{A}*&#92;mathbf{B} = &#92;left| &#92;begin{array}{c c} a_{1,1}*b_{1,1} + a_{1,2}*b_{2,1} + a_{1,3}*b_{3,1} &amp; a_{1,1}*b_{1,2} + a_{1,2}*b_{2,2} + a_{1,3}*b_{3,2}  &#92;&#92; a_{2,1}*b_{1,1} + a_{2,2}*b_{2,1} + a_{2,3}*b_{3,1}  &amp; a_{2,1}*b_{1,2} + a_{2,2}*b_{2,2} + a_{2,3}*b_{3,2} &#92;end{array} &#92;right|' class='latex' /></p>
<p>A 2&#215;3 times a 3&#215;2 gives us a 2&#215;2.  This is true in general: an axb times a bxc gives us an axc.  The general idea here is that you take the first column of the <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BB%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{B}' title='&#92;mathbf{B}' class='latex' /> matrix and multiply it by each row of <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A}' title='&#92;mathbf{A}' class='latex' /> in turn.  This populates the first column of the answer.  Then you take the next column of <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BB%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{B}' title='&#92;mathbf{B}' class='latex' /> and repeat to populate the next column of the answer.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/clearmath.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/clearmath.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clearmath.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clearmath.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clearmath.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=6&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clearmath.wordpress.com/2008/04/20/matrix-operations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c55d969c1b2dadbc5d6284e7ddef6620?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddube</media:title>
		</media:content>
	</item>
		<item>
		<title>Vectors and Matrices</title>
		<link>http://clearmath.wordpress.com/2008/04/19/vectors-and-matrices/</link>
		<comments>http://clearmath.wordpress.com/2008/04/19/vectors-and-matrices/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 15:30:54 +0000</pubDate>
		<dc:creator>ddube</dc:creator>
				<category><![CDATA[Linear Algebra]]></category>

		<guid isPermaLink="false">http://clearmath.wordpress.com/?p=5</guid>
		<description><![CDATA[Linear algebra notation doesn&#8217;t need to look as intimidating as it does! I think that mathematicians get really excited about the way equations look, and forget to think about the fact that other people might not understand them. Let&#8217;s go back to our linear equation: There must be an easier way to write that. In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=5&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Linear algebra notation doesn&#8217;t need to look as intimidating as it does!  I think that mathematicians get really excited about the way equations look, and forget to think about the fact that other people might not understand them.</p>
<p>Let&#8217;s go back to our linear equation:</p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1x_1+%2B+a_2x_2+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1x_1 + a_2x_2 = b' title='a_1x_1 + a_2x_2 = b' class='latex' /></p>
<p>There must be an easier way to write that.  In fact, I would guess that originally linear algebra started as a way to write math more compactly, and then the cleaner view of the math allowed for more insight and the development of the theory.</p>
<p>First, let&#8217;s talk about <strong>vectors</strong>.  Vectors are just lists that can be represented as a single variable name.  For example, in our linear equation above, let&#8217;s define some vectors:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7Ba%7D+%3D+%28a_1%2Ca_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{a} = (a_1,a_2)' title='&#92;mathbf{a} = (a_1,a_2)' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7Bx%7D+%3D+%28x_1%2Cx_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{x} = (x_1,x_2)' title='&#92;mathbf{x} = (x_1,x_2)' class='latex' /></p>
<p>This could also be written as:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cvec%7Ba%7D+%3D+%28a_1%2Ca_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;vec{a} = (a_1,a_2)' title='&#92;vec{a} = (a_1,a_2)' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=%5Cvec%7Bx%7D+%3D+%28x_1%2Cx_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;vec{x} = (x_1,x_2)' title='&#92;vec{x} = (x_1,x_2)' class='latex' /></p>
<p>These are the same thing!  I sort of prefer the first way, with the vectors being BOLD letters, because if I write this by hand I hate to put the little arrow over the letter.  From here on out, I&#8217;m using the first, BOLD, notation for vectors.</p>
<p>Before we go too far with vectors, let&#8217;s talk about <strong>matrices</strong>, too.  Here is a matrix:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7BA%7D+%3D+%5Cleft%7C+%5Cbegin%7Barray%7D%7Bc+c+c%7D+a_%7B1%2C1%7D+%26+a_%7B1%2C2%7D+%26+a_%7B1%2C3%7D+%5C%5Ca_%7B2%2C1%7D+%26+a_%7B2%2C2%7D+%26+a_%7B2%2C3%7D+%5Cend%7Barray%7D+%5Cright%7C&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right|' title='&#92;mathbf{A} = &#92;left| &#92;begin{array}{c c c} a_{1,1} &amp; a_{1,2} &amp; a_{1,3} &#92;&#92;a_{2,1} &amp; a_{2,2} &amp; a_{2,3} &#92;end{array} &#92;right|' class='latex' /></p>
<p>The only thing I want to point out for right now is that we use a BOLD CAPITAL letter for the matrix, and we can identify an element in the matrix by counting down the rows first and then into the columns.  The element <img src='http://s0.wp.com/latex.php?latex=a_%7B2%2C3%7D&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_{2,3}' title='a_{2,3}' class='latex' /> is in ROW 2, COLUMN 3.</p>
<p>Back to our linear equation, suppose it were possible to write this:</p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1x_1+%2B+a_2x_2+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1x_1 + a_2x_2 = b' title='a_1x_1 + a_2x_2 = b' class='latex' /></p>
<p>instead as this:</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cmathbf%7Ba%27x%7D+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='&#92;mathbf{a&#039;x} = b' title='&#92;mathbf{a&#039;x} = b' class='latex' /></p>
<p>It is possible, and in fact that is how you do it!  More on the notation later!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/clearmath.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/clearmath.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clearmath.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clearmath.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clearmath.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=5&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clearmath.wordpress.com/2008/04/19/vectors-and-matrices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c55d969c1b2dadbc5d6284e7ddef6620?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddube</media:title>
		</media:content>
	</item>
		<item>
		<title>What is a solution to a linear equation?</title>
		<link>http://clearmath.wordpress.com/2008/04/19/what-is-a-solution-to-a-linear-equation/</link>
		<comments>http://clearmath.wordpress.com/2008/04/19/what-is-a-solution-to-a-linear-equation/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 14:57:07 +0000</pubDate>
		<dc:creator>ddube</dc:creator>
				<category><![CDATA[Linear Algebra]]></category>
		<category><![CDATA[Linear System]]></category>

		<guid isPermaLink="false">http://clearmath.wordpress.com/?p=4</guid>
		<description><![CDATA[This may seem obvious, but I have struggled in certain places with understanding exactly what a solution to a linear system actually means. For example, suppose we have this equation: Suppose we know that a solution to this equation is . In this case, this means that . This is the definition that most books [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=4&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This may seem obvious, but I have struggled in certain places with understanding exactly what a solution to a linear system actually means.  For example, suppose we have this equation:</p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1x_1+%2B+a_2x_2+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1x_1 + a_2x_2 = b' title='a_1x_1 + a_2x_2 = b' class='latex' /></p>
<p>Suppose we know that a solution to this equation is <img src='http://s0.wp.com/latex.php?latex=%28p_1%2Cp_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='(p_1,p_2)' title='(p_1,p_2)' class='latex' />.  In this case, this means that <img src='http://s0.wp.com/latex.php?latex=a_1p_1+%2B+a_2p_2+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1p_1 + a_2p_2 = b' title='a_1p_1 + a_2p_2 = b' class='latex' />.  This is the definition that most books stop at, because it seems very obvious what is going on here.  A note I want to stress is that this is an equality, not a formula &#8212; from here on out, you can put <img src='http://s0.wp.com/latex.php?latex=b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='b' title='b' class='latex' /> anywhere you see <img src='http://s0.wp.com/latex.php?latex=a_1p_1+%2B+a_2p_2&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1p_1 + a_2p_2' title='a_1p_1 + a_2p_2' class='latex' />, and vice versa.</p>
<p>The thing that I want to push a little more on, though, is this:  Suppose we have <em>another</em> solution to this equation <img src='http://s0.wp.com/latex.php?latex=%28q_1%2Cq_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='(q_1,q_2)' title='(q_1,q_2)' class='latex' />.  This would mean that <img src='http://s0.wp.com/latex.php?latex=a_1q_1+%2B+a_2q_2+%3D+b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1q_1 + a_2q_2 = b' title='a_1q_1 + a_2q_2 = b' class='latex' /> also.</p>
<p>So we have two equations, both of which equal <img src='http://s0.wp.com/latex.php?latex=b&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='b' title='b' class='latex' />.  Let&#8217;s look at what happens when we set them equal to each other:</p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1p_1+%2B+a_2p_2+%3D+a_1q_1+%2B+a_2q_2&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1p_1 + a_2p_2 = a_1q_1 + a_2q_2' title='a_1p_1 + a_2p_2 = a_1q_1 + a_2q_2' class='latex' /></p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1p_1+-+a_1q_1+%2B+a_2p_2+-+a_2q_2+%3D+0&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1p_1 - a_1q_1 + a_2p_2 - a_2q_2 = 0' title='a_1p_1 - a_1q_1 + a_2p_2 - a_2q_2 = 0' class='latex' /> (subtract the right side)</p>
<p><img src='http://s0.wp.com/latex.php?latex=a_1%28p_1+-+q_1%29+%2B+a_2%28p_2+-+q_2%29+%3D+0&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1(p_1 - q_1) + a_2(p_2 - q_2) = 0' title='a_1(p_1 - q_1) + a_2(p_2 - q_2) = 0' class='latex' /> (use distributive property)</p>
<p>Now we see that the solution <img src='http://s0.wp.com/latex.php?latex=%28p_1+-+q_1%2Cp_2+-+q_2%29&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='(p_1 - q_1,p_2 - q_2)' title='(p_1 - q_1,p_2 - q_2)' class='latex' /> is a solution to the equation <img src='http://s0.wp.com/latex.php?latex=a_1x_1+%2B+a_2x_2+%3D+0&amp;bg=ffffe3&amp;fg=000000&amp;s=0' alt='a_1x_1 + a_2x_2 = 0' title='a_1x_1 + a_2x_2 = 0' class='latex' /></p>
<p>These two equations are clearly related.  For now, just keep in mind the coefficients for both of these equations were the same, and the only difference was the right side.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/clearmath.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/clearmath.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clearmath.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clearmath.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clearmath.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=4&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clearmath.wordpress.com/2008/04/19/what-is-a-solution-to-a-linear-equation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c55d969c1b2dadbc5d6284e7ddef6620?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddube</media:title>
		</media:content>
	</item>
		<item>
		<title>What is ClearMath?</title>
		<link>http://clearmath.wordpress.com/2008/04/18/what-is-clearmath/</link>
		<comments>http://clearmath.wordpress.com/2008/04/18/what-is-clearmath/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 12:08:13 +0000</pubDate>
		<dc:creator>ddube</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://clearmath.wordpress.com/?p=3</guid>
		<description><![CDATA[I&#8217;ve read quite a few textbooks on mathematics and stuff related to mathematics. There are quite a few really bad books out there. The author will assume you already know a lot about a subject, or the author won&#8217;t describe the basic stuff very well, or he&#8217;ll spend a ton of time on the boring [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=3&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve read quite a few textbooks on mathematics and stuff related to mathematics.  There are quite a few really bad books out there.  The author will assume you already know a lot about a subject, or the author won&#8217;t describe the basic stuff very well, or he&#8217;ll spend a ton of time on the boring basic stuff and then fly right through something that actually matters.</p>
<p>Any way you look at it, I hate these books.  I just want to learn the stuff.  And so I present ClearMath.  I hope to pick a different subject for each blog post that I have found horribly described in every textbook I&#8217;ve looked it up in, and do it a &lt;hopefully&gt; better justice here.   At the very least, if anyone reads this blog, they can tell me that I have no idea what I am talking about or that I am not clear at all.  And then we can fix it.  Textbooks are so stale; they need some interaction to be useful!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/clearmath.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/clearmath.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clearmath.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clearmath.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clearmath.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clearmath.wordpress.com&amp;blog=3509524&amp;post=3&amp;subd=clearmath&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clearmath.wordpress.com/2008/04/18/what-is-clearmath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c55d969c1b2dadbc5d6284e7ddef6620?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddube</media:title>
		</media:content>
	</item>
	</channel>
</rss>
