Problem 1
Find common tangent to the curve:
$y+x^2=-4$ and $x^2+y^2=4$.
My idea:
Let $t1... y=ax+b$ is a tangent line to the first curve.
Let $t2... y=cx+d$ is a tangent line to the second curve.
But we are seracing for common tangent so that mean that $a=c$ and $b=d$.
By using implicit differentiation we can find $a$ and $b$.
$$y+x^2=-4$$
$$y'+2x=0$$
$$y'=-2x$$
$$x^2+y^2=4$$
$$2x+2yy'=0$$
$$x+yy'=0$$
$$y'=\frac{-x}{y}$$
$$-2x=\frac{-x}{y} \to y=\frac{1}{2},$$$x$ is any real number
Problem 2
For which value of the coefficients $a$, $b$ and $c$ $\in$ R is the x-coordinate axis tangent to the curve?
$y=ax^2+bx+c$
My idea:
Curve and the tangent line must have just one common point. Our curve is a parabola and the number of dots on x axis is a number of solution of quadratic equation. So we need $a,b,c$ to be equal to $b^2-4ac=0$
Problem 3
Find a line that is tangent to the curve
$y = x^4 - 2x^3 - 3x^2 + 5x + 6$
in at least two points .
My idea:
Let that tangent be $t=ax+b$.
If we that line be a tangent line at two point to the curve equation $y(x)-t(x)=0$ must have at least two (not equal) solution.
$$x^4 - 2x^3 - 3x^2 + 5x + 6-(ax+b)=0$$
$$x^4 - 2x^3 - 3x^2 + 5x + 6=ax+b$$
$$a=5 , b=6$$
$$x^4 - 2x^3 - 3x^2=0$$ $$x_1=0, x_2=-1, x_3=3$$
Problem 4
I am trying to find the number of tangents to a curve that all pass through the origin. The curve's equation is $y=x^3+x^2−22x+20.$ I also need to find the equation of said tangents.
My work:
Let's use formula for tangent line:
$$y-y_0=y'(x_0)(x-x_0)$$
We know that $x=0$ and $y=0$.
Let's find $y'(x_0)$:
$y'(x_0)=3x_0^2+2x_0-22$
Plugin what we know:
$$-y_0=(3x_0^2+2x_0-22)*-x_0$$
We aslo know that $y_0=x_0^3+x_0^2-22x_0+20$
$$-x_0^3-x_0^2+22x_0-20=-3x_0^3-2x_0^2+22x_0$$
$$2x_0^3+x_0^2-20=0$$
Only real solution is 2. $x_0=2$ and $y_0=-12$.
Let tangent line be $y=kx+l$.
$k=y'(2)=-6$
$-12=-6*2+l\to l=0$
But we want l to be zero.
Our solution is $y=-6x$.
For problem 1 :
After you have $y'=-2x,y'=-x/y$, you have $-2x=-x/y\Rightarrow y=1/2$, but this is wrong because the $x$ on LHS is not necessarily the same as the $x$ on RHS.
Let $(p,q)$ be the tangent point on $y+x^2=-4$, and let $(s,t)$ be the tangent point on $x^2+y^2=4$.
Then, the equation of the common tangent can be written as $$y=-2px+2p^2+q=-\frac stx+\frac{s^2}{t}+t$$ Now, solve the following system : $$q+p^2=-4\tag1$$ $$s^2+t^2=4\tag2$$ $$-2p=-\frac st\tag3$$ $$2p^2+q=\frac{s^2}{t}+t\tag4$$ From $(1)(2)(3)$, representing $p^2,q,s^2$ by $t$,
$$p^2=\frac{-t^2+4}{4t^2},\quad q=\frac{-15t^2-4}{4t^2},\quad s^2=4-t^2$$ From $(4)$, $$2\times\frac{-t^2+4}{4t^2}+\frac{-15t^2-4}{4t^2}=\frac{4-t^2}{t}+t,$$ i.e. $$17t^2+16t-4=0\quad\Rightarrow\quad t=\frac{-8\pm 2\sqrt{33}}{17}$$ from which it follows that $$(t,p^2,q,s^2)=\left(\frac{-8\pm 2\sqrt{33}}{17},12\pm 2\sqrt{33},-16\mp 2\sqrt{33},\frac{960\pm 32\sqrt{33}}{289}\right)$$ Hence, the answer is $$\color{red}{y=2\sqrt{12+2\sqrt{33}}\ x+8+2\sqrt{33}}$$ $$\color{red}{y=-2\sqrt{12+2\sqrt{33}}\ x+8+2\sqrt{33}}$$ $$\color{red}{y=2\sqrt{12-2\sqrt{33}}\ x+8- 2\sqrt{33}}$$ $$\color{red}{y=-2\sqrt{12-2\sqrt{33}}\ x+8-2\sqrt{33}}$$
For problem 2 :
You are correct except that you have to have $a\not=0$.
For problem 3 :
You are not correct. We have to find $a,b,c,d$ such that $$x^4-2x^3-3x^2+5x+6-(ax+b)=(x-c)^2(x-d)^2,$$ i.e. $$x^4-2x^3-3x^2+(5-a)x+6-b$$$$=x^4+(-2c-2d)x^3+(c^2+4cd+d^2)x^2+(-2c^2d-2cd^2)x+c^2d^2$$ Now solve the following system : $$-2=-2c-2d\tag5$$ $$-3=c^2+4cd+d^2\tag6$$ $$5-a=-2c^2d-2cd^2\tag7$$ $$6-b=c^2d^2\tag8$$
From $(5)(6)$, $$c+d=1,cd=-2\quad\Rightarrow \quad (c,d)=(2,-1),(-1,2)$$ from which $a=1,b=2$ follow, and so the answer is $\color{red}{y=x+2}$.