How to express in sage f(x^(-1)) when I have f(x)?
f(x^(-1)) = ? how to calculate it if I have f(x).
f(x^(-1)) = ? how to calculate it if I have f(x).
It depends on how is f
defined. By lack of concrete example, let me provide one:
sage: f(x) = x^2
sage: f(x^(-1))
x^(-2)
Asked: 4 years ago
Seen: 233 times
Last updated: May 29 '20
You should provide an explicit example, since there are many ways to define
f
.