Jump to content

Quadratic Expressions

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
30 replies to this topic

#1
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
[size=5]Quadratic Equations[/size]
G’day everyone. Welcome to my tutorial, this one I will be showing you how to find the value of “x” if you get a quadratic expression that is equal to zero. Also I will be showing you how to solve a quadratic expression, well part of the way hehe.
NOTE: This is not a programming tutorial! If you want you could interpret this to a script but if not this does not involve ANY programming!

Let’s get started;
First of all. The general form for a quadratic equation (also called a 2nd order polynomial) is:
Y = ax^2 +bx +c

Quadratic equations can be solved by factorising or by using the formula:


This will yield the two factors of the quadratic.

This might seem difficult but it isn’t as difficult as what you think. Take a look at this example.
[quote]
Y = x^2 +2x +1
(x+1)(x+1)
x^2 +x +x +1
x^2 +2x + 1
[/quote]

That is the easy part. All we have done is turned the quadratic into a perfect square. Now this can be taken out by doing the following.
[quote]x * x
x * 1
1 * x
1 * 1
[/quote]
See the pattern? Now we can check this and turn it back into its original form. If it shows the same it is correct.

Now let’s apply the formula:


Remember the syntax of the quadratic? That is where we get a, b and c.
So let’s convert the formula using our quadratic.
[quote](-2 +- sqrt(2^2 –(4*1*1)) / 2 x 1[/quote]

Now we have replaced the a, b and c with our numbers. We can now work out the parts that we can. So let’s do that;
[quote](-2 +- sqrt(4 –4)) / 2[/quote]
Yet again, let’s go and work out what we can now.
[quote](-2 +- sqrt(0)) / 2
-2 +- 0 / 2[/quote]

I know most of use will be asking, what can we do now? The symbol (+-) indicates both sums need to be completed. So let’s do that now:
[quote]
-2 + 0 /2

OR

-2 – 0 / 2
[/quote]

If you work out the two:
[quote]
-2 / 2

OR

-2 / 2
[/quote]

That means that the answer to the quadratic:
[quote]
x^2 +2x +1
[/quote]
Is -1 OR -1.


Here is a few more for you to work out, only if you want:
[quote]
Y = x^2 +2x -3
Y = 2x^2 + 3x -4
Y = 6x^2 -5x +6
[/quote]



Now let’s move onto Part II. This one we will work out if the quadratic equal to 0.
“When the product of 2 expressions is equal to zero, then there are 2 possibilities for solving the equation. Either of the expression could equal zero.
For example:
[quote](x + 4)(x – 5) = 0[/quote]
Which then means that x = -4 or 5.

Let’s move onto a harder one.
[quote]
(2x – 3)(2x + 15) = 0
Either (2x -3) = 0 or (2x + 15) = 0
[/quote]

You could write that down in an exam but it wouldn’t be sufficient so let’s go ahead a step and write this:
[quote]
2x = 3
X = 3/2
X = 1.5

OR

2x = -15
X = -15 / 2
X = 7.5
[/quote]

Understand? I like to think that you just need to work out the parts of the equation that are equal to 0 and whenever there is a negative x is equal to a positive and vice versa. It happens only at a certain step though so be careful!


Not really a very detailed tutorial but I spent about an hour writing this tutorial so I hope use like it. I learnt it in Maths today so I thought I would write a tutorial. Correct me if I am wrong Winged hehe.

Not very useful but interesting to know. I wrote this because I LOVE maths 10x as much as Winged!

+rep if you found this helpful

jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Something important to do is check the value of b^2-4ac. If it is negative, you will have 2 complex roots (which require special care in a programming language). If it is 0, you get a double root (-1 OR -1 above). If it is positive, you will have two roots.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
Yum, quadratics... this formula always amazes me in how it always trumps up the two values for X.
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Xav, try performing the procedure for Completing the Squares on Ax^2 + Bx + C
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
I'm sorry? I don't get what you mean?
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#6
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Completing the Squares is a technique for solving quadratic equations. If you do it on the general equation, you get the quadratic formula.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#7
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
Yer I know about that Winged. I have noticed it and it is really annoying to try and work with it.
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#8
John

John

    Writes binary right handed and hex left handed

  • Moderators
  • 6,321 posts

Xav said:

Yum, quadratics... this formula always amazes me in how it always trumps up the two values for X.

bleh, after using the quadratic formula for for close to ten years now, it's no longer amazing, nor is the cubic formula or quartic formula (as interesting as that one may be). However what is truly amazing, is the fact that there is no quintic equation.

#9
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
What are cubic and quartic formulas? I never heard of them before.

My maths teacher showed us how they come up with the quadratic formula, that is fairly big :)
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#10
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
The cubic and quartic formulas are LONG and NASTY, especially the quartic. You can look them up on Google, but they won't provide much insight. I took a class that had proving the quintic is not generally solvable as one of its major conclusions.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#11
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts

John said:

bleh, after using the quadratic formula for for close to ten years now, it's no longer amazing, nor is the cubic formula or quartic formula (as interesting as that one may be). However what is truly amazing, is the fact that there is no quintic equation.
There isn't a quintic equation - or there isn't a solvable quintic equation?
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#12
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Ax^5 + Bx^4 + Cx^3 + Dx^2 + Ex + F = 0 is a quintic equation.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog