Skip to main content

Quadratic Equations


A Quadratic Equation is an polynomial equation with highest degree 2.

For e.g.:

5x2 + 2=0
2x2 + x + 1=0

General form of the equation is:

ax2 + bx + cx = 0 where a is not equal to 0

Normal form of Quadratic equation can also be represented by two parameters. (say m and n)

x2 + mx + n = 0

Normally , We are asked to find the roots of the equation. The roots of the equation can be found using three methods.

Let us take the example x2 -6x + 8=0 and solve this equation using these methods separately. Let's Start:

1.) The Grouping Method or that's what i call it

   In this method we try to split the middle term or 'b' such that it is equal to the product of the rest of the terms or 'ac'.

Now, let us apply this method on the above equation.

x2 -6x + 8=0

As, it is easily visible, the term -6 has to be split in a such a way that it's product equals to 8.
x2 -6x + 8=0

So, -6 can be written as -4 - 2 and there product is also equal to 8.

Now, the equation is something like this:

x2 -4x - 2x + 8=0

taking common 

x(x-4) -2(x-4)=0
Again, taking common,

(x-2)(x-4)=0

As we can see the roots are simply 2 and 4. I advise you to use this method when dealing with composite integers which are also small.

Also, this method is only applicable when the equation has rational roots and most of the times integral roots.

2.) Completing square method

In this method we try to convert the variable part or more precisely 
the ax+ bx part into a perfect square.

For doing so, we should be perfectly aware of this identity i.e.

(d+e)2= d2 + 2de + e

So, all we have to do is to create a perfect square. Let's take the example above, so

x2 -6x + 8=0

Now, we can see that according to the identity all we have to do is to divide the coefficient of x by 2 and the coefficient left is the required value of e.

So, x2 -2*3x + (3)2 - (3)2 + 8=0

So, it becomes (x-3)2 + 8 -9=0
 i.e

(x-3) = 1

i.e. either (x-3) = -1 or 1

So, x is either 2 or 4

Hence, we found the roots of this equation.

Now, if we extend this method to general form of equation i.e. 

ax2 + bx + cx = 0 we would be able to come up with a general formula 
and this formula is actually our third way to solve for the roots of quadratic equation.


So, let's start solving for the equation...

ax2 + bx + c = 0

dividing and multiplying b by 2 gives...

ax2 + 2*(b/2)x + c = 0

Now, we can see that we have to add (b/2)2 both sides giving us,


ax2 + 2*(b/2)x + (b/2)+ c = 0 + (b/2) 

Now, completing the square gives,

(ax + b/2)2 = b2/4 - c

Now, by simplifying the equation gives,

Solving this gives the famous formula of all times,

x= ( -b ±√ (b2 - 4ac) )/2a

3.) Using the above formula

So, again using the same equation x2 -6x + 8=0 gives,

x= ( -(-6) ±√ (62 - 4*1*8) )/2*1

On solving, it yields the same results as,

x=2 and x=4.

Also, we can infer from the above equation that 'a' is in the denominator and thus a ≠ 0.

This was all for the Board exams, I will be writing more about Quadratic equations and How to solve them using parabolas. So, guys keep tuning in. There's a video coming for the same.
Don't forget to share and like.

For Doubts and Correction kindly comment below :)

Thank you











  

Comments

  1. If you want summary on other topics kindly comment and you might be responsible for the next post. Thanks!

    ReplyDelete

Post a Comment

Popular posts from this blog

How to run C++ program directly from compiler?

Today, we will be learning on how to run a C++ program directly from compiler.So let's start. Hit cmd + space and type terminal , Now, hit enter. I will be running a simple hello world program named hello.cpp placed on my desktop. So, first of all change the directory to Desktop . Now, type g++ <filename.cpp> -o <filename> and hit enter If the file is with no errors, it will do nothing otherwise give you details about the error. Now, type ./<filename> like this and your program will run in the same terminal window. Otherwise you can check the current directory and find a file named <filename.exec> . Hit enter to run directly. Thank you for reading. Keep coming for more. Don't forget to like and share ;). Videos in progress. 

How to install windows using Bootcamp on macbook pro?

Hello friends, today we will be discussing methods on how to install windows using Bootcamp on macbook pro? Well, for productivity there is no rival worthy to compete with MacBook Pro. However, for us gamers windows is very vital. So, Intel -Based macs can install windows in a Dual Boot Method with Bootcamp. First of all, you will need a Macbook pro (obviously) and a windows 8.1 or above iso file  https://www.microsoft.com/en-in/software-download/windows8ISO I insist that you install a genuine Windows 8.1 or above as it will create problems afterwards. Also it is important to do a compatibility check before you decide to install windows on your Macbook Pro . My MBP requires Windows 8.1 or above. For more info about compatibility visit  https://support.apple.com/en-in/HT204048 I also insist that you backup your Macbook Pro before any change you want to make. I will not be responsible for any Data Loss! Now, let us begin St...