vv

13805 Reputation

20 Badges

9 years, 309 days

MaplePrimes Activity


These are replies submitted by vv

@nm You are confusing the OP.  A is a 5x4 matrix, so A.x makes sense and is the column Vector: 
<2298, -531, -160, -503, 579>
 

@nm Your initial ode is 
(2*x+y)/(3-x+3*y^2) dx - dy = 0; # M = (2*x+y)/(3-x+3*y^2), N = -1

It is not exact.

 

@michalkvasnicka 

For a more robust approach see Acer's answer. But you should be aware than any CAS may fail to solve directly your problem. If you know the maths behind it and the CAS language you have big chances to get a result. If not, it remains to complain about it.

@Fancypants The points are not unique, you are missing a condition.
It's not difficult to give an example, e.g. all Lij equal to 1 or 2.

@Fancypants Initially, all Lij were known. Now you say that some are not known. It's not the same thing!
In your picture, P0, P2, P3 seem to be collinear. If true, the number of needed Lij known could be decreased by 1. In principle this number must be >= 10 for a unique solution, but not any 10 will guarantee the uniqueness. Anyway, in this case a symbolic solution is improbable. If your problem is numeric you have the possibility to use DirectSearch to solve the system.

@michalkvasnicka 

If you try to solve f = 0, where

f := x^2 + 2*x + floor(x^2 + x)-25;

Mathematica answers:  This system cannot be solved with the methods available to Solve.

In Maple do (using the presented method):

seq(solve({eval(f,[floor(x^2 + x)=n]), n<=x^2 + x, x^2 + x<n+1}), n=-1..20);

      {x = -1 + sqrt(15)}

 

@Carl Love

Yes, thank you. Actually I have an enhanced version. It was written immediatley after the module version, but I forgot to replace it. I did it now.

@vs140580  I don't understand what you are trying to obtain. After relabelling the graph looks as in your picyure. I use GraphTheory for computations, not for drawings.
 

@Kitonum It must be noted that identify usually must be used with higher precision and works only for very simple results.
E.g. for eq := x^2+floor(x)-3*Pi  it fails.
 

@Carl Love   Agree but without brackets.

@DarkMath 

Maple does not document when Dirac(f(x))  is defined; Maple accepts f(x)=x^2-1  but rejects f(x)=x^4-1. It works formally, that's why the user must be careful. The usual conditions (f smooth and f' <> 0 at the roots of f) could be difficult to verify.

@DarkMath

The situation is much more delicate and fundamental. For example f(x) = exp(-1/x^2)*sin(1/x)  (with f(0)=0) is very smooth but int(Dirac(f(x)),  x=-1 .. 1) is problematic. Should it be infinity?
Note that in this context int  is not a "regular" integral.

What exactly represent your computations? What is the relation with GF(2^m)? 
I see that f_m mod 2 is irreducible in Z_2[t], so the field  Z_2[t]/(f_t mod 2) is isomorphic to GF(2^m), but why do you take mod 2^N?

 

 

@Carl Love 

Note also that with OP's notation, any expression can be written mathematically as a*b in infinitely many ways.

@janhardo 

What you have is a calculus problem, not a Maple one, because Maple computes your series
and you want a solution by hand.
So, you need to read a good Calculus textbook (+some exercises) to be able to manage such tasks  [***].
I'll show you a solution, but it will be useless without [***].

restart;
S:= Sum((-1)^k/((k + 2)*k!), k = 0 .. infinity);
#define
f := Sum(x^(k+1)/((k + 2)!), k = 0 .. infinity);
# it should be obvious that  x*f = exp(x) -1 - x, so
ff := (exp(x) -1 - x)/x; # = f
f1 := diff(f,x); # ==> S = tha value of f1 at x=-1
'S' = eval(diff(ff,x), x=-1);


 

First 44 45 46 47 48 49 50 Last Page 46 of 176