3 percent i think just double check
Answer:
Step-by-step explanation:
Hello,
<em>"Ray says the third-degree polynomial has four intercepts. Kelsey argues the function can have as many as three zeros only."</em>
We know that Kelsey is right, a polynomial of degree 3 has maximum 3 zeroes, so it means that the graph of this polynomial has maximum 3 x-intercepts.
<u>So how Ray can be right too?</u>
we need to think of y-intercept, if we add the y-intercept then Ray can be right too,
as you can see in one example below
there are 3 x-intercepts and 1 y-intercept.
This being said, Ray is not always right. For instance 
has only 1 zero (multiplicity 3) its graph has only 1 intercept in the point (0,0)
hope this helps
Answer:
7
Step-by-step explanation:
collect like terms
14=-a+3a
2a=14
dividing both sides
a=7
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)