Thomas Richard

Mr. Thomas Richard

3556 Reputation

13 Badges

14 years, 169 days
Technical professional in industry or government
Aachen, North Rhine-Westphalia, Germany

MaplePrimes Activity


These are answers submitted by Thomas Richard

Probably you have already found our FAQ page which confirms your observation. No need to delete any files if you are unsure, but modifying their date should be harmless. Please try that first.

This problem only affects time-limited licenses. The expiry date can be found in your license.dat file.

By the way, it's good that you made the SN field (activation code) unreadable before uploading the screenshot!

ExpandSteps is designed for products (or fractions) of polynomials - please see its help page. It gets confused by the presence of trig expressions. The error message could be better, but even then it won't solve the problem.

What you can do is: replace sin(theta) by s and cos(theta) by c, then ExpandSteps will succeed quickly - but also produce a lot of output! Backsubstitution will make it even (a bit) worse.

The activation code (aka Purchase Code) needs to be entered into the activation tool, which is typically launched at the end of the installation process for most of our products. If you get stuck, please send an e-mail with that code and error message (or other symptoms, if any) to custservice@maplesoft.com. See https://www.maplesoft.com/support/ for more options.

Do not post your code on MaplePrimes nor on any other public web sites.

This is a very common problem, and the background of the error message is explained on the help page that opens when entering

?cannotdetermineifthisexpression

(Clicking on the error message does not bring you there, unfortunately.)

The best solution for your code example is #2, i.e. to use the operator form when plotting:

plot(funktion, r1 .. r2);

This will ensure that evaluation of x is deferred so that the conditional statement (if...then...end if) inside the function definition can be executed.

Notice that both the argument to funktion and the left hand side of the equation that specifies the range have been omitted. So you even save a few keystrokes. :-)

The output of a Maple command can be suppressed by terminating it with a colon. Didn't that work for what you tried?

What did you enter in Maple?

Perhaps post one or two examples of your PDEs. You may also include a download link to your text file.

Please send your Maple worksheet (mw file) to support@maplesoft.com, or upload it via https://www.maplesoft.com/contact/webforms/support.aspx. You may also attach your PDF file, but the worksheet is needed to reproduce the problem.

Since you are evaluating Maple, I suppose you have the current version 2021.1 - otherwise please specify. Your platform (OS version) may also be relevant.

Please see the Parameters section of both help pages: Jacobian expects a list (or Vector) of algebraic expressions, whereas Hessian expects a single algebraic expression. So if you remove the square brackets from [Targetfunction] in the latter call, it will work.

The button was introduced in Maple 2020 to simplify reactivating an expired license. The most common scenario is this: When a Maple Student Edition is purchased from our webstore, the customer is given a temporary license (Purchase Code) so that he/she can start using Maple right away. Our customer service is then validating the certificate of enrolment or student ID, without any time pressure. Once that is completed, the Purchase Code is switched to permanent, and the customer has to reactivate.

For permanent licenses like yours, the button is not needed. Nothing to worry about. ;-)

This combine call requires the 'symbolic' option - and then it produces a simpler result than the old one from 1997.

This is simple:

sol := solve(identity(eq,x));

please see ?solve,identity for more information.

The backslash is the escape symbol in Maple, so problems are expected, depending on where you copy and paste the string. Please see ?backslash for more details.

Better use a file for data exchange:

ExportGraph(g, "check.g6", 'graph6');

 

We can help odetest in a trivial way:

simplify(eval(eval(the_diff_1,x=0),ic));

Likewise for the explicit solution.

Of course, odetest should do this automatically.

You can enter the fractional ODE as

fde := diff(g(t),t$alpha) = r*g(t)*t^(1-alpha)/GAMMA(2-alpha);

but dsolve does not handle ODEs of unspecified differential order.

For alpha=1, it's trivial, of course.

An easy workaround is

f := cos(3*x)/(-(-1+8*cos(x)^2)^(1/2)+(3*cos(x)^2-sin(x)^2)^(1/2));
f := radnormal(f);
F := int(f,x);
d := simplify(simplify(f-diff(F,x)));

That simplify is needed twice here is a weakness; it should be an idempotent operation.

P.S. I don't think the error message was a known problem, so I've submitted an SCR. Thank you for pointing it out!

I think the DataTable feature (suggested by @acer) solves your problem, but here's a complimentary remark: Maple 2021 introduced the PersistentTable package that you might want to take a look at. Let me quote the 1st paragraph of its description:

The PersistentTable package provides a connection object that behaves somewhat like a table, except it is (by default) backed by a file containing an SQLite table. As a consequence, any information stored in the table persists when Maple is shut down or restarted. Furthermore, there is some extra functionality for searching through the stored information.

 

First 9 10 11 12 13 14 15 Last Page 11 of 45