sand15

797 Reputation

11 Badges

10 years, 15 days

MaplePrimes Activity


These are replies submitted by sand15

@acer   thank you acer

@Carl Love 


Great thanks to you Carl, I think I could have been waste a lot of time on this problem !!!

I am going to look to the many commands you mentionned and try to understand all this,

thanks again

@Preben Alsholm 

This is a complete explanation, thank you Preben

@acer 

It suits me very well.

@Adri van der Meer 

Smarter than Matrix(N,N, Re~(convert(DC, list))) !!!

Nevertheless : do you observe the same behaviours I did myself ?

@Preben Alsholm

Thank you Preben, but I have this answer.

I would not offend Kitonum (who posted a  pretty solution) but the "other" was smarter.

In fact I think I rediscoverd it by myself (thanks to my anonymous inspirer) :

  1. Let A a fixed real interval
  2. let B another real interval and B(x) a translation of B of value x
  3. Question : "Do A and B(X) overlap ?"


(A) solution :

coverage := proc(A, B, x) 
    coulditbe('_u', `intersect`(SetOf(A), SetOf(map(y -> x+y, B)) ) )
end proc:

# example :

A := RealRange(0, 2);
B := RealRange(-3, -1);
coverage(A, B, 0.999):
coverage(A, B, 1.001):


No offence meant to Kitonum, and without regard of efficiency, this solution is slightly more aesthetic than the one he proposed to me  :-)


@John Fredsted I obtained the same conclusion yesterday evening by setting k=r*exp(theta*I).
It seemed a little bit simpler to analyze because r is always positive and sin(theta) is bounded

I will send you the .mw file asap. For the moment the uploading doesn't work correctly (I'm in the office and it could be related to the firewall ?)






@Kitonum Thanks.

It is a little bit clever than what I coded myself.

I just hoped that the equivalent of `intersect`(set1, set2) for countable sets existed for no countable ones

(Maple is sometimes so "elegant" ... it could have been the case).


Thanks again

@John Fredsted I am really sorry : I realized my mistake as I was pushing the "submit" button !!!

 

In addition to your previous reply  "Whether this is the complete solution for k remains to be investigated" I obtained these results (I hope there is no mistake this time) :

phi2  := (x,k) -> expand(phi(x,k)*conjugate(phi(x,k))) :
PHI2 := phi2(x, a+b*I) assuming x::real, a::real b::real :

limit(PHI2, x=+infinity) assuming b::positive ;    # returns 0
limit(PHI2, x=+infinity) assuming b::negative;    # returns infinity
limit(subs(b=0, PHI2), x=+infinity) ;                  # returns 1

It seems that the boundedness only occur for pure imaginary k ?

(sorry again)

@John Fredsted  Please enlighten me

In your last reply you study phi(x,k) for k complex of the form k=a+b*I (a and b real).
You draw phi(x,(a,b)) for the particular case a=0, b=1 and find thie last bell-shaped curve.

But if a=0 and b=1 then k = I and k^2 = -1

and then phi(x,k) is undefined ...

Did I miss something ?

 

First 23 24 25 Page 25 of 25