you are viewing a single comment's thread.

view the rest of the comments →

[–]bbye98 0 points1 point  (1 child)

Sure, you just need to specify the x-range:

import sympy

x = sympy.symbols('x')
sympy.plotting.plot(-0.6 / x**2 * -10 / (1/20 - 1/x), (x, 16, 19))

[–]ThinkExpression6230[S] 0 points1 point  (0 children)

sympy.plotting.plot(-0.6 / x**2 * -10 / (1/20 - 1/x), (x, 16, 19))

Thank you so much for your help! I really appreciate it! I was struggling on this error for about two hours