<div id="comment:0"></div> For integers modulo n there is a `rational_reconstruction` method: ``` sage: R = IntegerModRing(97) sage: a = R(2) / R(3) sage: a.rational_reconstruction() 2/3 ``` However for polynomials the corresponding method is named `rational_reconstruct`: ``` sage: K.<x> = R[] sage: x.rational_reconstruct(x,4,4) (0, 1) ``` The naming is incoherent. CC: @jpflori Component: **basic arithmetic** Author: **Lorenz Panny** Branch/Commit: **[`47c91ea`](https://github.com/sagemath/sagetrac-mirror/commit/47c91eac9910b090ed5dcba24cfeaea89effb3f0)** Reviewer: **Kwankyu Lee** _Issue created by migration from https://trac.sagemath.org/ticket/12696_