vv

13922 Reputation

20 Badges

10 years, 10 days

MaplePrimes Activity


These are replies submitted by vv

@acer 

It could be that the integral is exactly 1/8 but I have not time now to check.

@digerdiga 

The numerical integration is easier for rectangular domains and it is always possible to reduce the integral to such domains via a change of variables.
Note that we may include the domain D in a larger rectangle R and define the function 0 in R \ D but this is not the best solution because the new function is (generally) not continuous.

@brian bovril 

This version of alphametics is much faster and uses an intelligent algorithm (not the brute force one). It works even for systems of "equations".
The author is Robert Israel.

@Gabriel samaila 

I see that you have chosen infinity = 1. If you choose a larger value the results are closer.
But I am a mathematician, not an engineer; you will have to fine tune it yourself; for a too large value dsolve may fail or must also be fine-tuned (there are many options for this).

@baharm31 

It works for me. After all it's a linear ode system with constant coefficients which is well known to Maple.

2DOFnumerical-x.mw

@Gabriel samaila 

You must also insert a * (or a space) after M as Rouben noticed. Note that in Maple  7(x) simplifies to 7, not to 7*x.

@brian bovril 

1. Have you tried to use the icon "Open the current help page in a worksheet window" and run from there?

2. Does the Maple compiler work on your system?

@ola123 

Actually it's easier to solve the system by hand. For a,b,c,d complex the solutions are:

{a=0,b=0}, {b=0,c=0}, {b=0,d=0}, {a=0,d=0}, {c=0,d=0}, {a=0,c=0}, {a=k*c, b=k*d, where c,d in C\{0}, |k|=1}

As you see, even forcing a>0 there are solutions with b,c,d complex (nonzero imaginary parts).

@Joe Riel 

I like the program as it is and I'd leave the modifications for an interested user as exercises.
Another exercise could be the reverse problem: starting with a numeric equation such as 29786+850+850=31486 , find a puzzle for it. Of course a large list of words will be needed here; maybe one of the words could be prescribed.

 

@Christian Wolinski 

Yes but the original polynomial has practically the degree 8 (the K[4] factor is obvious).

 

@Christian Wolinski 

Why dou you say it's simpler? It has 4 indeterminates, more terms and almost the same degree.
I think that Factor() mod 2 was not used much for >2 indeterminates.

@Mariusz Iwaniuk 
It's not a workaround. MMA probably did the same.

@Mariusz Iwaniuk 

restart;
de := diff(u(x), x, x)+u(x)*(diff(u(x), x))-u(x) = exp(2*x):
bc := u(0) = exp(0), u(1) = exp(1):
dsol := dsolve({bc, de}, numeric):
du0 := D(u)(0)=eval(diff(u(x),x),dsol(0)):
DSOL := dsolve({de,bc[1],du0}, numeric):
plots:-odeplot(DSOL, x = -1 .. 2, view = 0 .. 3);

@mmcdara 

You took Ruben's first definition but with distances wrt a focus F (instead of the center). So, you have FM, not OM.

@Christopher2222 

Probably you are thinking to take a sequence of partitions (having the norm --> 0, as in Riemann sums)  and then compute
limit  ( r1+r2+..+rn)/n   for n --> oo.

Unfortunately it can be proved that this limit does not necessarily exist
(i.e. there exists a sequence of such partitions for which the limit does not exist).
So, it's mandatory to define the mentioned measure [or adopt a similar definition].

 

 

First 78 79 80 81 82 83 84 Last Page 80 of 176