MaplePrimes Posts

MaplePrimes Posts are for sharing your experiences, techniques and opinions about Maple, MapleSim and related products, as well as general interests in math and computing.

Latest Post
  • Latest Posts Feed
  • I would like to announce a new unofficial record computation of the MRB constant that was finished on Sun 21 Sep 2014 18:35:06.

    I really would like to see someone beat it with Maple!

    It took 1 month 27 days 2 hours 45 minutes 15 seconds. I computed 3,014,991 digits of the MRB constant, (confirming my previous 2,00,000 or more digit computation was actually accurate to 2,009,993 digits), with Mathematica 10.0. I Used my version of Richard Crandall's code:

     

    ____________________________________________________________________________

    (*Fastest (at MRB's end) as of 25 Jul 2014.*)

    DateString[]

    prec = 3000000;(*Number of required decimals.*)ClearSystemCache[];

    T0 = SessionTime[];

    expM[pre_] := 

      Module[{a, d, s, k, bb, c, n, end, iprec, xvals, x, pc, cores = 12, 

        tsize = 2^7, chunksize, start = 1, ll, ctab, 

        pr = Floor[1.005 pre]}, chunksize = cores*tsize;

       n = Floor[1.32 pr];

       end = Ceiling[n/chunksize];

       Print["Iterations required: ", n];

       Print["end ", end];

       Print[end*chunksize]; d = ChebyshevT[n, 3];

       {b, c, s} = {SetPrecision[-1, 1.1*n], -d, 0};

       iprec = Ceiling[pr/27];

       Do[xvals = Flatten[ParallelTable[Table[ll = start + j*tsize + l;

            x = N[E^(Log[ll]/(ll)), iprec];

            pc = iprec;

            While[pc < pr, pc = Min[3 pc, pr];

             x = SetPrecision[x, pc];

             y = x^ll - ll;

             x = x (1 - 2 y/((ll + 1) y + 2 ll ll));];(*N[Exp[Log[ll]/ll],

            pr]*)x, {l, 0, tsize - 1}], {j, 0, cores - 1}, 

           Method -> "EvaluationsPerKernel" -> 4]];

        ctab = ParallelTable[Table[c = b - c;

           ll = start + l - 2;

           b *= 2 (ll + n) (ll - n)/((ll + 1) (2 ll + 1));

           c, {l, chunksize}], Method -> "EvaluationsPerKernel" -> 2];

        s += ctab.(xvals - 1);

        start += chunksize;

        Print["done iter ", k*chunksize, " ", SessionTime[] - T0];, {k, 0,

          end - 1}];

       N[-s/d, pr]];

    t2 = Timing[MRBtest2 = expM[prec];]; DateString[]

    Print[MRBtest2]

    MRBtest2 - MRBtest2M

    _________________________________________________________________________.

     

    I used a six core Intel(R) Core(TM) i7-3930K CPU @ 3.20 GHz 3.20 GHz with 64 GB of RAM of which only 16 GB was used.

    t2 From the computation was {1.961004112059*10^6, Null}.

     

     

     

    This is an application of vector position to better understand the vector speed and acceleration is a well defined vector space. Fully developed with embedded components for proper use.

     

        Vector_Posición.mw                   (in spanish)

     

    L. Araujo C.

    Physics Pure

    Computer Science

    Obsolete

    See my Camera Profiler application instead.

     

    This application creates DNG matrices by optimizing Delta E from a raw photo of x-rites color checker. The color temperature for the photograph is also estimated.  Inputs are raw data from RawDigger and generic camera color response from DXO Mark.

    Initialization

       

    NULL

    NULL

    NULL

    NULL

    NULL

    XYZoptical to RGB to XYZdata

     

     

    Sr,g,b is the relative spectral transmittance of the filter array not selectivity for XY or Z of a given color.

    Pulling Sr,g,b out of the integral assumes they are scalars. For example Sr attenuates X, Y and Z by the same amount.

    Raw Balance is not White Point Adaptation.

    The transmission loss of Red and Blue pixels relative to green is compensated by D=inverse(S). The relation to incident chromaticity, xy is unchanged as S.D=1.

    (See Bruce Lindbloom; "Spectrum to XYZ" and "RGB/XYZ Matrices" also, Marcel Patek; "Transformation of RGB Primaries")

     

     

    X = (Int(I*xbar*S, lambda))/N:

    Y = (Int(I*ybar*S, lambda))/N:

    Z = (Int(I*zbar*S, lambda))/N:

    N = Int(I*ybar, lambda):

    • 

    XYZ to RGB

    (Vector(3, {(1) = R_Tbb, (2) = G_Tbb, (3) = B_Tbb})) = (Matrix(3, 3, {(1, 1) = XR*Sr, (1, 2) = YR*Sr, (1, 3) = ZR*Sr, (2, 1) = XG*Sg, (2, 2) = YG*Sg, (2, 3) = ZG*Sg, (3, 1) = XB*Sb, (3, 2) = YB*Sb, (3, 3) = ZB*Sb})).(Vector(3, {(1) = X_Tbb, (2) = Y_Tbb, (3) = Z_Tbb}))

    NULL

    (Vector(3, {(1) = R_Tbb, (2) = G_Tbb, (3) = B_Tbb})) = (Matrix(3, 3, {(1, 1) = Sr, (1, 2) = 0, (1, 3) = 0, (2, 1) = 0, (2, 2) = Sg, (2, 3) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = Sb})).(Matrix(3, 3, {(1, 1) = XR, (1, 2) = YR, (1, 3) = ZR, (2, 1) = XG, (2, 2) = YG, (2, 3) = ZG, (3, 1) = XB, (3, 2) = YB, (3, 3) = ZB})).(Vector(3, {(1) = X_Tbb, (2) = Y_Tbb, (3) = Z_Tbb}))

     

    Camera_Neutral = (Matrix(3, 3, {(1, 1) = Sr, (1, 2) = 0, (1, 3) = 0, (2, 1) = 0, (2, 2) = Sg, (2, 3) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = Sb})).(Matrix(3, 3, {(1, 1) = XR, (1, 2) = YR, (1, 3) = ZR, (2, 1) = XG, (2, 2) = YG, (2, 3) = ZG, (3, 1) = XB, (3, 2) = YB, (3, 3) = ZB})).(Vector(3, {(1) = X_wht, (2) = Y_wht, (3) = Z_wht}))

    NULL

    NULL

    NULL

    • 

    RGB to XYZ (The extra step of adaptation to D50 is included below)

     

    (Vector(3, {(1) = X_D50, (2) = Y_D50, (3) = Z_D50})) = (Matrix(3, 3, {(1, 1) = XTbbtoXD50, (1, 2) = YTbbtoXD50, (1, 3) = ZTbbtoXD50, (2, 1) = XTbbtoYD50, (2, 2) = YTbbtoYD50, (2, 3) = ZTbbtoYD50, (3, 1) = XTbbtoZD50, (3, 2) = YTbbtoZD50, (3, 3) = ZTbbtoZD50})).(Matrix(3, 3, {(1, 1) = RX*Dr, (1, 2) = GX*Dg, (1, 3) = BX*Db, (2, 1) = RY*Dr, (2, 2) = GY*Dg, (2, 3) = BY*Db, (3, 1) = RZ*Dr, (3, 2) = GZ*Dg, (3, 3) = BZ*Db})).(Vector(3, {(1) = R_Tbb, (2) = G_Tbb, (3) = B_Tbb})) NULL

    NULL

    (Vector(3, {(1) = X_D50, (2) = Y_D50, (3) = Z_D50})) = (Matrix(3, 3, {(1, 1) = XTbbtoXD50, (1, 2) = YTbbtoXD50, (1, 3) = ZTbbtoXD50, (2, 1) = XTbbtoYD50, (2, 2) = YTbbtoYD50, (2, 3) = ZTbbtoYD50, (3, 1) = XTbbtoZD50, (3, 2) = YTbbtoZD50, (3, 3) = ZTbbtoZD50})).(Matrix(3, 3, {(1, 1) = RX, (1, 2) = GX, (1, 3) = BX, (2, 1) = RY, (2, 2) = GY, (2, 3) = BY, (3, 1) = RZ, (3, 2) = GZ, (3, 3) = BZ})).(Matrix(3, 3, {(1, 1) = Dr, (1, 2) = 0, (1, 3) = 0, (2, 1) = 0, (2, 2) = Dg, (2, 3) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = Db})).(Vector(3, {(1) = R_Tbb, (2) = G_Tbb, (3) = B_Tbb}))

    NULL

    (Vector(3, {(1) = X_D50, (2) = Y_D50, (3) = Z_D50})) = (Matrix(3, 3, {(1, 1) = RX_D50, (1, 2) = GX_D50, (1, 3) = BX_D50, (2, 1) = RY_D50, (2, 2) = GY_D50, (2, 3) = BY_D50, (3, 1) = RZ_D50, (3, 2) = GZ_D50, (3, 3) = BZ_D50})).(Matrix(3, 3, {(1, 1) = Dr, (1, 2) = 0, (1, 3) = 0, (2, 1) = 0, (2, 2) = Dg, (2, 3) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = Db})).(Vector(3, {(1) = R_Tbb, (2) = G_Tbb, (3) = B_Tbb}))

    NULL

    (Vector(3, {(1) = X_D50wht, (2) = Y_D50wht, (3) = Z_D50wht})) = (Matrix(3, 3, {(1, 1) = RX_D50, (1, 2) = GX_D50, (1, 3) = BX_D50, (2, 1) = RY_D50, (2, 2) = GY_D50, (2, 3) = BY_D50, (3, 1) = RZ_D50, (3, 2) = GZ_D50, (3, 3) = BZ_D50})).(Matrix(3, 3, {(1, 1) = Dr, (1, 2) = 0, (1, 3) = 0, (2, 1) = 0, (2, 2) = Dg, (2, 3) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = Db})).Camera_Neutral

    NULL

    Functions

       

    NULL

    Input Data

       

    NULL

    Solve for Camera to XYZ D50 and T

       

    NULL

     

     

    For all real a, the partial sums sn= sum((-1)^k (k^(1/k) -a), k=1..n) are bounded so that their limit points form an interval [-1.+  the MRB constant +a, MRB constant] of length 1-a, where the MRB constant is limit(sum((-1)^k*(k^(1/k)), k = 1 ..2*N),N=infinity).

    For all complex z, the upper limit point of  sn= sum((-1)^k (k^(1/k) -z), k=1..n) is the  the MRB constant.

    We see that maple knows the basics of this because when we enter sum((-1)^k*(k^(1/k)-z), k = 1 .. n) 

    maple gives

    sum((-1)^k*(k^(1/k)-z), k = 1 .. n)

     

    marvinrayburns.com

    I am sure that with this vector file with embedded components will learn how it works the vector operations. The code is free and can be modified to be improved. Forward engineers.

     

    Vectores_con_Components_Embedded.mw     (in spanish)      

     

    Lenin Araujo Castillo

    Using MathContainer and Button for 3D vectors.

     

    Angulos_Directores_con_Componentes.mw

    (In spanish)

    https://www.youtube.com/watch?v=J25P_qNtQe8

     

    Aujourd’hui, je suis ravis d’annoncer la disponibilité d’une large banque de questions françaises supportant les enseignements du secondaire et de l’enseignement supérieur. Ce contenu didactique est disponible via le MapleTA Cloud, et également grâce au lien de téléchargement ci-dessous.

    Lien de téléchargement de la banque de questions françaises

    Ces questions sont librement et gratuitement accessibles, et vous pouvez les utiliser directement sur vos propres évaluations et exercices dans MapleTA, ou les éditer et modifier pour les adapter à vos besoins.

    Le contenu de cette banque de questions françaises traite de sujets pour les classes et enseignements pré-bac, post-bac pour en majorité les matières scientifiques.

    Les matières traitées par niveaux et domaines sont:

    Lycées :

    • Electricité
    • Équations Différentielles
    • Gravitation universelle
    • Langues
    • Maths I
    • Maths II
    • Physique
    • Chimie
    • Mécanique

    Enseignement supérieur (Post-Bac) :

    • Astrobiologie
    • Introduction au Calcul pour la Biologie
    • Chimie
    • Déplacement d'onde
    • Electricité & Magnétisme
    • Maths pour l’économie
    • Maths Post-Bac
    • Mécanique Angulaire
    • Mécanique des Fluides
    • Mécanique linéaire
    • Physique Post-Bac
    • Electrocinétique
    • Matériau
    • Mécanique des Fluides
    • Thermodynamique

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Introductory Calculus Maple T.A.. course module developed by Keele University.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    These questions are designed to accompany the first semester of an introductory honours calculus course. The course is intended primarily for students who need or expect to pursue further studies in mathematics, physics, chemistry, engineering and computer science. With over 250 question, topics include: basic material about functions, polynomials, logs and exponentials, the concept of the derivative, and lots of practise exercises for finding derivatives and integrals, and material about series.

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Introductory Calculus for Biological Sciences Maple T.A.. course module developed by the University of Guelph.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    The Introductory Calculus for Biological Sciences course module is designed to cover a single-semester introductory calculus course for biological sciences students at the first-year university level. The questions are designed to span the topics listed below, allowing for practice, homework or testing throughout the semester.

    Topics include:

    • Introduction to Functions
    • Composite and Inverse Functions
    • Trigonometric Functions
    • Logarithms and Exponents
    • Sequences and Finite Series
    • Limits and Continuity
    • Derivatives
    • Curve Sketching
    • Differentials
    • Linear Approximation
    • Taylor Polynomials
    • Difference Equations
    • Log-Log Graphs
    • Anti-Differentiation
    • Definite Integrals

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Erik Postma from Maplesoft has recently posted a Maple application going through some of the ways how to produce random numbers in Maple: http://www.maplesoft.com/applications/view.aspx?SID=153662&P=TC-4444

    Doing a fair bit of work involving random numbers (i.e. simulations) myself, I was naturally drawn to it. The document is a nice extension of the relevant help pages, making practical use of some of the procs in RandomTools easier and clearer.

    One particular issue I recently ran into, however, is not covered. I needed a random generator for a particular custom pdf (not one of the already recognized pdfs) that happens to be 3-dimensional. And I needed to do this >twice<, with the second generation using the result of the first one as a parameter. the problem is not unlike the last example in the help page for Statistics:-Sample.

    Here is what I did:

    The pdf looks graphically like this (and note that in this plot it is not normalized):

    plot3d(Triangle63:-Trianglef(CrystalAngle,DeflectionAngle),\
           CrystalAngle=-0.8..0.2,DeflectionAngle=-0.6..0.6,projection=0.7);

    The first set of random numbers is generated by setting CrystalAngle to a fixed number (-0.1 in this case), normalizing the pdf to the integral over DeflectionAngle and then generating the random numbers. Note that evaluation of the integral is relatively time-consuming (seconds).

    trianglepdf:=(CrystalAngle,DeflectionAngle) ->\
                 Triangle63:-Trianglef(CrystalAngle,DeflectionAngle)/\
                 'evalf(Int(Triangle63:-Trianglef(CrystalAngle,Da),Da=-0.6..0.6,method = _d01akc))':
    triangle0pdf:=(t) -> trianglepdf(-0.1,t):
    Cr1:=Distribution(PDF=triangle0pdf);
    Y:=RandomVariable(Cr1);

    samples:=Sample(Y,[1..600],method=[envelope,range=-0.6..0.6]);

    Histogram(samples,view=[-0.6..0.6,default],labels=["Deflection Angle  (µrad)","Counts/bin"]);

    This looks as it should; and the random number generation is reasonably fast once the initial setup has been done (i.e. the time used scales only relatively weakly with the count of random numbers generated.

    The issue now is the second stage, where for each new random number, the number generated above is a new input parameter for CrystalAngle. So I can no longer define the pdf once since the pdf is different for each number generated.

    The pedestrian way to do this is like the following:

    samples2:=Vector(1..numelems(samples),datatype=float):
    CrystalOffset:=0.3;

    for ii from 1 to numelems(samples) do
      triangleiipdf:=(t) -> (trianglepdf(samples[ii]-~CrystalOffset,t)); # subtract (VR peak -> 0)
      Crii:=Distribution(PDF=triangleiipdf);
      samples2[ii]:=evalf(Sample(RandomVariable(Crii),1,method=[envelope,range=-0.6..0.6])[1]+CrystalOffset);
    end do:

    This works, but only sort-of. First, it is very slow, since the whole sertup happens for each number generated (Sample()). Secondly, it tends to hang at a certain number of steps through the loop. The value of ii where it hangs is arbitrary and changes with the other parameters and CrystalOffset. It is however consistent for identical runs.

    The last example in help for Statistics:-Sample would indicate that one needs to setup the pdf as a function of t as well as the parameter, call Distribution() only once and then assign the value to the parameter and call Sample() to get the random number(s) drawn from the pdf with the parameter being set to the wanted value. While this works in the example which uses a built-in pdf, I find that I cannot make it work with my pdf. Either the parameter gets ignored (i.e. stuck at the first value) or the thing runs just as slowly as my procedure above.

    Ultimately I programmed my own random generator for an arbitrary pdf which, while not as efficient as Maple's built-in generator, does produce the expected set of random numbers for the 2nd path in a reasonable time. It is a simple-minded envelope-rejection method, that works fo reasonably well-behaved pdfs:

    Rarbit:=proc(pdf,xmin,xmax,pdfmax)
    local dx:=xmax-xmin;
    local x1,x2;
    x1:=RandomTools[MersenneTwister]:-GenerateFloat64()*dx+xmin; # pick location on x axis
    x2:=RandomTools[MersenneTwister]:-GenerateFloat64()*pdfmax; # y axis, probability of returning x1

    while (x2>evalf(pdf(x1))) do # if above pdf, reject
      x1:=RandomTools[MersenneTwister]:-GenerateFloat64()*dx+xmin; # new x-axis value
      x2:=RandomTools[MersenneTwister]:-GenerateFloat64()*pdfmax; # check value
    end do; # eventually we'll succeed and return one.

    x1;
    end proc;

    Using this routine I get my second and final set of randome:

    for ii from 1 to numelems(samples) do
      newpdf:=(DefAng) -> Triangle63:-Trianglef(samples[ii]-CrystalOffset,DefAng);
      samples2[ii]:=Random:-Rarbit(newpdf,-0.6,0.6,28);
      DocumentTools:-SetProperty(ProgressBar,'value',ii,refresh);
    end do:
                          CrystalOffset := 0.3
    Histogram(samples2+~samples,view=[-0.6..0.6,default]);

     I would be interested in Erik's comment on this.

    Mac Dude

     

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Introductory Mathematical Economics Maple T.A.. course module developed by the University of Guelph.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    The Introductory Mathematical Economics course module is designed to cover a single-semester course in mathematical economics for economics and commerce students at the second-year university level. The questions are designed to span the topics listed below, allowing for practice, homework or testing throughout the semester.

    Topics include:

    • Rules of Differentiation
    • First Order Differential Equations
    • Higher Order Derivatives
    • Optimization in One Variable
    • Second Order Conditions for Optimization
    • Systems of Linear Equations
    • Optimization with Direct Restrictions on Variables
    • Over Determined and Under Determined Systems
    • Matrix Representation of Systems
    • Gauss Jordan
    • Matrix Operations
    • Types of Matrices
    • Determinants and Inverses
    • Partial Differentiation
    • Second Order Partial Derivatives
    • Multivariate Optimization
    • Second Order Conditions for Multivariate Optimization
    • Multivariate Optimization with Direct Restrictions of Variables
    • Constrained Optimization and the Lagrangean Method
    • Second Order Conditions for Constrained Optimization

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Introductory Electricity & Magnetism Maple T.A.. course module developed by the University of Guelph.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    The Introductory Electricity & Magnetism course module is designed to cover a single-semester course in electricity and magnetism for physical sciences students at the first-year university level. The questions are designed to span the topics listed below, allowing for practice, homework or testing throughout the semester. Using the Maple engine that is part of Maple TA, a custom grading engine has been developed to provide even more flexible grading of scalar and vector responses. This partial grading engine can be configured to, among other things, assign part marks for missing units, transposed or missing vector components or missing algebraic terms.


    Topics include:

    • Cross Products
    • Coulomb’s Law
    • Electric Fields
    • Point Charge Distributions
    • Continuous Charge Distributions (Integration)
    • Electric Potential
    • Electric Potential Energy
    • Electromotive Force
    • Resistance
    • Capacitance
    • Kirchhoff’s Laws
    • Magnetic Fields
    • Magnetic Fields Due to Current Carrying Wires
    • Forces on Wires in Magnetic Fields
    • Forces on Charges in Electric and/or Magnetic Fields
    • EM Waves
    • Two Source Interference
    • Double Slit Interference
    • Single Slit Diffraction
    • Diffraction Gratings

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Did Maplesoft make a statistics about questions on MaplePrimes?

    There must be some commands frequently meet problems.

    I listed 10 commands or packages need to be enhanced much more.

    1.fsolve.

    eg, roots of transcendental equation on complex plane & system of nonlinear equations.

    2.int.

    Both numerical integration & symbolic integration need further developed.

    3.Eigenvalues&LinearSolve.

    large scale computing, everyone needs it.

    4.dsolve&pdsolve.

    dsolve needs to be enhanced for solve more equations in parallel.

    As mathematica 10 contains the FEM package, I think Maple needs to do something, develop a new package needs more time than make the existing pdsolve command better.

    5.Threads package.

    parallel programing is the future. BTW, why don't make the task model much easier to use, like the mathematica, just a command?

    6.plot&plot3d

    there is much space to go further about the two commands.

    7.Optimization package or Statistics package.

    In fact, both packages need to be further enhanced, especially for Optimization package.

    Although some modern algorithms about optimization&statistics is much easier to see on the internet, the

    Maplesoft should not stop, but go further, add them in Maple.

    Above is just my opinion.

    Thanks for your attention.

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Statistics Maple T.A.. course module developed by the University of Guelph.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    The Statistics course module is designed to cover a single-semester course in statistics for science students at the second-year university level. The questions are designed to span the topics listed below, allowing for practice, homework or testing throughout the semester. The questions are mainly of an applied nature and do not delve very deeply into the underlying mathematical theory.

    Topics:

    • Introduction to Statistics
    • Descriptive Statistics
    • Basic Probability
    • Discrete Random Variables
    • Continuous Random Variables
    • Sampling Distributions
    • Inference for Means
    • Inference for Proportions
    • Inference for Variances
    • Chi-square Tests for Count Data
    • One-Way ANOVA
    • Simple Linear Regression and Correlation

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    Several Maple T.A. users have developed comprehensive sets of question content and assignments to support full courses in Maple T.A. These questions are available through the Maple T.A. Cloud, and we have decided to also post the associated course modules on Maple Primes as an alternative way of accessing this content.

    Below you will find a link to the Statistics Maple T.A.. course module developed by the University of Waterloo.

    This testing content is freely distributed, and can be used in your own Maple T.A. tests either as-is, or with edits.

    The Statistics content is used in introductory statistics courses at the University of Waterloo, and has been used regularly over several years. The over 700 questions are clearly organized by topic, and provide extensive feedback to students.


    Topics include:

    • Basics
    • Confidence Intervals
    • Continuous Distribution
    • Discrete Multivariate
    • Discrete Probability
    • Graphical Analysis
    • Hypothesis Testing
    • Numerical Analysis for Statistics
    • Probability
    • Sampling Distributions

    Jonny Zivku
    Maplesoft Product Manager, Maple T.A.

    First 76 77 78 79 80 81 82 Last Page 78 of 299