Answer:
3⁵
Step-by-step explanation:
3×3×3×3×3=3⁵
You have a mutiplication. The base is 3, the exponent is the count of how many 3 you have. In this multiplication 3 appears 5 times, so 3⁵.
18-2x=4x is given
18=6x is addition property of equality
3=x is I think division property of equality bc you divided to get x=3
Answer:
Option A is correct.
Solution for the given equation is, 
Step-by-step explanation:
Given that : 
Let 
then our equation become;
.....[1]
A quadratic equation is of the form:
.....[2] where a, b and c are coefficient and the solution is given by;

Comparing equation [1] and [2] we get;
a = 2 b = -1 and c =-1
then;

Simplify:

or


or
and 
Simplify:
y = 1 and
Substitute y = cos x we have;

⇒
and

⇒
The solution set: 
Therefore, the solution for the given equation
is, 
Answer:
16/81
Step-by-step explanation:
as there is (-) sign so when we multiply even negative numbers it becomes positive
Answer:
min = a_1
for i:= 2 to n:
if
< min then min = 
return min
Step-by-step explanation:
We call the algorithm "minimum" and a list of natural numbers 
So lets first set the minimum to 
min = a_1
now we want to check all the other numbers.
We can use a simple for loop, to find the minimum
min = a_1
for i:= 2 to n:
if
< min then min = 
return min