Axel Vogt

5821 Reputation

20 Badges

20 years, 227 days
Munich, Bavaria, Germany

MaplePrimes Activity


These are answers submitted by Axel Vogt

roughly -0.19138848e-3 + 0.60440364e-4*I

First: if you allow the lower bound to be variable, then you may get a solution
for nay of those bounds, i.e. a curve. Not sure, whether that is intended.

Here is a way to do it for b=0 and I prefer to use rational constants, not floats.
And please note the UpperCase for the integral nad evalf on it (you may wish to
read that topics in the help, it is worth to do):

restart;
Digits:=15;

g:= proc(u)
  evalf( Int((1-x)*(1-(1/5*u*(1-u)/x/(1-x)-1/5)^(1/4)),x = 0 .. u, method = _d01ajc) ) - 1/20  
end proc;

plot(%, u = 0 .. 1/2, numpoints=10);

You want a zero of g and there is one close to u = 0.2

For that I use my own solver (Brent) and get u = 0.197213988275156 as solution.
May be you want to plot the coordinates of the points in the plane?
L := ...
M:=map(convert,%, list);

plot(M, style=point, symbolsize=20);
plots[pointplot](M, symbolsize=20, color = blue);

In case you want to work with Vectors you may want to spent some
time reading the help, how they can be used, <0,0> is more easy
than your notation.

For me it is a bug: the inner integral evaluates (as Georgios Kokovidis shows) and
after that Maple runs into troubles, if r is not specified further (using Maple 15)

you have a typo: what is beta8?

And may be, there is no solution (have not tried 'fsolve' seriously).

  (1/200*(x-r))*r*(1+(a+(1/400)*(1+a^2)^(3/2)*r^2)^2)^(3/2);
  subs((1+a^2)^(3/2) = b, %);
  int(%,r):
  subs(b=(1+a^2)^(3/2), %):
  simplify(%, power):
  eval(%, r=x) - eval(%, r=0):
  simplify(%, radical):
  factor(%): simplify(%, size); # assuming 0 < x:
  F:=unapply(%, a,x);

This is a symbolic result for the integral (though I have ignored to check
it and I also did not care, whether the fundamental theorem applies, i.e.
whether the anti-derivative is continous [will depend on a]).

  F(1,5):
  evalf(%);
                                                -9
                  0.3195877736 + 0.3858819604 10   I

With conditions on the parameters you can ignore the imaginary part

What is meant by those terms, using mathematical words?

1.
With some corrections:

symMonomial := proc(test::list)
 local h,i,j,k,ki,c;
 uses combinat; #with(combinat);
 
 c:= copy(test);
 
 h := 0;
 for i from 1 to nops(test) do
     h[i] := choose(test,i);
 od;
 
 k := 0;
 for k from 1 to nops(test) do
     c[k] := 0;
     for i from 1 to nops(h[k]) do
         ki := 1;
         for j from 1 to nops(h[k][i]) do
             ki := ki*h[k][i,j];
         od;
         c[k] := c[k] + ki;
     od;
 od;
 return c;
end proc;


symMonomial([x1, x2, x3]);

           [x1 + x2 + x3, x1 x2 + x1 x3 + x2 x3, x1 x2 x3]

2.
However if you remember, that the elementary symmetric functions can be obtained
as the coefficients of an univariate polynomial, then you can do:

  L := [x1, x2, x3];
  product(X+L[i],i=1..nops(L));
  expand(%);
  #coeffs(%, X);
  PolynomialTools[CoefficientList](%, X); # sorted by degree

          [x1 x2 x3, x1 x3 + x1 x2 + x2 x3, x1 + x3 + x2, 1]

I do not see, how a C-style '++' would answer your question, but
[seq([seq(i, j = i .. 5)], i = 1 .. 5)];
map(nops, %);
convert(%,`+`); # sum up

                                  15

Have not tried to use your code (sorry) and would expect *Maple Support* to answer

But usually I plot (Standard interface, even if it is not perfct) and if I need an export,
then I save as HTML, which gives me gifs in reasonable quality

v4 means to find

Int(1/(r^2-(a+x)^2)^(1/2)*exp(-x^2),x);
                        /            2
                       |       exp(-x )
                       |  ------------------ dx
                       |    2          2 1/2
                      /   (r  - (a + x) )

may be a series for 1/sqrt may help

Or likewise Int(1/(1-(b+x*s)^2)^(1/2)*exp(-x^2),x)

You have more equations than variables ...

the 1st can be substituted into the 2nd and 3rd,
only the last contains Wc, so solve that and now
check, whether that satisfies the (new) 2nd, but
as it had not been depending on Wc ...

Thus the (new) 2nd equation must be satisfied
or not by reasons not depending on Wc

For me it remains unclear, why as user I can not use the
usual notation as it is done in Mathematics:

k |-> (y |-> y^k)

If you do not want to type in the expression again and you only have
few of them, then you can export as Maple input (file type *.mpl).

This is a pure text file, from you can copy easily (no formattings).

Try to execute each command in a separate group (to see, where it happens)
and activate to show 'invisible' characters (menu bar / view / in classical Maple)

where the last error message indicates, that you may be a victim of the
standard interface

First 39 40 41 42 43 44 45 Last Page 41 of 92