acer

28130 Reputation

29 Badges

17 years, 245 days
Ontario, Canada

Social Networks and Content at Maplesoft.com

MaplePrimes Activity


These are replies submitted by acer

Does this not mean something relevant to your attempt to solve the 3x3 EqN system?

newEqN:=eval(EqN,[lambda__1=v1,lambda__2=v2,lambda__3=v3]):

andmap(coulditbe,newEqN=~0) assuming v1>0,v2>0,v3>0;

             false

@MaPal93 There is also a Veil command in the LargeExpressions package.

That, along with `freeze`, can sometimes be useful. (But hiding dependencies upon variables might matter.)

@MaPal93 To me a tricky part of your Question is the bit about your wanting to find the optimal formulation (of some of t__1,t__2,t__3 in terms of some others, with other mixed terms).

I don't think that the temporary variables I showed is going to provide an avenue for that. At least, I don't see how it'd be any better than manipulations done using the tools algsubs, eliminatesimplify(...,{..}) aka "simplify-with-subrelations", or some basis generator.

But since you asked how it (ie. what I showed above) could be programmed, here is some fun. Some of the following is done a bit crudely. And there are more finesses possible.

restart

t__1 := (`σ__v`[2]^2*(`ρ__v`[1, 2]^2-1)-`σ__ε2`^2)*`σ__v`[1]^2/((`σ__v`[2]^2*(`ρ__v`[1, 2]^2-1)-`σ__ε2`^2)*`σ__v`[1]^2-`σ__ε1`^2*(`σ__ε2`^2+`σ__v`[2]^2))

t__2 := -`σ__v`[1]*`ρ__v`[1, 2]*`σ__v`[2]*`σ__ε1`^2/((`σ__v`[2]^2*(`ρ__v`[1, 2]^2-1)-`σ__ε2`^2)*`σ__v`[1]^2-`σ__ε1`^2*(`σ__ε2`^2+`σ__v`[2]^2))

t__3 := (`σ__v`[1]*`ρ__v`[1, 2]*`σ__v`[2]*`σ__ε1`^2*`ν__0`[2]-`ν__0`[1]*`σ__ε1`^2*(`σ__ε2`^2+`σ__v`[2]^2))/((`σ__v`[2]^2*(`ρ__v`[1, 2]^2-1)-`σ__ε2`^2)*`σ__v`[1]^2-`σ__ε1`^2*(`σ__ε2`^2+`σ__v`[2]^2))

 

n := 3;
K := [codegen:-optimize([seq(t[i]=t__||i,i=1..n)], 'tryhard')]:

3


# Let's remove unnecessary name=name entries,
# and rename them nicely.
# (I expect this could be done more nicely.)

newK := K:
while ormap(ee->type(ee,name=name),newK) do
  for i from 1 to nops(newK) do
    if type(newK[i],name=name) then
      newK := [ seq(newK[j], j=1..i-1),
               eval(newK[i+1..-1],newK[i])[]];
      i:=nops(newK)+1;
    end if;
  end do;
end do;
newK:=eval(newK,[seq(lhs(newK[i])=s||i,i=1..nops(newK)-3)]):
(rules,forms) := newK[1..-n-1], newK[-n..-1]:

 

map(print,rules):

s1 = `σ__ε2`^2

s2 = sigma__v[2]^2

s3 = (s2*(rho__v[1, 2]^2-1)-s1)*sigma__v[1]^2

s4 = s1+s2

s5 = `σ__ε1`^2

s6 = 1/(-s4*s5+s3)

s7 = s6*s5

s8 = sigma__v[1]*rho__v[1, 2]*sigma__v[2]

map(print,forms):

t[1] = s6*s3

t[2] = -s8*s7

t[3] = (-s4*nu__0[1]+s8*nu__0[2])*s7

## Let's reduce by the first five rules.

eval[recurse](rules[6..-1], rules[1..5]):
map(print,%):

s6 = 1/((sigma__v[2]^2*(rho__v[1, 2]^2-1)-`σ__ε2`^2)*sigma__v[1]^2-`σ__ε1`^2*(`σ__ε2`^2+sigma__v[2]^2))

s7 = s6*`σ__ε1`^2

s8 = sigma__v[1]*rho__v[1, 2]*sigma__v[2]

eval[recurse](forms, rules[1..5]):
map(print,%):

t[1] = s6*(sigma__v[2]^2*(rho__v[1, 2]^2-1)-`σ__ε2`^2)*sigma__v[1]^2

t[2] = -s8*s7

t[3] = (-(`σ__ε2`^2+sigma__v[2]^2)*nu__0[1]+s8*nu__0[2])*s7

 

Download rearrangingterms_q3a.mw

@Carl Love The type checks you've used,  suffixed(x) and suffixed(x, nonnegint) , could fail if the name x itself were assigned. Now that I come to think of it, I suppose that the name suffixed is (alas) not protected.

So those type specs could all get wrapped in uneval-quotes, to guard against those cases.

