reserve x for object, X,Y for set;
reserve C for non empty set;
reserve c for Element of C;
reserve f,f1,f2,f3,g,g1 for complex-valued Function;
reserve r,p for Complex;

theorem
  f1/f + f2/f = (f1 + f2)/f & f1/f - f2/f = (f1 - f2)/f
proof
  thus f1/f + f2/f = f1(#)(f^) +f2/f by Th31
    .= f1(#)(f^) + f2(#)(f^) by Th31
    .= (f1+f2) (#) (f^) by Th10
    .= (f1+f2)/f by Th31;
  thus f1/f - f2/f = f1(#)(f^) - f2/f by Th31
    .= f1(#)(f^) -f2(#)(f^) by Th31
    .= (f1-f2)(#)(f^) by Th14
    .= (f1-f2)/f by Th31;
end;
