janhardo

335 Reputation

8 Badges

11 years, 6 days

MaplePrimes Activity


These are questions asked by janhardo

I try to make a procedure for this 

Was it by a example of Riemann sum that  x-values in a array are stored for  numerical value, but in this task it seems that the array must be filled with the symbol x1,x2 , etc 

Should this be needed ?

 

blz64.pdf

blz_65.pdf

excset  3  task4

 

Was it first for a partition about a interval ( example Riemannn sum) that i got  a list of numeric values

 a:= 0: b:= 5: N:= 30: i= 0..N :

X:= Array(0..N, [seq(j, j=a..b, (b-a)/N)]);

Array(%id = 18446745862042054398)

(1)

Now i want  to get a list  of  x-values in Array X ,  starting from  0  to N  :

example: array X =[x0= 0, x1=1/6, ...]

x[i]:= a+(b-a)*i/N; # for i = 0..N # endpoints subintervals

Error, invalid terms in product: 0 .. 30

 

# generate X-values for interval [a,b]

X:= Array(0..N, [seq(j, j=a..b, x[i])]);

Error, invalid input: seq expects its 3rd argument, step, to be of type numeric, but received x[i]

 

 

the values  x1,x2....stored  in Array X are used in further calulations
If there is a need for naming x1= 0 , x2= ..  in the Array A ? , probably not .

 


 

Download vraag_excset3_task_4.mw

  

This exact value of this serie must be calculated with help of a integral and another serie (Maclaurin)

Note: there is Taylor serie and Maclarin is a special case of this Taylor serie. 

The serie is also numerical in Maple calculated , to get a idea of the exact value 

foroum_vraag_3_inleiding.mw 

I enclosed some book taks pdf about alternating series /infinite series and products 
to get a idea what is asked for  

 

blz_62.pdf

blz_63.pdf

blz64.pdf

blz66.pdf

blz_67.pdf

blz68.pdf

 

I must program exc set 3 task 2(i) and 2(ii)

Perhaps too much asked here on the mapleprime forum to come up with the solutions for this programming task ?

I did already some investigation how the code roughly works 
 

Its a graphical programming task to let show the tread-riser outlines for a right -hand rule and mid-pointrule in a graph   

exc_set_3_task_1_a_b.mw

blz_61_exc_set_3.pdf

blz_62.pdf  

I think there is a special needed package for this : student vector-calculus ?

 

I tried to get this plot with equal axis for x and y ? 

G:=(x,y)->2*x^2+y^2-2*(x+y+x*y-1);
implicitplot(G(x,y)=0,x=-2..10,y=-2..10,scaling=constrained);

 

First 13 14 15 16 17 18 Page 15 of 18