fwchapman

Dr. Frederick W. Chapman

93 Reputation

7 Badges

18 years, 294 days
Bethlehem, Pennsylvania, United States

Social Networks and Content at Maplesoft.com

I am a research mathematician and an expert on mathematical software. I completed my PhD in applied mathematics with a specialization in computer algebra and symbolic computation in 2003 at the University of Waterloo. My PhD supervisor was Prof. Keith O. Geddes, co-inventor of Maple. In my PhD thesis, I invented a parameterized family of bilinear infinite series expansions for multivariate functions, which I named "Geddes series expansions" in honor of my thesis supervisor. Geddes series are more general than both Taylor series and Fourier series since the terms of a Geddes series can contain arbitrary functions. Geddes series are more versatile than traditional series expansions because the parameters of the family are not numbers, or even functions, but rather linear functionals on function spaces. Geddes series have dozens of computational applications ranging from the fast and accurate approximation of high-dimensional multiple integrals to the automatic derivation and proof of multivariate identities for elementary and special functions.

MaplePrimes Activity


These are answers submitted by fwchapman

Alec, thanks for making clear the differences between the various online Maple communities.  It is certainly important to understand the unique purpose of each one.

Chris and Alejandro, thank you both for pointing out the danger of having too many places to post Maple questions and answers.  For that very reason, I will steer LinkedIn group members to MaplePrimes for Q&A about Maplesoft products.

In general, I agree with all your concerns.  The Maple community is too small to splinter into separate groups without a good reason.  Furthermore, none of us can afford to waste our limited time by duplicating the efforts of others.

I started the Maple Global Network group on LinkedIn to fill an obvious void -- there was no international Maple group on LinkedIn.  There were already Maple and MapleSim groups to serve the local needs of Italian users, but there was no international Maple group until I started one.  We now have 46 members!

I knew about MaplePrimes and wanted to avoid duplicating what already exists here.  I am trying to steer the LinkedIn group in directions which are complementary to MaplePrimes.  I do not want to compete with or attempt to replace MaplePrimes.

I was unaware of the Maple Wiki, but I know about it now.  One of the things I propose to do if I build an independent website for the Maple Global Network is to "direct traffic" -- to have a well-organized directory of Maple resources which clearly explains where to go for each kind of resource.  I can mention MaplePrimes and the Maple Wiki, for example.

As for the role of Google Apps in the Maple Global Network, I'm still thinking about that and discussing it with the group on LinkedIn.  I was going to require people to open LinkedIn accounts before signing up for Google Apps accounts (as a way to authenticate the membership), but perhaps I will reconsider that policy and offer the services in an a la cart fashion -- some members may be interested in one but not the other.

Nothing is set in stone at this point.  I appreciate your comments, which are definitely helping me to evolve my plans in a better direction.

Thanks again,

Fred

Frederick W. Chapman, PhD (Waterloo), MMath (Waterloo), BA (Lehigh)
Research Mathematician / Mathematical Software Specialist / Maple Expert
Full Credentials & Freelance Consulting Services:  linkedin.fwchapman.info

My first programmable calculator was a TI. It used algebraic notation. Many years later, I bought an HP. The RPN took getting used to and required a very different way of thinking, but now I like it much better—RPN requires fewer keystrokes than algebraic notation and is ultimately simpler. I think Maple is much too big to run on a handheld calculator. It would probably require a palmtop computer, at least. -- Frederick W. Chapman, Postdoctoral Fellow, University of Waterloo http://www.scg.uwaterloo.ca/~fwchapman/
Rich, As far as I can tell, the read asterisk means that the post contains material which you have not seen yet—either you have never read that post before or it has changed since you last read it; e.g., someone may have added a new comment or edited an old comment. There's an interesting twist to the red asterisk for the Sent-messages folder in your private messages: In that context, a red asterisk seems to mean that the recipient of your message has not read it yet! Fred -- Frederick W. Chapman, Postdoctoral Fellow, University of Waterloo http://www.scg.uwaterloo.ca/~fwchapman/
Hi Axel! Whenever an integral takes too long to evaluate numerically using evalf/Int in Maple, I try the method = ... option. This bypasses the standard evalf/Int polyalgorithm, which generally includes some symbolic preprocessing—that's where Maple sometimes gets bogged down. (This symbolic preprocessing is generally a very good thing, however.) If you want to see exactly where Maple gets bogged down, increase the infolevel before calling evalf, like this: > infolevel[evalf] := 1; If you want to see even more details, set the infolevel to a higher number. If you no longer want to see any extra information, set the infolevel to 0. There are many different numerical integration methods which you can specify in Maple 10. There are five native Maple methods for single integrals: method = _CCquad -- Clenshaw-Curtis quadrature method. method = _Dexp -- adaptive double-exponential method. method = _Gquad -- adaptive Gaussian quadrature method. method = _Sinc -- adaptive sinc quadrature method. method = _NCrule -- adaptive Newton-Cotes method "quanc8"... There are three external NAG methods for single integrals: method = _d01ajc -- for finite interval of integration... method = _d01akc -- for finite interval of integration... method = _d01amc -- for semi-infinite/infinite interval... There are two methods for multiple integrals: method = _cuhre -- multiple integrals over a hyperrectangle... method = _MonteCarlo -- Monte Carlo method over a hyperrectangle... Please see the ?evalfint help page for full details. For your integral, changing the upper limit to infinity and using method = _NCrule yields a result within a few seconds (on Maple 10.00 with the classic interface): > evalf(Int(2.9992571251988*(kappa-.89988751406074)/Pi* > exp(3.3571035419740-12.0624756920228897*ln(kappa))* > BesselK(1,26.1571648648044217*(.13147587176957e-1+(-.57683186342273e-1+ln(kappa))^2)^(1/2))/ > (.13147587176957e-1+(-.57683186342273e-1+ln(kappa))^2)^(1/2)/kappa, > kappa = .89988751406074 .. infinity, method=_NCrule)); 0.1061064735 Your 18-digit answer was 0.106106473481553262 Maple's result is your result correctly rounded to 10 digits. Note that I have Maple 10.00. Does this help you on Maple 10.02? All the best, Fred P.S. Thanks for visiting my blog. I posted a reply to your questions about multiple integration last night. -- Frederick W. Chapman, Postdoctoral Fellow, University of Waterloo http://www.scg.uwaterloo.ca/~fwchapman/
Page 1 of 1