> Could numerical operations be optimized by using algebraic properties that are not present in floating point operations but in numbers that have infinite precision?
... are you not aware of -ffast-math? There are several fast-math optimizations that are basically "assume FP operations have this algebraic property, even though they don't" (chiefly, -fassociative-math assumes associative and distributive laws hold).