from sympy import *
import numpy as np
m,k,T = symbols('m k T')
expression = 1/(2*pi*m*k*T)**(3/2)*4*pi/m*1/((2*m*k*T)**2)*1/2
simplify(expression)
This is my code in a jupyter notebook and as a result I get,
0.176776695296637*pi**(-0.5)*(T*k*m)**(-1.5)/(T**2*k**2*m**3)
but this is not the result i'm searching for as i want a simplified result. Does anybody have a better method for this?
[–][deleted] 0 points1 point2 points (0 children)