@sursumCorda I thought that my wording -- and what I computed, and how -- made it quite clear and obvious that it provided no guarantee that there were no other solutions. I did allude to the larger problem as being fundamentally different.

I showed it primarily because nobody (including you) had yet showed any way to programmatically generate the as-yet known five exact solutions.

@MaPal93 Please don't start another separate Question thread for this.

The degree call fails because of the presence in its numerator of abs(Psi(t)) and other abs calls containing Psi(t).

That is the significant problem with your question.

Also, the numerator of your expression contains the capitalized term Psi(t). Is that deliberate?

Also the denominator of your expression eq contains the term psi(t). Is that deliberate?

Once you sort out these usage mistakes and syntax muddles, note also that Psi has a predefined and special meaning in Maple. Eg, Psi(0.3) produces the value of approximately -3.503. If you want to use the name Psi as if it were not predefined then you could put the declaration,
   local Psi;
at the start of your worksheet (after any restart).

@sursumCorda There will always be plenty of scope for improvement in any significant piece of software.

@Carlos36r 

restart;

RealRange(-infinity,infinity):='RealRange(-infinity,infinity)':

 

The above assigned to the remember-table of RealRange.
The effect is that this call returns unevaluated, and it can
then get successfully converted to relations (inequalities).

 

RealRange(-infinity,infinity);

RealRange(-infinity, infinity)

convert(x::RealRange(-infinity,infinity), relation);

And(-infinity <= x, x <= infinity)

 

And now your example works.

 

func := 2*x:
r1 := solve(func < 0);

RealRange(-infinity, Open(0))

r1r := Or(`::`~(x,[r1])[]);

Or(x::(RealRange(-infinity, Open(0))))

r2 := RealRange(-infinity,infinity);

RealRange(-infinity, infinity)

r2r := Or(`::`~(x,[r2])[]);

Or(x::(RealRange(-infinity, infinity)))

allr := And(r1r,r2r);

And(Or(x::(RealRange(-infinity, Open(0)))), Or(x::(RealRange(-infinity, infinity))))

result := solve(convert(allr, relation));

RealRange(-infinity, Open(0))

Download ineq_rel_Carlos_real.mw

I don't really understand why you're taking this approach altogether. It's a very roundabout way of calling solve, that could be done directly, otherwise. I only showed it originally as example of conversions either way -- not as an ideal way to utilize solve.

How do you feel about the solution 
   lambda=0, h=T, T<>0
?

What about the following (where h is real for lambda<0),
   T=0, h=-(6*14^(2/3))/(7*(-lambda)^(1/3))
?

Do you need purely real solutions? Do you have any restrictions on the variables?

Here's another example, with irregular spacing in the x-values. I'll take it as given that the x- and y-values are already suitable sorted.

It's a little tricky to get the forced tickmarks to be just right. For one thing, the GUI refuses to add an x-tick if it's too close to a default-generated y-tick. So some compromise is needed.

But here are some variants. I don't want to get bogged down in a really complicated procedure to figure out nice, evenly spaced, rational forced/faked x-tick values, etc.

restart

 

Q := [15.59270850, 9.932905704, 5.445184045, 2.139179446, 0.];

[15.59270850, 9.932905704, 5.445184045, 2.139179446, 0.]

r := [5.4, 4.9, 3.9, -.3, -1.9];

[5.4, 4.9, 3.9, -.3, -1.9]

plot(r, Q);

newr := map(proc (x) options operator, arrow; min(r)+max(r)-x end proc, r);

[-1.9, -1.4, -.4, 3.8, 5.4]

plot(newr, Q, axis[1] = [tickmarks = [newr[1] = r[1], newr[-1] = r[-1]]], axis[2] = [tickmarks = [5, 10, 15], location = low]);

plot(newr, Q, axis[1] = [tickmarks = [newr[1] = r[1], newr[-1] = r[-1]]], axis[2] = [tickmarks = [5, 10, 15]], axes = box);

plot(newr, Q, axis[1] = [tickmarks = [seq(newr[i] = r[i], i = 1 .. nops(r))]], axes = box);

 

plot_2_ac.mw

@Carlos36r Hopefully this capture all the flavours in which you're interested...

Hopefully all readers of this will realize that this is an exercise in post-processing of solve results, and reformulating as equivalents. Naturally we could more easily pass the original arguments into one solve call, directly.

I duplicated a few steps, just for clarity's sake.

restart;

r1 := solve(x^2-1 > 0);

RealRange(-infinity, Open(-1)), RealRange(Open(1), infinity)

r1r := Or(`::`~(x,[r1])[]);

Or(x::(RealRange(-infinity, Open(-1))), x::(RealRange(Open(1), infinity)))

convert(r1r, relation);

Or(And(-infinity <= x, x < -1), And(1 < x, x <= infinity))

r2 := solve(x > 10);

RealRange(Open(10), infinity)

# For consistency, we could also use this
# as   r2r := Or(`::`~(x,[r2])[]);
r2r := x::r2;

