Christopher2222

5850 Reputation

24 Badges

16 years, 148 days

MaplePrimes Activity


These are answers submitted by Christopher2222

Is this what you mean?  int(f(x),x=a..b)  which is the same way to enter in Maple.  Or using the context menu on the left.

******edit added ***** additionally type int then press CTRL + spacebar  to bring up a list of options

You are using e as a variable Maple doesn't know you are trying to use it as a constant.

Change e^(-t) to exp(-t)

Press CTRL + R to add math in a text container.

Multiply value by Pi/180 to get radians.

Some prior Maple knowledge is helpful.  For your e  use exp(1), that will work.  Pi will work. 

For the speed of light and the gravational constants I think you'll have to define them.  They are available, but right now so far anyway, I can't figure out how to pull the constants out of Maple through MapleFlow - the long form way using GetValue doesn't appear to be working.

You can use rhs(ScientificConstants[GetConstant](c)[3]) in MapleFlow to pull out the value for c

You need to arrow right after typing units to get out of the units.

5 crtl+shift+u ft (right arrow) + etc.....

This is where I believe your issue is. 

**edit added** I had a quick look in the user manual, and that minor detail to arrow out of the units was not mentioned, but it's similar to getting out of an exponent or denominator so just a minor miss as it was probably implied.

So initially I thought it would automatically assign to the first units mentioned in the equation, but that doesn't matter.  It seems to be preset to standard SI units. 

It would be nice to have a list of preset preferences the worksheet would work as.  (ie units settings and digits - it would be nice to have a preset number of decimal places shown.  3 decimal places I think was chosen as a happy medium.  However for example - the smallest medium of measure for carpentry is 1/16" which is 0.0625 ( I mean mostly - there are some tape measures out there with 1/32" scales - good for machining, milling or lathe work I guess ultimately at that point you're working with micrometers and calipers which are likely digital).  If it was going to be a set value personally I would have gone with 4 decimal places but ultimately I would let the user choose in a user preferences. 

For MapleFlow2022 the digits option is still only individually chageable by the context panel on the right side.

Optionally wthout using the context menu there is a workaround using the convert string option, you can display the number of decimal places as set in Digits.  Of course this is just an adhoc measure. 

Variable re-assignment works in MapleFlow 2022.

If your data is in a text file, then simply

L:=readdata("c:/test/testdata.txt",integer,1) # read the column of data into list L.

It seems isolate will not isolate multiple additive terms.

Next best thing would be to separate it manually subtracting A from both sides of the equation.

                               

 

They used to have a free service.  They do have a "free tier" portion where certain services are limited.  But it does not include API calls to static maps.

The command above would need to be modified to

FindLonLat("Waterloo",key="###)

If you're lucky enough to have a free trial period, that would probably work, outside of your free trial since it isn't part of the free tier service you would be billed.  Unless I'm missing something. 

@nmacsai   My post on flashlights https://www.mapleprimes.com/posts/209845-Dataframes--Looking-For-A-New-Flashlight would have also yielded the answer you seeked. 

From what I got out of it

  • Whiteboard style interface
  • Designed to be engineering foucesed not math focused
  • Requires Maple 2021 to run

Just to add (and I realize it deviates from the question as to the behaviour of simplify)  the collect command weans it out appropriately.  Why it doesn't happen in simplify just tells me they missed something in the coding of it.

collect(t^2*x^2+t^2*y^2, t^2)
                               
collect(t^2*x^2-t^2*y^2, t^2)
                               

What gets me all the time is why Maple puts the single term at the end.

Another way

sort(f, order = plex(x^y))

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