Every degree is a touching point since each root factor is an x intercept
therefor the answer is 8th degree
Answer:
y =
x + 7
Step-by-step explanation:
the equation of a line in point- slope form is
y - b = m(x - a)
where m is the slope and (a, b ) a point on the line
y - 8 = -
(x + 5) ← is in point- slope form
with m = - 
given a line with slope m then the slope of a line perpendicular to it is
= -
= -
= 
the equation of a line in slope- intercept form is
y = mx + c ( m is the slope and c the y- intercept ) , then
y =
x + c ← is the partial equation
to find c substitute (- 6, - 2 ) into the partial equation
- 2 = - 9 + c ⇒ c = - 2 + 9 = 7
y =
x + 7 ← equation of line K
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
5/9 to chose odd card, 3/6 to roll even number
Answer:
x-intercept: 0,-1 . y-intercept: -1.5,0
Step-by-step explanation:
When given a point-slope equation y-y=m(x-x), the second x and y values mark a point in the line and the m value is the slope (rise over run). Just graph the line from there (in this case the slope would be 2 down and 3 to the right).