Hi there, Spotted what looks like a small issue in [`math_interface.py`](https://github.com/minitorch/Module-2/blob/9bf876442dec3f044428d956d8fe2261b70509f0/project/math_interface.py#L105): ```python oa.append((x, y, x1.derivative[0])) ob.append((x, y, y1.derivative[0])) ``` I believe these ought to be: ```python oa.append((x, y, x1.grad[0])) ob.append((x, y, y1.grad[0])) ``` (like [here](https://github.com/minitorch/Module-2/blob/9bf876442dec3f044428d956d8fe2261b70509f0/project/math_interface.py#L55)...) Best, Jeremie
Hi there,
Spotted what looks like a small issue in
math_interface.py:I believe these ought to be:
(like here...)
Best,
Jeremie