Ask Your Question

Justis's profile - activity

2013-11-01 13:43:40 +0200 received badge  Famous Question (source)
2013-02-27 06:47:05 +0200 received badge  Notable Question (source)
2012-11-05 16:46:05 +0200 received badge  Popular Question (source)
2011-11-16 08:15:22 +0200 received badge  Student (source)
2011-11-14 06:59:50 +0200 asked a question evaluating an expression

Hello,

started to use open source mathematical software. And i have some questions since i can not find in google what i am searching for (maybe i am a bad searcher :S).

The thing is if i write in maple (with predefined F, M, q and Q):

Sum('F[ix]', 'i' = 1 .. n) = 0; '-2*F*cos(45*deg)-3*Q+4*RB*cos(45*deg)-RB*sin(45*deg)-M = 0'; evalf[4](solve(%, RB))

I get

RB := 19.51

And in Sage:

solve(-2*F*cos(45*deg)-3*Q+4*RB*cos(45*deg)-RB*sin(45*deg)-M,RB)

i get:

[23/3*sqrt(2) + 26/3 == 23/3*sqrt(2) + 26/3]

Now i do not find any equivalent to evalf in sage. Could someone help me, please?