Sorry is this some sort of equation I’m confused
Evidence are simply facts to support a claim, while counterexamples are instances to show the contradictions in a claim
<em>The question is incomplete, as the required drop-down menus are missing. So, I will give a general explanation</em>
<em />
To show that a statement is true, you need evidence.
Take for instance:

The evidence that the above proof is true is by taking the <em>squares of both sides of </em>


However, a counterexample does not need a proof per se.
What a counterexample needs is just an instance or example, to show that:

An instance to prove that:
is false is:

Hence, the complete statement could be:
<em>In a direct proof, evidence is used to support a proof
. On the other hand, a counterexample is a single example that shows that a proof is false.</em>
<em />
Read more about evidence and counterexample at:
brainly.com/question/88496
If we want to write the given four numbers in another form, we can write it like this;




Now let's rewrite the given expression and get the result.

I will be using the language C++. Given the problem specification, there are an large variety of solving the problem, ranging from simple addition, to more complicated bit testing and selection. But since the problem isn't exactly high performance or practical, I'll use simple addition. For a recursive function, you need to create a condition that will prevent further recursion, I'll use the condition of multiplying by 0. Also, you need to define what your recursion is.
To wit, consider the following math expression
f(m,k) = 0 if m = 0, otherwise f(m-1,k) + k
If you calculate f(0,k), you'll get 0 which is exactly what 0 * k is.
If you calculate f(1,k), you'll get 0 + k, which is exactly what 1 * k is.
So here's the function
int product(int m, int k)
{
if (m == 0) return 0;
return product(m-1,k) + k;
}
Answer:
Using the inverse composition rule you know that if (fog)=x and (gof)=x then the functions are inverses.
(
g
o
f
)
=
(
7
x
+
1
)
−
1
7 this will result in (gof)=x
(
f
o
g)
=
7
x
−
1
7
+1
=
x
−
1
+
1
=x
graphically you can check this if it seems that the functions are reflected over the line x=y.
Step-by-step explanation: