DJKeenan

437 Reputation

9 Badges

18 years, 112 days

MaplePrimes Activity


These are replies submitted by DJKeenan

An issue here is the meaning of “rational”. In Maple, the term refers to a data type; in mathematics, it refers to a particular (different) set. Using the Maple definition, is(3.14,'rational') should (and does) return false. Returning true would require using the mathematical definition. When Maple and mathematics use the same term with different meanings, things often become problematic. So I think that Maple should avoid doing that. I.e. I think that Maple should only use a mathematical term if the term has essentially the same meaning as it does in mathematics (as close as a computer implementation feasibly allows). Use of the term “rational” for the data type is thus questionable. This is essentially the same point that Dave L and I discussed, only there the term was “set” and the issue was having Maple sets be defined with an order (and so different from mathematical sets). If Maple needs a term for a data type, pick a non-mathematical term specifically for that. E.g. “float” works fine. And if Maple is to have ordered sets, call them “osets”, or “ulists” [unique-element lists], or something, but not “sets”.
An issue here is the meaning of “rational”. In Maple, the term refers to a data type; in mathematics, it refers to a particular (different) set. Using the Maple definition, is(3.14,'rational') should (and does) return false. Returning true would require using the mathematical definition. When Maple and mathematics use the same term with different meanings, things often become problematic. So I think that Maple should avoid doing that. I.e. I think that Maple should only use a mathematical term if the term has essentially the same meaning as it does in mathematics (as close as a computer implementation feasibly allows). Use of the term “rational” for the data type is thus questionable. This is essentially the same point that Dave L and I discussed, only there the term was “set” and the issue was having Maple sets be defined with an order (and so different from mathematical sets). If Maple needs a term for a data type, pick a non-mathematical term specifically for that. E.g. “float” works fine. And if Maple is to have ordered sets, call them “osets”, or “ulists” [unique-element lists], or something, but not “sets”.
Q:= x-> piecewise(type(x,rational), 1, 0); int(Q(x), x = 0 .. 1)           0
Q:= x-> piecewise(type(x,rational), 1, 0); int(Q(x), x = 0 .. 1)           0
The Maple 11.01 kernel has build #296069. There was a later build of the user interface only (#303882). For details, see this thread.
That sounds like a bug. Has it been reported/documented?
That sounds like a bug. Has it been reported/documented?
I like having the new Student section. Regarding the layout, how about if the Announcements section, currently at top right, was moved to be on the left, either above or below the Navigation section?
Okay, go into the Help system, and where it says “Search For:”, click on Text (the default is Topic). Then enter “background animate” in the search box (without the quotes). That should bring up a Help page that discusses the background option of the animate command. An alternative method is given on the first Help page found by text-searching for “background plots”.
Okay, go into the Help system, and where it says “Search For:”, click on Text (the default is Topic). Then enter “background animate” in the search box (without the quotes). That should bring up a Help page that discusses the background option of the animate command. An alternative method is given on the first Help page found by text-searching for “background plots”.
Ahhh, I misread the plot, of course. No fault of Maple's.
The equation can be plotted. plots:-animate3d(eqn, a=-2..2, b=-2..2, c=-2..2, axes=framed, frames=21) Doing that helps to visualize how the only real solution is 0. Yet use RealDomain in solve(eqn, c) end use claims that  (b^2+a^2)/(a^2+1)  is also a solution in the reals. So how are animate3d and RealDomain:-solve consistent?
(Scott, I get the same behavior as Andrew, using Maple 11.01.) Andrew, Maple and Mathematica each have strengths and weaknesses relative to the other. In this case, it seems that Maple does not simplify the constant   MeijerG([[1, 1], [2]], [[1, 1/2, 1/2], []], 1)  to  4*Pi. It might be relevant that no identities for the MeijerG function are known to Maple (according to FunctionAdvisor).
Could NAG routines be used?
Could NAG routines be used?
First 6 7 8 9 10 11 12 Page 8 of 13