vv

14077 Reputation

20 Badges

10 years, 69 days

MaplePrimes Activity


These are replies submitted by vv

@Robert Jantzen 

1. If you (like me!) do not like the new interface (with ribbon tabs) you can still use the old one: simply use maplew-accessibility.exe instead of maplew.exe. I use it in Worksheet mode with 1D input and 2D output.  It is mentained because "Screen Reader Mode"  does not work well in the new interface, see ?accessibility.

2. To see the Executable Group left margin markers  just press the F9 key. I have asked in this forum about the possibilty of reversing this new default setting but I did not receive any answer: https://mapleprimes.com/questions/242029-Hidden-Execution-Group-Boundaries.

@nznz1987  Seems to work perfectly in Maple 2025.
If you have a problematic situation, please upload your worksheet: use the green arrow for this.

@Carl Love 

f:= z-> z^3*cos(1/(z-2)):
coeff(series(f(2+1/z),z),z);

or

f:= z-> z^3*cos(1/(z-2)):
coeff(series(f(1/(z-2)),z=2),z-2);

 

@Alfred_F I also don't like how the solution is formulated. This often happens to me, but usually (this case too!) it is easy to reformulate (and fill the gaps) and obtain a real solution.

@Alfred_F  Note that a faster version is:

Q5:=n -> irem(add(convert(n,base,10)),5):
for n to 100000 do
if   Q5(n)<>0 then next 
elif Q5(n+1)=0 then print(nmin=n); break else n++ fi od:

BTW, Copilot AI did it well:

@Rouben Rostamian  

SMTLIB:-Satisfy(1+9+a+b = 1968 - (1900 + 10* a + b)) assuming a::nonnegint,b::nonnegint,a<=9,b<=9;

             {a = 4, b = 7}

I agree. Maybe a new field "accepted answer" could be introduced. But in the case of a single answer, the OP may even now click for "best answer".

@Alfred_F  After executing the code of my answer, f1+f2+f3 gives a sum of squares.
Note however that f1,f2,f3 are not unique; changing the order of the indeterminates, one obtains distinct representations. There are infinitely many representations!

@nm Actually such a command exists:

restart;
f:=419*x^2 + 116*x*y - 426*x*z + 78*y^2 - 142*y*z + 133*z^2 - 1604*x - 682*y + 1086*z + 2306:
SMTLIB['Satisfy'](f=0) assuming real;

                    {x = 7, y = 11, z = 13}

@Carl Love Yes, thank you, corrected.

@janhardo  What about T=1? (Not to mention T=0.)

It will be never possible to study such problems just looking at a graph.

For example, it can be shown that any polynomial of degree n is expressible as the sum of n+1 periodic functions.
E.g. f(x) = x is a sum of two periodic (but discontinuous) functions. Could someone comment on the periods of these functions by looking at a line? (Actually these periods are arbitrary but incommensurable.)

@Alfred_F If a spherical bullet impacts a plane, the "impression" is a circle (actually a disk) only if the (linear) trajectory is orthogonal to that plane. So, what is the significance of r1, r2, r3?

P.S. It seems that unlike your other problems, this one if very vague.

@Preben Alsholm But in my post,  f(complex) is a "function of a complex number" after evaluation.
Othewise, the simple example of a constant function
f := x -> a;

can be used.

For your example:

'f'(2+3*I).b - b.'f'(2+3*I);

returns <0,0;0,0>.

@Preben Alsholm Actually A, B commute (.) if at least one of them is a complex number i.e. C is in the center of (Expressions, .).
The strange fact is that any function of a complex number commutes (.) with any expression:
f(2+3*I).b - b.f(2+3*I) = 0

1 2 3 4 5 6 7 Last Page 1 of 177