ThU

891 Reputation

13 Badges

14 years, 132 days

MaplePrimes Activity


These are answers submitted by ThU

solve(sin(a)-sin(b)=0,b,allsolutions);
f:=unapply(%,op(indets(%)));
f(1,0,a); # etc.

 

 

# The name gamma is bound to a global constant:

evalf(gamma);

 

# You can free it up by declaring it as local (since Maple 17):

local gamma;
solve(gamma*(sigma/(sigma-1))=1,gamma);

 

 

Have you checked the Multibody/Sensors Palette? Take the Force/Moment sensor and attach a probe. 

pi must be upper case Pi. But your function is complex, what do you expect to see?

 

 

Check Av. You left out a multiplication sign between brackets. Programming should be really done with 1D input, especially for new users (File->New->Worksheet Mode).

 

 

 

Just probe the variables that are relevant to you. Then you can choose the probed variables as x and y axes in the plot tab on the right side in a new plot window. Don't have MapleSim on my home PC to build you quickly an example, sorry pal.

 

nm, check Options/display, change typesetting level from extended to standard. what a silly option. sometime I want it have extended, sometimes not.

Try to make a differential equation out of it and use dsolve

sum(1/(4*n+1/3*k),n=1..k);
limit(%,k=infinity);

You may want to check some background info:

http://en.wikipedia.org/wiki/Quaternion

 

There is a missing multiplication sign inbetween.

(0.1250000000e-3*(.6000000000*Unit('m')+.6510936027*(Unit('m'))*(.2929921212*Unit('m'))/(Unit('m')*((1/2)*Pi-26.38779995))))*Pi^2*Unit('m')^2*((1/2)*Pi-26.38779995);simplify(%);

Hi,

does it work if you set the type of a1 and a2 to real instead of Angle? Otherwise, you might upload an example to check it out.

 

select(isprime,[$1..100]);
convert(%,`*`);
sqrt(%);
evalf(%);

Since I only have Maple 17 I cannot comment on the change, but let't take an example;

restart:with(VectorCalculus):
SetCoordinates( 'cartesian'[x, y,z] );
TangentLine( <1-t,t^2,t^3>, t=1 );

So, the output is

 

This is p+t*v =<0,1,1> + t*<1,-2,-3>

 

 

select(isprime,[$500..600]);

First 10 11 12 13 14 15 16 Page 12 of 18