Based on the explanation I assume you are trying to substitute the assumptions from the solved equations into the original expression.
To achieve the required functionality, you can explore the “assume” & “assumeAlso” functions in the MATLAB documentation.
These functions can be used to make any assumptions of conditions. By giving the output of the solved equations as an argument to these functions, the assumptions would be set accordingly.
Now the “simplify” function can be used on the original expression which substitutes the resulting values of the assumptions into the expression, achieving the required functionality.
Here is an example code demonstrating the usage of “assume” & “assumeAlso”to achieve the required functionality:
v(x)=a0+a1*x+a2*x^2+a3*x^3
v(x) = 
dv=diff(v)
dv(x) = 
assumptions
ans = 
simplify(v(x))
ans = 
For more information, the documentation for the “assume” function can be referred using the link below:
Hope this helps.