Solving Quadratics with imaginary roots

Started by
12 comments, last by Windryder 14 years, 1 month ago
3x^2 + 2x + 1 = 0 How would you solve this? When you put it into the quadratic formula, right away you can tell it's not going to work. If someone could also correct my errors in a completely naive attempt at solving this that would be awesome! I know I'm going wrong somewhere where it should be apparent that substituting isn't going to work, but I think something is fundamentally wrong about my approach here:


3x^2 + 2x + 1 = 0

let u = x ^ 2 and substitute

3u + 2x + 1 = 0
3u + 2x = -1
3u = -2x -1

u = -2x -1
    ------
       3

substitute u into the original equation

    -2x -1
3( --------- ) +2x + 1 = 0
       3

-2x -1 + 2x + 1 = 0

which leaves me with a badly designed proof for 

0 = 0
Advertisement
This smells a lot like homework, but I'll give you a hint. The determinant in the quadratic equation is going to be -8. √(-8) = √(8)√(-1). From there you can find the imaginary solutions.
Also, you can't substitute like that. All you're doing is essentially disregarding the original value and moving the rest of the stuff onto the right side, which leaves you with 0 = 0 as you noticed.
Well, all your derivation proves is that if x is such that 3x^2 + 2x + 1 = 0, then 0 = 0. This is logically correct, although pretty useless...

Do as Zipster says.
If using the quadratic formula is out of the question you can always try completing the square(good google term). It's functionally equivalent, but might seem a little less magical and make more sense if you're new at this.
Why is the quadratic formula out of the question?
I assumed it might be homework. Upon further inspection it would probably be more useful to say that when the quadratic formula "doesn't work" it actually does work and you'll just get imaginary solutions. When this happens it means that there aren't any real solutions.
Quote:Original post by Zipster
This smells a lot like homework, but I'll give you a hint. The determinant in the quadratic equation is going to be -8. √(-8) = √(8)√(-1). From there you can find the imaginary solutions.


It took me a while to realize why that sounded weird: The word is discriminant.
Quote:Original post by alvaro
It took me a while to realize why that sounded weird: The word is discriminant.

Thanks, it sounded weird to me too but it's been so long since I used the term I just went with what came to my head first [grin]

I am learning this on my own time to fill gaps in my knowledge since I was taught math by my dad at "homeschool" - I'm not attending college or anything at the moment.

I don't have a very comprehensive background so that might be why it seems n00bish. Thanks for the help anyway. I have read the bits about imaginary numbers and am just not "getting" it - I was hoping someone could solve with a 'talk through' at each step.

The reason I say it's not going to 'work' in the quadratic equation is because of the sqrt on a negative; I am just not sure how to handle it. I understand i is sqrt(-1) - so from there, how do I represent sqrt(-2); surely it can't be simply 2i?

This topic is closed to new replies.

Advertisement