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).
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: 2020-05-28 19:39:43 +0100
Seen: 277 times
Last updated: May 29 '20
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
You should provide an explicit example, since there are many ways to define
f.