|
|
Re: Another question about Factor
Posted:
Nov 22, 2012 8:34 PM
|
|
On 11/22/2012 7:10 PM, Tang Laoya wrote:
> > k11 = 1/60 (b1^2 + c1^2 + d1^2) > k11 = HornerForm[k11] > > The outputs are: > 1/60 (b1^2 + c1^2 + d1^2) > b1^2/60 + c1^2/60 + d1^2/60 > > respectively. > > How to do to let the numbers are also been combined? >
In[25]:= Simplify[k11] Out[25]= 1/60 (b1^2+c1^2+d1^2)
|
|