ecterrab

12714 Reputation

24 Badges

17 years, 263 days

MaplePrimes Activity


These are answers submitted by ecterrab

A fix for this that works in Maple 2022 is distributed in the Maplesoft Physics Updates v.1379 or newer. Regarding the issue itself, historically, there were some open/close () surrounding y' within powers, as in this image:

Those unnecessary parentheses got removed from the typesetting of expressions (you see this in recent Physics Updates). That is correct, but a correlated change in latex to enclose y' within {} (because latex represents that as y^') to avoid power of power was missed; it is now in place.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

A fix for this is distributed for everybody using Maple 2022 within the Maplesoft Physics Updates v.1377. The dsolve command now returns no answer for this ODE; though I still want to revise this further, it might be solvable; for next week.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft.

Hi

Input Setup(coordinates = X) and you have a set of arbitrary coordinates, with the only assumption that they are real. You can see that for instance entering about(x1). If that assumption is an issue for you (regarding generality), you can always map(u -> Assume(u = u), [X]) and those assumptions disappear.

You can read more about this in the help page ?Physics,Tensors, section 1.a where all this is explained, or in the help page ?Physics:-Coordinates.

If this level of generality is not general enough for your computation, could you please post a worksheet showing where the problem is (where you feel there is a lack of generality), and we continue the conversation from there.

By the way, the special cases Cartesian, cylindrical and spherical when you input Setup(coordinate = <one of those three>) just places additional corresponding assumptions, e.g. phi is between 0 and 2*Pi.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Hi,
There are two packages with which you can compute mostly everything related to General Relativity: Physics and DifferentialGeometry. For this task, generally speaking, Physics is the way to go in that the package is more modern, its use is more straightforward, it works with standard algebraic Maple expressions, the notation is as in textbooks, and the package is more versatile. All this is documented in the help system.

The pages you may want to look are ?g_ for the metric, ?D_ for the covariant derivative, ?Riemann, ?Ricci and ?Weyl for the corresponding tensors and, generally speaking, part II "Curved spacetimes" of the help page ?Physics,Tensors, That page has a reasonably complete presentation with examples.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

See the help page with examples for PDEtools:-dpolyform; it does exactly what you are asking for. Although algeqtodiffeq, also mentioned in the answers, achieves the same in some particular cases (the expression must be holonomic, the resulting differential equation can only be linear or the problem is out of the scope of algeqtodiffeq), the dpolyform command is general, can perform the task also when the result involves nonlinear differential equations and handles holonomic and non-holonomic expressions in equal footing.

By the way, both dsolve and pdsolve use dpolyform to rewrite differential equations with mathematical functions and non-integer powers as systems of differential equations rational in the unknowns an its derivatives, in that way making it possible to perform differential elimination in the presence of mathematical functions and non-integer powers.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

NOTE Jan/11: answer updated following comment by @Kitonum - the integral can be computed exactly.

Download nonlinearODE_exact_solution.mw

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Hi @nmacsai, you need to change your icon: I mentioned this when you copied mine time ago.

Try latex:-Settings(usedefaultlatexmacros = true). These settings are explained in the ?latex help page, although usedfaultlatexmacros is not yet documented. It is however visible when inputting latex:-Settings(). With usedefaultlatexmacros = true, Maple will use the closer default LaTeX macro instead of the macros found in maple.sty, at the cost of sometimes not achieving a final-pdf-look closer to what you see in the worksheet.

By the way, in the computer algebra world, everything beyond arithmetics has a help page, and it is recommended to take a quick look at it before using a command or answering a question in our minds (in ?latex it is mentioned the maple.sty file)

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Download two_integrating_factors.mw

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Hi @C_R,
Yes, it is possible, actually, something that may be worth implementing in general ... Here is the trick.

First, save the original print/xxx routines to be used in the redefined ones:

`print/int_original` := eval(`print/int`):
`print/Int_original` := eval(`print/Int`):

 

Next, redefine both print/xxx enforcing italicized "d":

print/int` := () -> subsindets(`print/int_original`(args), specfunc(Typesetting:-mo), u -> if op(1, u) = "&DifferentialD;" then subsop(0 = Typesetting:-mi, u); else u; fi):

`print/Int` := () -> subsindets(`print/Int_original`(args), specfunc(Typesetting:-mo), u -> if op(1, u) = "&DifferentialD;" then subsop(0 = Typesetting:-mi, u); else u; fi):

 

Now you have the italicized d you asked for:

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

@zenterix 

See the recent post on integral vector calculus; it may be the answer to your question.

Happy new year!

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Happy new 2023!

Download UnEval_Mat_(reviewed).mw

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft


Download Coeff_(reviewed).mw

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

To compute KillingVectors using the distributed Maple, see the help page ?Physics:-KillingVectors. The Examples section contains examples showing how to use the command.

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Hi
You understood right; non-projected means a vector that is not projected on any particular basis. Such an object, represented as you say, ending the vector's name with an underscore, used in textbooks to formulate vectorial equations, has several properties under vector or vectorial differential operations (Nabla) that are understood by the system even when the vector is not projected. So this is not just about "representing" the object but about computing with it without projecting it; for examples, see the section on "Vectors and Analytical Geometry" on the page ?Physics,examples.

In textbooks, the distinction between projected and non-projected is more formal; the letter - say - A_, represents both. So nobody uses any particular wording for non-projected vectors. On a computer algebra worksheet, however, where, historically, only projected vectors were represented - as matrices - the distinction is relevant: if you say vectors people think/expect those matrices only, while a key feature of Physics:-Vectors is that you have symbolic representation for vectors, projected, or not. So it appeared to me appropriate to introduce the words non-projected, explicitly in several places in the help system.

About your questions:

  • if in the first item you meant "how it looks," using alias(A = _i) you can get _i displayed the way you prefer.
  • On the second item: It is not difficult to extend Physics:-Vectors so that one can define a vector basis that is not Cartesian, cylindrical or spherical, but it's not been done yet. So at this point, you can only project onto that three orthonormal bases.
  • About the third item: yes you can use both packages together, but they have commands with the same name. So I recommend you pay special attention to the ordering: if first VectorCalculus, then Physics:-Vectors, you will be using the commands of  Physics:-Vectors, and can invoque those of VectorCaclulus using the long form (e.g. VectorCalculus:-Curl) Note as well that there is a convert routine to convert between the Physics:-Vectors (algebraic, symbolic) and VectorCaclulus (matricial) representations for vectors.  See ?convert,PhysicsVectors

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

Download dot_notation.mw

Edgardo S. Cheb-Terrab
Physics, Differential Equations and Mathematical Functions, Maplesoft

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