Answer:
f(1/3)=3 try that its probably right
Answer:
Step-by-step explanation:
16x4-2400x3+75x2+300/ 100
Answer:
2^4
Step-by-step explanation:
2*2*2*2
There are four 2's multiplied together
2 is the base and 4 is the exponent
2^4
Answer:
The equation of the quadratic function shown is;
x^2+ 2x -3
Step-by-step explanation:
Here in this question, we need to know the quadratic equation whose graph was shown.
The key to answering this lies in knowing the roots of the equation.
The roots of the equation are the solution to the quadratic equation and can be seen from the graph at the point where the quadratic equation crosses the x-axis.
The graph crosses the x-axis at two points.
These are at the points x = -3 and x = 1
So what we have are;
x + 3 and x -1
Multiplying both will give us the quadratic equation we are looking for.
(x + 3)(x-1) = x(x -1) + 3(x-1)
= x^2 -x + 3x -3 = x^2 + 2x -3
Answer and Explanation:
The Prolog rule expresses that logical implication (:-) describes the relationship between facts.
Prolog expressions are containing truth-functional symbols, which have the same intervention as in predicate calculus.
For example:
English Predicate calculus prolog
and ^ ,
or v ;
By using information, given in the question,
We can make prolog:
Grandfather(X, Y) :-mother(M,Y), father(X,M); father (F, Y), father(X,F)
Prolog (:- ) means define,
Prolog (,) represents a conjunction
And
Prolog (;) represent a disjunction