Answer:
The given fraction
reduces to 
Step-by-step explanation:
Consider the given fraction 
We have to reduce the fraction to the lowest terms.
Consider numerator 
We can take x² common from both the term,
Thus, numerator can be written as
Given expression can be rewritten as ,

We can now cancel
from both numerator and denominator,


Thus, the given fraction
reduces to 
Answer:
i would say 18/24
Step-by-step explanation:
Answer:
2/9 is less than 1/3
Step-by-step explanation:
2/9= 0.222
1/3=0.333
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