Determining Intersections of Quadratic Equations with a Parameter

  • Thread starter Thread starter t_n_p
  • Start date Start date
  • Tags Tags
    Determinant
AI Thread Summary
The discussion focuses on finding the values of k for which two quadratic equations intersect. The initial attempt at calculating the discriminant (det) contained an error, leading to incorrect conclusions about the number of intersections. After correcting the discriminant to -12k^2 + 36k + 1, the conditions for intersections were clarified: one intersection occurs when det = 0, two intersections when det > 0, and no intersections when det < 0. The critical points were identified as k = -0.0175 and k = 3.0275, establishing the ranges for each case. The importance of verifying calculations and using computational tools for accuracy was also emphasized.
t_n_p
Messages
593
Reaction score
0

Homework Statement



I think I've got everything down pat, I just need someone to check that I'm correct.

2 equations:

y= kx2+3x-6
y=x2-2x+3k

For what values of k do the 2 equations intersect:
a) no times
b) one time
c) 2 times


The Attempt at a Solution



equate the equations:
kx2+3x-6 = x2-2x+3k
x2(k-1) + 5x + (3k-6) = 0

det = b2-4ac where a = (k-1), b = 5, c = (3k-6)

therefore det = -12k2 + 36k -1

a) for no intersection, det < 0
b) for one intersection, det = 0
c) for two intersections, det > 0

det = 0,
-12k2 + 36k -1 = 0

use quadratic equation again,
k = [-9 ± √(78)]/-6

therefore

a) no intersection when k < [-9 ± √(78)]/-6
b) one intersection when k = [-9 ± √(78)]/-6
c) two intersections when k > [-9 ± √(78)]/-6


sound good?
 
Physics news on Phys.org
Your reasoning is right for the questions about intersections (one - det = 0, none det < 0, two det > 0), but you have to pay attention to what you are doing when you solve for k.

Firstly the det function is wrong. My working shows the following:

det = b2-4ac where a = (k-1), b = 5, c = (3k-6)

det = b^2 - 4ac
= 25 - 4*(k-1)(3k-6)
= 25 - 4*3*(k-1)(k-2)
= 25 - 12(k-1)(k-2)
= 25 - 12(k^2 - 3k + 2)
= 25 - 12k^2 + 36k - 24
= -12k^2 + 36k + 1

So I got a "+1" term instead of a "-1" term. I'll let you figure out the critical point (ie the roots of the equation)

The other thing I want to point out is that your idea for the inequality is wrong. The graph is essentially a quadratic that is concave down (ie the curve is bounded at the top and not the bottom).

The graph will be positive when its in between the roots and it will be negative when its outside this range and not the roots themselves. If this is confusing use a package to plot the quadratic and take note when the function is positive, zero, and negative.

Like I said you got the concepts for the first part right, but not the inequality. If you're ever in doubt draw a picture to clear up any misconceptions.
 
ok think I got you.

Figured out the +1 instead of -1 no problem.

So I figured out the graph, and the intercepts are -0.0175 & 3.0275

Therefore,
one solution when det = 0 (i.e. when k = -0.0175 or 3.0275)
2 solutions when det > 0 (i.e. positive y value, i.e. -0.0175 < k < 3.0275)
no solution when det < 0 (i.e. negative y value, i.e. k < -0.0175 or k > 3.0275)

sound better now?
 
t_n_p said:
ok think I got you.

Figured out the +1 instead of -1 no problem.

So I figured out the graph, and the intercepts are -0.0175 & 3.0275

Therefore,
one solution when det = 0 (i.e. when k = -0.0175 or 3.0275)
2 solutions when det > 0 (i.e. positive y value, i.e. -0.0175 < k < 3.0275)
no solution when det < 0 (i.e. negative y value, i.e. k < -0.0175 or k > 3.0275)

sound better now?

Yes that looks correct well done.
 
actually spotted another mistake.

when equating the 2 equations, the constant term should be (-6-3k) not (3k-6)
 
t_n_p said:
actually spotted another mistake.

when equating the 2 equations, the constant term should be (-6-3k) not (3k-6)

Computational mistakes can be a common and an absolute pain in the arse. I don't know if you're allowed to, but if you suspect something is wrong, use a computer package or a website to check the answer with your paper and pen solution. I'm not saying don't do paper and pen solutions anymore, but a quick check can answer to you if you made a mistake or not.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top