Since it's so nicely grouped, we can work with it! For the equation to equal 0, x=0, 3, or -1 (since x-3 and x+1 equal 0 when plugged in with 3 and -1 respectively). All we have to do is plug in numbers before, between, and after these numbers and apply it to the rest of them. Since -1 is the smallest number of the group, we can plug in a number below that (for this example, -5) and plug it in to get -8*-5*-4= something negative since it contains an odd number of negative numbers. Therefore, anything less than 1 is negative. For between -1 and 0, we get x=-0.5 equals -0.5*-3.5*0.5=something positive (since it has an even amount of negative numbers), proving that everything between -1 and 0 here is positive. For something between 0 and 3, we can plug 1 in to get 1*-2*2= something negative. Do you see a pattern here? It's negative, then positive, etc.. Therefore, if the number is greater than 3 it is positive. Reviewing a bit, we can see that (-inf, -1) is negative as well as (0,3), making the interval notation (-inf, -1) U (0, 3) since when you plug -1, 0, and 3 in it is 0, not less than 0!
The answer would be <span> inch, foot, yard, and mile</span>.
Answer:
y = ±√(x-16)
Step-by-step explanation:
To find the inverse of an equation, swap the x- and y-variables:
y = x² + 16
x = y² + 16
Then, solve for the y-variable:
x = y² + 16
y² = x - 16
y = ±√(x-16)
The function that takes three decimal numbers as inputs and finds the sum of those inputs and returns the sum has been given below
What is programming?
Program is the set of instructions given to the computer so that the computer can execute those instructions. The act of writing program is called programming.
The program has been shown below
#include<stdio.h>
using namespace std;
int main()
{
double n1, n2, n3;
double s;
printf("Enter first numbers");
scanf(%lf, &n1);
printf("Enter second numbers");
scanf(%lf, &n2);
printf("Enter third numbers");
scanf(%lf, &n3);
s = n1 + n2 + n3;
printf("Sum = %f", s);
return 0;
}
To learn more about programming refer to the link-
brainly.com/question/23275071
#SPJ4