Implement the merged inverse and squareroot algorithms in the cases of the finite field Fp ```rust a.inverse_and_sqrt(); // 1/a, sqrt(a) a.inv_sqrt(); // sqrt(1/a) a.invertme_sqrtother(&b); // 1/a, sqrt(b) a.sqrt_ratio(&b); // sqrt(a/b) ```
Implement the merged inverse and squareroot algorithms in the cases of the finite field Fp