| New Reply |
Another quadratic equation... |
Share Thread |
| Feb17-11, 04:00 AM | #1 |
|
|
Another quadratic equation...
1. The problem statement, all variables and given/known data
Solve 2kx^2 - (k+1)x + 4 by completing the square 2. Relevant equations 2kx^2 - (k+1)x + 4 3. The attempt at a solution What I have so far: -> x^2 - (k+1/2k)x + 4/2k = 0 -> x^2 - (k+1/2k)x + ((k+1/2k)/2)^2 - ((k+1/2k/2)^2 + 2k = 0 -> x^2 - (k+1/2k)x + (k+1/4k)^2 - (k+1/4k)^2 + 2k = 0 -> x^2 - (k+1/2k)x + (k^2+1/16k^2) - (k^2+1/16k^2) + 2k = 0 -> (x - (k+1/4k))^2 = (k^2+1/16k^2) + 2k What next? Thank you |
| Feb17-11, 04:49 AM | #2 |
|
|
hi autodidude!
![]() (try using the X2 icon just above the Reply box )![]()
|
| Feb17-11, 04:52 AM | #3 |
|
Recognitions:
|
[tex]x^2 - \left( k + \frac{1}{2k} \right) x + \frac{4}{2k} = 0[/tex] I know what you mean but if you can't use LaTeX, add grouping symbols, at least, like this: x^2 - ((k+1)/2k)x + 4/2k = 0 It's hard to be precise, but one has to be, [tex]\frac{4}{2k} = \frac{2}{k}[/tex] (k + 1)2 ≠ k2 + 1 ... which is wrong. Use the square of a binomial pattern, or FOIL: (k + 1)2 = k2 + 2k + 1 Fix these errors and repost, please. EDIT: Beaten to it.
|
| Feb21-11, 09:14 PM | #4 |
|
|
Another quadratic equation...
Fixing the silly '2k' error made everything work out! But now I'm having trouble with solving it by using the quadratic formula. It works fine when I just plug in the values as they are but if I simply first to get
x^2 - ((k+1)/2k)x + (2/k) = 0 and then plug THOSE values in, after working it all out, I end up with: [k+1±√[((k^2+1)/4k^2) - (64/k^2)]] / 4k There's probably another stupid error in there somewhere but I just don't see it By the way, the answer is [k+1±√(k^2 +1-32k)] / 4k right? The book says -30k instead of -32k Thanks a lot and sorry about my imprecision lol |
| Feb22-11, 01:51 AM | #5 |
|
Recognitions:
|
You've forgotten to expand (k+1)2 correctly again. If you did, you would get -30k instead of -32k.
By the way, the question asked for you to solve it by completing the square. You've used the quadratic formula, which you could've used right at the start anyway before dividing through by 2k. |
| Feb23-11, 07:55 PM | #6 |
|
|
[k+1±√((k^2+1-30k)/4k^2)]/4k The only way I can think of getting rid of the 4k^2 is by taking the square root of it first before multiplying the 2k under k+1 with 2. This gives 2k, so I can write it as [(k+1)±√(k+1-30k)]/2k and that whole expression over another 2 which would give the answer though I'm not sure if that's allowed and exactly what I'm doing really Thanks |
| Feb23-11, 08:14 PM | #7 |
|
Recognitions:
|
From [tex]2kx^2-(k+1)x+4=0[/tex] we have [tex]a=2k[/tex] [tex]b=-(k+1)[/tex] [tex]c=4[/tex] Now, plugging into the quadratic [tex]x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}[/tex] we get [tex]\frac{k+1\pm\sqrt{(k+1)^2-4(2k)(4)}}{2(2k)}[/tex] Simplifying, we get [tex]x=\frac{k+1\pm\sqrt{k^2-30k+1}}{4k}[/tex] If you try to use the quadratic formula by first dividing through by the coefficient of x2, then [tex]a=1[/tex] [tex]b=\frac{-(k+1)}{2k}[/tex] [tex]c=\frac{2}{k}[/tex] [tex]x=\frac{\frac{k+1}{2k}\pm\sqrt{\left(\frac{k+1}{2k}\right)^2-\frac{8}{k}}}{2}[/tex] So now you should be able to take out a factor of [tex]\frac{1}{2k}[/tex] from the surd, and bring that down to the denominator of the fraction to get the same result as before. |
| Feb24-11, 12:27 AM | #8 |
|
|
but then I expanded ((k+1)/2k)^2 to get (k+1)^2/4k^2 and multiplied 8/k by 4k/4k to get 32k/4k^2 |
| Feb24-11, 12:40 AM | #9 |
|
Recognitions:
|
[tex] x=\frac{\frac{k+1}{2k}\pm\sqrt{\frac{\left(k+1\right)^2}{4k^2}-\frac{32k}{4k^2}}}{2} [/tex] Looking at the discriminant only: [tex]\Delta=\frac{\left(k+1\right)^2-32k}{4k^2}[/tex] [tex]=\frac{k^2+2k+1-32k}{4k^2}[/tex] [tex]=\frac{k^2-30k+1}{4k^2}[/tex] Now what I mean by taking out a factor of [tex]\frac{1}{2k}[/tex] is that [tex]\sqrt{4k^2}=2k[/tex] so we have: [tex] x=\frac{\frac{k+1}{2k}\pm\frac{\sqrt{k^2-30k+1}}{\sqrt{4k^2}}}{2} [/tex] [tex] x=\frac{\frac{k+1}{2k}\pm\frac{\sqrt{k^2-30k+1}}{2k}}{2} [/tex] Now we can factor out [tex]\frac{1}{2k}[/tex] from the numerator, and we can move this to the denominator to get our desired result. |
| Feb24-11, 02:22 AM | #10 |
|
|
^ Wow that makes perfect sense! Many thanks!
|
| Feb24-11, 03:34 AM | #11 |
|
Recognitions:
|
No worries
|
| Feb24-11, 11:46 AM | #12 |
|
|
I edited my post to add this 4 minutes after you replied so I'm just gonna post as a new reply :p
Just one last thing, say I didn't have the answer, how do I know not to move the 2k under the 2 before working with the discriminant? |
| Feb25-11, 06:38 PM | #13 |
|
Recognitions:
|
You don't need to know the answer, we're just simplifying things. For example, it is customary to rearrange an expression such as [tex]\frac{\left(\frac{a}{b}\right)}{c}[/tex] into [tex]\frac{a}{bc}[/tex]. We leave the quadratic formula as [tex]x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}[/tex] but we can equivalently (but less customarily) write it as [tex]x=\frac{\frac{-b}{2}\pm\sqrt{\frac{b^2}{4}-ac}}{a}[/tex] or [tex]x=\frac{\frac{-b}{a}\pm\sqrt{\frac{b^2}{a^2}-\frac{4c}{a}}}{2}[/tex] etc. Does this answer your question? |
| Feb26-11, 12:31 AM | #14 |
|
|
[tex]x=\frac{\frac{k+1}{2k}\pm\sqrt{\left(\frac{k+1}{2k}\right)^2-\frac{8}{k}}}{2}[/tex]
Basically this, what I did wrong before was moving the 2k denominator under k+1 (on the left) down to get 4k which prevented me from being able to do the factoring here: [tex] x=\frac{\frac{k+1}{2k}\pm\frac{\sqrt{k^2-30k+1}}{2k}}{2} [/tex] ...wait, s that what you were saying was wrong in post #7? |
| Feb26-11, 01:26 AM | #15 |
|
Recognitions:
|
Yes, that's what you did wrong previously.
If you have [tex]\frac{\frac{a}{b}+c}{d}[/tex] it's not valid to convert this into [tex]\frac{a+c}{bd}[/tex] which is what you've essentially done. You first need to drag out of a factor of [tex]\frac{1}{b}[/tex] from the numerator by first multiplying c by b as such, [tex]\frac{\frac{a}{b}+\frac{cb}{b}}{d}=\frac{\frac{1}{b}\left(a+cb\right)}{ d}=\frac{a+cb}{bd}[/tex] |
| Feb26-11, 03:30 AM | #16 |
|
|
Gotcha, cheers for putting up with me! :D
|
| Feb26-11, 04:04 AM | #17 |
|
Recognitions:
|
|
| New Reply |
Similar discussions for: Another quadratic equation...
|
||||
| Thread | Forum | Replies | ||
| Now what? Quadratic equation!!! | Introductory Physics Homework | 6 | ||
| Quadratic equation | Precalculus Mathematics Homework | 6 | ||
| Quadratic Equation | General Math | 3 | ||
| Quadratic equation | General Math | 9 | ||
| Quadratic Equation | General Math | 2 | ||