janhardo

335 Reputation

8 Badges

11 years, 45 days

MaplePrimes Activity


These are replies submitted by janhardo

@Scot Gould 

Thanks

Yes,i am using key F5 frequently

@rlopez Thanks

For me, the 2D math input conversion to maple input has proven to be useful 
Probably  i don't need more? 
One hot key for toggling between 2d input and maple input 

I was doing some math with the Riemann hypothese : How to plot the approximation graph for the primes staircase - MaplePrimes
Note: only finding formula Z(t) is a another search.

Was a timesaver and not knowing how to input the formula Z(t)  in maple input without errors. 

@Scot Gould 

Thanks 
Can be useful.

Thanks

With ALT-R  is giving a performance overlay screen from the graphical card on the desktop of the computer.
There is no focus on the Maple screen to get for these hot keys.

Ideal should be one hotkey for toggling ..well two i accept too. 

@Ronan 

Thanks

Yes, it is exactly what i want and overlooked your maple worksheet 
Its only that i don't see the logic of your code in relation with a list.

This k = [1, 2, 4, 6] in the plot3d command where is this documented in Maple?

The prime notation has become a standard in Maple

Strange i don't get the prime function standard in Maple not working yet ?

Also the function definition in the lessons hereunder ?

Maple for Differential Equations (yfei.page)

  • In Maple (version >=10), the prime derivative notation also works. For example, given a function f(x):= sin(x^2), the second derivative of can be calculated using the command f''(x). When applying the prime derivative notation to a function or an expression, the result is in the same type. The default differentiation variable for the prime notation is x. To change it the another variable, say tt, you may use the following command

    Typesetting:-Settings(prime = t) 
    # Change the default differentiation variable to t.

    Here, the symbol # is the comment symbol in Maple.

When using diff or the prime derivative notation to an expression, the result is an expression. To evaluate it, you may use the subs command. Another way is to apply unapply to the result to convert it into a function (operator).

restart;

 

some examples for function of two variables as expression

z:=3*x^3*exp(2*y)+x^2*y^2;

3*x^3*exp(2*y)+x^2*y^2

(1)

# differentiate two times partially to x

Diff(z,x,x)=diff(z,x,x);

Diff(3*x^3*exp(2*y)+x^2*y^2, x, x) = 18*x*exp(2*y)+2*y^2

(2)

(* $ is handy to use for higher partials , three  times z partial to x *)

Diff(z,x$3)=diff(z,x$3);

Diff(3*x^3*exp(2*y)+x^2*y^2, x, x, x) = 18*exp(2*y)

(3)

# as a function

f:=(x,y)->3*x^3*exp(2*y)+x^2*y^2;

proc (x, y) options operator, arrow; 3*x^3*exp(2*y)+x^2*y^2 end proc

(4)

fxx:=D[1,1],(f); # ?? wrong in book.. no , !

D[1, 1], f

(5)

?D

fxx:=D[1,1](f);

proc (x, y) options operator, arrow; 18*x*exp(2*y)+2*y^2 end proc

(6)

fx:=D[1](f);

proc (x, y) options operator, arrow; 9*x^2*exp(2*y)+2*x*y^2 end proc

(7)

fxxx:=D[1,1,1](f); # correct

proc (x, y) options operator, arrow; 18*exp(2*y) end proc

(8)

fx3:= D[1$3](f);

proc (x, y) options operator, arrow; 18*exp(2*y) end proc

(9)

fyxx:=D[2,1,1](f);

proc (x, y) options operator, arrow; 36*x*exp(2*y)+4*y end proc

(10)

fxyyx:=D[1,2,2,1](f);

proc (x, y) options operator, arrow; 72*x*exp(2*y)+4 end proc

(11)

fxy2x:=D[1,2$2,1](f);

proc (x, y) options operator, arrow; 72*x*exp(2*y)+4 end proc

(12)

 

Some examples here and using another noatation input with a subscript  for diff in (2) ..can it be simpler?
Using the D operator makes it much easier, so there is no need for a simpler notation, but after the reading the post of dr Lopez

  • subscript as partial differentation operator-1
  • subscript as partial differentation operator 2

What to do?

 

Download prime_en_functie_index.mw

@ecterrab 

Thanks

Make a input with a prime notattion and a input with a indexed function notatation ( like by hand) has now my interest for elementary calculus 

This old post from dr Lopez is just what i am looking for 

Here is a example where @acer asked for:

Its like this by doing it by handwriting  
example : differential equation 

y" -2y' -3y=6 

Or for partial deratives in this notation fxx   

I go further with this in Maple 

Note: i know my English is not that good, but i  like to write manual and not with deepl translation online

@Mariusz Iwaniuk

 Thanks

There is no doubt about it, that it has to do with the functional equation from Zeta(z)  , because i can always alter (convert) from maple input to 2d input 
But seeing the functional equation in Maple input is no problem either in your code.

By substituing : z=2+3*I (x>0, so in the rightplane) in the rightside of the functional equation you can calculate the leftside of the functional equation
(-z is in the left plane of the complex plane)
Now you extend the whole complex plane ,except for a pole z= 1) 

I start this thread about how to calculate the two function values from Zeta (z) for the two complexnumber  in the functional equation.
How precise for a decimal number here?

@Carl Love 
It was too much expected from me that the sum ( zeta function) could produce the Eulerproduct formula
The Zeta function as we now is not a average function
I try to understand more the importance for number theory of the zeta function.

@Mariusz Iwaniuk
 Thanks

It revolves between the connection  -z  and  z+1  
Its not directly clear not yet for me where your example stands for? 

@vv 

Thanks

You can say that the sum and eulerproduct( derived from the sum ) are equal after their proves. (only for real numbers then)

In general form both are only a notation then.
 

 

@vv 
Thanks

With this correct sum now Maple knows perhaps the Euler prorduct formula as closed formula?

@tomleslie 

Thanks

Your definition of the sum and product seems to be correct: they are equal , if look to the comparison
I am unsure if i defined this correct in my worksheet too
Is there a way in Maple doing this direct without filling in first some values in the sum and product?

3 4 5 6 7 8 9 Last Page 5 of 38