Calculates the reciprocation of a function.
The function
const f = Chalkboard.real.reciprocate(Chalkboard.real.define((x) => x + 1));const y = Chalkboard.real.val(f, 3); // Returns 0.25 Copy
const f = Chalkboard.real.reciprocate(Chalkboard.real.define((x) => x + 1));const y = Chalkboard.real.val(f, 3); // Returns 0.25
Calculates the reciprocation of a function.