Christopher2222

5850 Reputation

24 Badges

16 years, 151 days

MaplePrimes Activity


These are answers submitted by Christopher2222

How much RAM do you have now?  What is your rig setup and are you running Windows 3.1 or Windows 11 ...?  Which Maple version?

Maple uses Java which is memory hog so more RAM wouldn't hurt, might help some - probably your cheapest option.  Being close to Christmas and if you need a new rig, maybe it's time to treat yourself to a new system - definitely helps although I can't say by how much.  

Maple can do parallel programming but not everything so a particular graphics card would also help in certain areas.

I choose a point at (a/2,a *sin(Pi/3)) that is red or black.  Since I now know which color it becomes, say red.  I make a red point at (0,0) and another at (a,0) and therefore it is an equilateral triangle with corners of the same color. 

with(geometry):

triangle(ABC,[point(A,0,0),point(B,a,0),poin(C,a/2,a*sin(Pi/3))])

assume(a>0)

IsEquilateral(ABC)
                    

Therefore the triangle is equilateral and has corners of the same color.

 

 

As far as I know, I think it is.  There are far less users using Mapleflow than Maple.  I believe even less than Maplesim so the user base is quite small hence fewer questions.

SI units is already the default system in maple. 

For rounding you can go to  Tools menu->Options->Precision tab and check the Round screen display to the number of decimal places you want and apply globally. 

Also you can use the command Digits:=5 to set the number of Digits displayed.  Making a maple.ini file in the Maple sub directory will also set that up each time you start maple make it esssentially global.  Just have the one line Digits:=5 in the maple.ini file. 

Yes, this is generally a browser issue.  Microsoft Edge should work.   

On the Maplesoft website, Firefox does not work properly on browsing the applications center.  There are no issues with Edge there.

You did not mention which browser you were using.  Firefox generally works but I've found rare instances when it does not or if the user messed around with the settings.  But try Edge, you'll find no problems.

Also make sure if you're using uBlock Origin not to  "block remote fonts"

If you are using firefox and have issues I've just found:

Type ''about:preferences#general''<enter> in the address box
Under ''fonts and colors"
'''Advanced''' button
Scroll to the bottom, turn on '''Allow Web Sites To Choose Their Own. '''

Press CRTL and 3 or 4 to get larger fonts. 

This makes if better for reading purposes if that's what you're after.

To change the font the only workaround is to export it to a worksheet and from there alter the font type, then I suppose you could save it as another help page. 

What's the reason? 

@segfault Maybe using the freeze command will work for what you want to do.

Yes I've seen it.  Java can be a pain sometimes.  I just minimize the window then open it back up again - no need to restart.

I think I know what you mean, I haven't had long to look but maybe this might help - I'm tapping out for the night.

tokg:=proc(a)
  global var:
  var:=a*Unit(kg)
end proc:

tokg(5):
var
               5 kg

tokg(a):
var
             a kg

writedata readdata could also be used as a possibility.  ExportVector and ImportVector would also be an option.

That's a fast machine to begin with.  To go to the upgrade maybe something you might notice is faster, is when large calculations are required but I it wouldn't be much.  You'd notice a big difference in something like Inventor or Solidworks but with Maple the speed up might only be slight.  More memory gives you better performance with graphics and Maple doesn't need to be graphically intensive. 

You need to enter = at the end for maple flow to evaluate.  It will then output f/m

then press enter, (without the = it will return nothing.)

 

This seems to partially work, although I don't know what other hidden nasties might show up.

(sorry I had to paste a picture because the forum was changing the output when I copied it over)

I added this after your Christoffel output, then reran the Christoffel command.  So here I'm showing just v dot and v prime. 

Using viewpoint and orientation works nicely

Just change your plot3d line to include orientation, viewpoint.  Of course I got rid of the axes. You'll have to of course add the poles.

A := 2;
plot3d([c1, c2, c3, c4, c5, c6, sph], phi = 0 .. 2*Pi, theta = 0 .. 2*Pi, coords = spherical, plotlist = true, scaling = constrained, orientation = [55, 35, 0], viewpoint = "circleleft", axes = none);

1 2 3 4 5 6 7 Last Page 1 of 48