Explanation: Solving quadratic equations is not an application of Euclid’s algorithm whereas the rest of the options are mathematical applications of Euclid’s algorithm. code example
Example: gcd algorithm
function gcd(a, b)
if b = 0
return a
else
return gcd(b, a mod b)