x::(RealRange(Open(10), infinity))

convert(r2r, relation);

And(10 < x, x <= infinity)

allr := And(r1r,r2r);

And(Or(x::(RealRange(-infinity, Open(-1))), x::(RealRange(Open(1), infinity))), x::(RealRange(Open(10), infinity)))

convert(allr, relation);

And(Or(And(-infinity <= x, x < -1), And(1 < x, x <= infinity)), 10 < x, x <= infinity)

solve(convert(allr, relation));

RealRange(Open(10), infinity)

Now, another way (some parts trivial, of course).

The And@op is not needed for this example, but in general
there could be more that one inquality in each of several
alternative solutions returned by solve. So group those
solutions by And -- even if not necessary here.

restart;

s1 := solve(x^2-1 > 0, {x});

{x < -1}, {1 < x}

p1 := Or((And@op)~([s1])[]);

Or(And(x < -1), And(1 < x))

s2 := solve(x > 10, {x});

{10 < x}

p2 := Or((And@op)~([s2])[]);

Or(And(10 < x))

solve([p1,p2]);

{10 < x}

Download ineq_rel_Carlos.mw

@DEE_Engineering It's a preference.

Sometimes when I'm doing things similar to this I also want some additional effects, and when customizing & debugging I sometimes find aliases get in my way. I have a very low tolerance for any need for extra typing when probing, etc.

Here's a difference that may (or may not) matter for your tasks related to this: If you line-print (lprint) or convert to a string then the way I used will produce something with the actual words sin and cos. I often prefer that; you might not, here. Using that alias(s=sin,c=cos) then the line-printing will contain s and c.

note: this is not the reason that I don't use alias. But it's a possible reason that you might want it here, if you want the s/c effect in exported 1D formulas.

So, do you need to export your outputs as 1D plaintext formulas? (If you do, it would have been more useful to have mentioned that requirement at the outset...)

@sursumCorda Indeed, using evala, radnormal, or even rationalize to get the radical in the numerator will work here.

Surprisingly, even factoring the expression inside the radical (while keeping it in the denominator) works too.

I'll add all this to the bug report.

restart;

kernelopts(version);

`Maple 2023.0, X86 64 LINUX, Mar 06 2023, Build ID 1689885`

ee:=[1/(4*a + z^2 + (z^4 + 4*a*z^2)^(1/2)), -1/(z^2 - (z^4 + 4*a*z^2)^(1/2) + 4*a)];

[1/(4*a+z^2+(z^4+4*a*z^2)^(1/2)), -1/(z^2-(z^4+4*a*z^2)^(1/2)+4*a)]

factor(ee);
int~(%,z);

[1/(4*a+z^2+(z^2*(z^2+4*a))^(1/2)), 1/(-z^2+(z^2*(z^2+4*a))^(1/2)-4*a)]

[(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z), -(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z)]

simplify(ee);
int~(%, z);

[1/(4*a+z^2+(z^2*(z^2+4*a))^(1/2)), 1/(-z^2+(z^2*(z^2+4*a))^(1/2)-4*a)]

[(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z), -(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z)]

evala(ee);
int~(%, z);

[(1/4)*(z^2-(z^2*(z^2+4*a))^(1/2)+4*a)/(a*(z^2+4*a)), -(1/4)*(4*a+z^2+(z^2*(z^2+4*a))^(1/2))/(a*(z^2+4*a))]

[(1/4)*(z-(z^2*(z^2+4*a))^(1/2)/z)/a, -(1/4)*(z+(z^2*(z^2+4*a))^(1/2)/z)/a]

rationalize(ee);
int~(%, z);

[(1/4)*(z^2-(z^4+4*a*z^2)^(1/2)+4*a)/(a*(z^2+4*a)), -(1/4)*(4*a+z^2+(z^4+4*a*z^2)^(1/2))/(a*(z^2+4*a))]

[(1/4)*(z-(z^4+4*a*z^2)^(1/2)/z)/a, -(1/4)*(z+(z^4+4*a*z^2)^(1/2)/z)/a]

radnormal(ee);
int~(%, z);

[1/(4*a+z^2+(z^2*(z^2+4*a))^(1/2)), -1/(z^2-(z^2*(z^2+4*a))^(1/2)+4*a)]

[(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z), -(1/4)*z/a-(1/4)*(z^4+4*a*z^2)^(1/2)/(a*z)]

Download gosh.mw

@NurinFYP As you've already been told (by two other people), actual code is key to diagnosing your difficulties.

That is especially true of 2D Input mode (which you are using) since there are some cases where different code renders very similarly, eg. beta__i versus beta[i] .

It's inconsiderate and unhelpful of you to continue showing only images of your followup difficulties, without actual code that can be used without having to retype it all based on an image.

You should upload and attach a link to your worksheet, using the green up-arrow in the Mapleprimes editor. You should do this each time you ask a followup query for some new difficulty.

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