I am trying to solve the system of equations using the below code to get the value of Ca, Cb, Cc, and Cd. However, I just got the void blank. I don't know what I made a mistake. Please help me modify the below code to get the proper answer. Anything you could do for me would be highly appreciated.
import sympy as sp
Ca, Cb, Cc, Cd = sp.symbols('Ca, Cb, Cc, Cd')
k1a = 10
k2c = 15
ra = -k1a*Ca*(Cb**2)+(2/3)*(-k2c*(Ca**2)*(Cc**3))
rb = -2*k1a*Ca*Cb**2
rc = k1a*Ca*Cb**2+(-k2c*(Ca**2)*(Cc**3))
rd = (-1/3)*(-k2c*(Ca**2)*(Cc**3))
eq1 = sp.Eq(2500, (100*Ca-100*2)/ra)
eq2 = sp.Eq(2500, (100*Cb-100*2)/rb)
eq3 = sp.Eq(2500, (100*Cc)/rc)
eq4 = sp.Eq(2500, (100*Cd)/rd)
R = sp.solve((eq1, eq2, eq3, eq4), (Ca, Cb, Cd, Cd))
print(R)