<?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/"
	>

<channel>
	<title>Trevor Pythagoras Maths &#187; explanation</title>
	<atom:link href="http://trevorpythag.co.uk/tag/explanation/feed/" rel="self" type="application/rss+xml" />
	<link>http://trevorpythag.co.uk</link>
	<description>Maths help and revision for GCSE, A/AS Level and Further Maths</description>
	<lastBuildDate>Fri, 18 May 2012 20:05:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Derive Quadratic Formula</title>
		<link>http://trevorpythag.co.uk/2009/mathematics/algebra/derive-quadratic-formula/</link>
		<comments>http://trevorpythag.co.uk/2009/mathematics/algebra/derive-quadratic-formula/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 21:44:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Algebra]]></category>
		<category><![CDATA[david woodford]]></category>
		<category><![CDATA[derive]]></category>
		<category><![CDATA[explanation]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[proof]]></category>
		<category><![CDATA[quadratic]]></category>
		<category><![CDATA[quadratic formula]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://trevorpythag.wordpress.com/?p=134</guid>
		<description><![CDATA[Derivation of the Quadratic formula by completing the square]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">If you want an explanation on using the formula go to the <a title="quadratic formula and c++ program" href="http://trevorpythag.wordpress.com/2008/02/24/quadratic-formula/">quadratic formula post (with a downloadable solver)</a></p>
<p style="text-align: left;">
<p style="text-align: left;">The quadratic formula,<br />
<img class="size-full wp-image-27 aligncenter" title="Quadratic Formula" src="http://trevorpythag.files.wordpress.com/2008/02/qdrtc2.gif" alt="x=-b +/- sqrt(b*b - 4ac)/2a" width="234" height="164" /></p>
<p>for the general equation ax<sup>2</sup>+bx+c=0</p>
<p style="text-align: left;">can be derived using the method of &#8220;completing the square&#8221; as follows.<br />
starting with</p>
<p style="text-align: center;">ax<sup>2</sup>+bx+c=0</p>
<p style="text-align: left;">divide through by a</p>
<p style="text-align: center;">x<sup>2</sup>+bx/a+c/a=0</p>
<p style="text-align: left;">take the c part to the other side</p>
<p style="text-align: center;">x<sup>2</sup>+bx/a=-c/a</p>
<p style="text-align: left;">In order to complete the square we need to add half the coefficient of x (that&#8217;s b/2a) squared to both sides so we get</p>
<p style="text-align: center;">x<sup>2</sup>+bx/a + b<sup>2</sup>/4a<sup>2</sup>=-c/a +b<sup>2</sup>/4a<sup>2</sup></p>
<p style="text-align: left;">Now we can factorise the left into a squared bracket (you can check this by multiplying it back out)</p>
<p style="text-align: center;">(x + b/2a)<sup>2</sup>=-c/a +b<sup>2</sup>/4a<sup>2</sup></p>
<p style="text-align: left;">So if we square root both sides and take b/2a to the other side we have x on its own</p>
<p style="text-align: center;">x = -b/2a ±√(-c/a +b<sup>2</sup>/4a<sup>2</sup>)</p>
<p style="text-align: left;">Now to get this in the more traditional form we can take out 1/2a (Which means each term in the root is timesed by 4a<sup>2</sup>) from the square root to put the whole thing over 2a</p>
<p style="text-align: center;"><strong>x = (-b ±√(b<sup>2</sup>-4ac))/2a</strong></p>
<p style="text-align: center;">
<h3>Quadratic Solver</h3>
<p>Fill in the boxes for the coefficients below to solve any quadratic equation (is also able to find complex roots)<br />
<!--start_raw--></p>
<div style="text-align:center;">
<input type="text" id="quadratica" size="5" />x<sup>2</sup>+<br />
<input type="text" id="quadraticb" size="5" />x+<br />
<input type="text" id="quadraticc" size="5" />=<br />
<input </p>
<p>type="text" id="quadraticd" size="5" /><br />
<br/></p>
<input type="button" value="solve" onclick="solvequadratic();" />
<br/><br />
<span id="quadraticans"></span></div>
<p><script type="text/javascript">
function solvequadratic()
{
	var x;
	var a = Number(document.getElementById("quadratica").value);
	var b = Number(document.getElementById("quadraticb").value);
	var c = Number(document.getElementById("quadraticc").value) - Number(document.getElementById("quadraticd").value);
	var errormessage = "";
	if(isNaN(a))
	{
		if(document.getElementById("quadratica").value == "-")
		{
			a=-1;
		}
		else
		{
			errormessage += "Please only enter numeric values for the coefficent of x squared <br/>";	
			var error = 1;
		}
	}
	if(isNaN(b))
	{
		if(document.getElementById("quadraticb").value == "-")
		{
			a=-1;
		}
		else
		{
			errormessage += "Please only enter numeric values for the coefficent of x <br/>";	
			var error = 1;
		}
	}
	if(isNaN(c))
	{
			errormessage += "Please only enter numeric values for the coefficent of x <br/>";	
			var error = 1;
	}
	if(error==1)
	{
		document.getElementById("quadraticans").innerHTML = errormessage;
		return;
	}</p>
<p>	if(a ==0 &#038;&#038; b==0)
	{
		document.getElementById("quadraticans").innerHTML = "To solve the equation it must have at least one x term";
		return;
	}
	else if(a==0)
	{
		x = c/b;
		document.getElementById("quadraticans").innerHTML = "x = " + x;
		return;
	}</p>
<p>	realx = -b/(2*a);
	rootof = (b*b - 4*a*c)/(4*a*a);
	if(rootof<0)
	{
		imagx = Math.sqrt(-rootof);
		document.getElementById("quadraticans").innerHTML = "x = " + realx + " + " + imagx + "i and x = " + realx + " - " + imagx + "i";
	}
	else if(rootof>0)
	{
		document.getElementById("quadraticans").innerHTML = "x = " + (realx + Math.sqrt(rootof)) + " and x = " + (realx - Math.sqrt(rootof));
	}
	else
	{
		document.getElementById("quadraticans").innerHTML = "x = " +  realx + "(is a repeated root)";
	}
}
</script><!--end_raw--></p>
<h3  class="related_post_title">Also see</h3><ul class="related_post"><li><a href="http://trevorpythag.co.uk/2008/mathematics/trigonometry/proof-of-cosine-rule/" title="Proof of Cosine Rule">Proof of Cosine Rule</a> (4)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/geometry/area-of-a-triangle/" title="Area of a Triangle">Area of a Triangle</a> (3)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/number-theory/proof-by-contradiction/" title="Proof by Contradiction">Proof by Contradiction</a> (0)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/number-theory/rational-and-irrational-numbers/" title="Rational and Irrational Numbers">Rational and Irrational Numbers</a> (5)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/algebra/how-to-use-surds-add-multiply-and-rationalise/" title="How to use Surds &#8211; Add, Multiply and Rationalise">How to use Surds &#8211; Add, Multiply and Rationalise</a> (1)</li><li><a href="http://trevorpythag.co.uk/2008/mathematics/trigonometry/trigonometry-identities/" title="Trigonometry Identities">Trigonometry Identities</a> (11)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://trevorpythag.co.uk/2009/mathematics/algebra/derive-quadratic-formula/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Sin, Cos and Tan</title>
		<link>http://trevorpythag.co.uk/2008/mathematics/trigonometry/trigonometry-sin-cos-and-tan/</link>
		<comments>http://trevorpythag.co.uk/2008/mathematics/trigonometry/trigonometry-sin-cos-and-tan/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 21:57:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Trigonometry]]></category>
		<category><![CDATA[co-sine]]></category>
		<category><![CDATA[cos]]></category>
		<category><![CDATA[explanation]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[right angled]]></category>
		<category><![CDATA[sin]]></category>
		<category><![CDATA[sine]]></category>
		<category><![CDATA[tan]]></category>
		<category><![CDATA[tangent]]></category>
		<category><![CDATA[triangle]]></category>

		<guid isPermaLink="false">http://trevorpythag.wordpress.com/?p=17</guid>
		<description><![CDATA[This is the basics of using sine, co-sine and tangent for a right angled triangle. To do this you&#8217;ll probably need a scientific calculator To perform calculations we are going to use the triangle above. The three main relationships are: Tan(x) = o/a Sin(x) = o/h Cos(x) = a/h so if h = 5 and [...]]]></description>
			<content:encoded><![CDATA[<p>This is the basics of using sine, co-sine and tangent for a right angled triangle. To do this you&#8217;ll probably need a scientific calculator</p>
<div style="text-align: center;"><img src="http://sub.allaboutcircuits.com/images/01001.png" alt="Trigonometry Triangle" width="410" height="260" align="middle" /></div>
<p>To perform calculations we are going to use the triangle above.<br />
The three main relationships are:</p>
<p>Tan(x) = o/a<br />
Sin(x) = o/h<br />
Cos(x) = a/h</p>
<p>so if h = 5 and x = 30<br />
a = Cos(30)h = 4.330</p>
<p>We can also use a <strong>inverse</strong> of the functions<br />
ie)   x = tan<sup>-1</sup>(o/a)<br />
x = sin<sup>-1</sup>(o/h)<br />
x = cos<sup>-1</sup>(a/h)</p>
<p>so if o = 5 and a = 10<br />
x = tan<sup>-1</sup>(5/10) = 26.565</p>
<p>Using this information we can work out any side or angle in a right angled triangle as long as we have to other pieces of information (like a side and a angle or 2 sides). This is used a lot in resolving forces in physics and allows us to derive some other more complex equations.</p>
<h3  class="related_post_title">Also see</h3><ul class="related_post"><li><a href="http://trevorpythag.co.uk/2008/mathematics/trigonometry/trigonometry-identities/" title="Trigonometry Identities">Trigonometry Identities</a> (11)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/trigonometry/sec-cosec-cot/" title="Sec, Cosec, Cot">Sec, Cosec, Cot</a> (0)</li><li><a href="http://trevorpythag.co.uk/2008/mathematics/trigonometry/tan-sincos/" title="Tan = sin/cos">Tan = sin/cos</a> (6)</li><li><a href="http://trevorpythag.co.uk/2010/mathematics/trigonometry/cast-diagarams-for-finding-values-of-sin-cos-and-tan/" title="CAST Diagarams for finding values of sin, cos and tan between 0 and 360 or 2 pi">CAST Diagarams for finding values of sin, cos and tan between 0 and 360 or 2 pi</a> (0)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/trigonometry/tan-graph-ytanx/" title="Tan Graph &#8211; y=tan(x)">Tan Graph &#8211; y=tan(x)</a> (0)</li><li><a href="http://trevorpythag.co.uk/2009/mathematics/trigonometry/compound-angles-sinab-cosasinbsinacosb/" title="Compound Angles &#8211; sin(A+B) = cosAsinB+sinAcosB">Compound Angles &#8211; sin(A+B) = cosAsinB+sinAcosB</a> (6)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://trevorpythag.co.uk/2008/mathematics/trigonometry/trigonometry-sin-cos-and-tan/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

