import sympy as sym from Pycharm.display import display
x, a, b = sym.symbols('x a b') func = (a*x**b)/(a+b)
display(func)