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

Why your Disk Utility is showing wrong used storage space on Mac?

Hello, Friends today we will be talking about the most common problems on MacBooks these days. As I remember , last week I was so upset that my disk Utility was showing the size of Apps as 103 Gigs even when the used storage was just 38 gigs . I searched the internet and found out this solution and decided to share it. All we have to do is to rebuild the index of spotlight. To do so follow these steps: First of all, open spotlight , then type, Hit enter, Now, click on  spotlight and click on the Tab Privacy Now, click the '+' button and add Your whole hard drive to it. In this case it is Macintosh HD Once you restrict spotlight's access, just select the drive and click the '-' button and exit. After exiting spotlight will rebuild index and your disk utility will show correct size of the drive and all. Thanks for reading. keep coming for more. Don't forget to share and like ;). Vide...

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. 

Quadratic Equations: Made Easier for JEE

Quadratic Equation lesson 2 In the previous lesson we learned on how to solve an equation. We found three methods to solve the equation. If not visit  http://scipsycho.blogspot.in/2016/08/quadratic-equations.html Now, we will go into details about quadratic equation, the importance of parameter a, b and c and other things that are important for JEE aspirants. Let's begin. As we saw earlier, a quadratic equation can be represented by  ax 2  + bx +c =0.  Let's start with 'a'. 1.) Coefficient of x 2  Case 1. : when a < 0 let's inspect the graphical form of the equation. If x -> ∞, only the  x 2   term will decide the outcome of the expression as it's magnitude will overwhelm the other factors. Now, as  x -> ∞ the value of expression will tend to infinity if a>0. However, a is less than zero therefore, the expression will tend to  -∞. when x -> - ∞,  x 2  -> ∞, and thus even then the expres...