vv

12453 Reputation

19 Badges

9 years, 279 days

MaplePrimes Activity


These are replies submitted by vv

@Earl The method is mentioned in the help page for EulerLagrange (for the case of a single function). They are not important, but they could simplify the computations sometimes.

In Windows both examples work fine.

@mmcdara The Riemann sphere is defined via the stereographic projection, see https://encyclopediaofmath.org/wiki/Riemann_sphere

It does not introduce singularities. Unfortunately it will not help  the OP in better understanding complex functions.

Int(cos(x)/(x^2+1),x=-infinity..+infinity) = 2*Pi*I*residue(exp(I*x)/(x^2+1), x=I);

        

@janhardo Edwards's book contains several obsolete notations including some used originally by Riemann himself. It is not a good idea to try to learn Complex Analysis from such a source (even if the book is a valuable monograph).   

You are a beginner in Complex Analysis. So, you should start with standard exercises. In this one, the path must be exactly defined; probably here we actually have a limit of a complex integral (e.g. tha radius of the arc around the origin tends to 0). 
The branches could be a problem; maybe it is not the Maple principal branch.
Not to mention z; the integral could diverge for some z, depending on how the path is defined.

dx / x is just for a convenient way of writing the integral: ∫ f(x)/x dx =  ∫ f(x) dx/x.

BTW, the notation Int( ..., x = +oo .. +oo)  is very exotic. Where did you find it?

@John2020 The methods do not work when the parameters depend on t; actually in such a case the problem does not make much sense.

@John2020 The method in my answer can be adapted here too.

restart;
r := x*(diff(theta(t), t))^2+y*(diff(varphi(t), t))^2+z*(diff(theta(t), t$2))+w*diff(varphi(t), t$2)+p*m:
g := (4*(f+T))*(diff(theta(t), t))^2+u*(diff(varphi(t), t))^2+(f+9)*(diff(theta(t), t$2))+4*s*diff(varphi(t), t$2)+p*4*cos(varphi(t)):

eval(r-g, [theta=(t->1+t+t^3), varphi=(t->1+t+t^7)]): # or similar
[coeffs(convert(series(%, t), polynom), t)]:
solve(%, [x,y,z,w,p]):
solve(%[1], [x,y,z,w,p]);
#      [[x = 4 T + 4 f, y = u, z = f + 9, w = 4 s, p = 0]]
simplify(eval(r-g, %[1]));   #check
#                               0

Note that you cannot take m as parameter; it must be p (it appears in both r and g); for a fixed p there is no solution.

@ecterrab  

eq:=sin(x)+cos(x) = a*sin(d*x^2+c*x+b):
solve( identity(eq, x), {a,b,c,d} );  # works
PDEtools:-Solve(eq, {a,b,c,d}, independentof=x); # must be interrupted

 

@Kitonum Yes, in my search I encountered the solve bug mentioned here

Sys:={x*y*z + y*z + y = -1, x*y*z + x*z + z = 0, x*y*z + x*y + x = 0}:
solve(Sys, [x,y,z]);

       [[x = 0, y = -1, z = 0]]

Anyway, the system with a,b,c has generically 3 solutions. It is impossible for the system to have exactly 3 integer solutions.

@nm More likely to be generic or defined in the code read at the beginning.

BTW, the algorithm is implemented in modern Maple, see  ?DEtools,kovacicsols

@janhardo No, it does not. Maple ignores the properties of ithprime(i), e.g. the fact that  ithprime(i) ~ i*ln(i)  for i --> oo.

@janhardo You should write

@jud (a)   int(F,...) works after a simplify and gives 4 - Pi  because you have a square minus a circle, not a circle.
Unfortunately, changing to the correct "f<0" the simplify is not enough.

(b) MultiInt works only for explicit functions, just like int; you can use of course piecewise or Heaviside as above (but the resulting function will be discontinuous, so, more difficult for Maple to handle).

First 11 12 13 14 15 16 17 Last Page 13 of 166