Carl Love

Carl Love

28045 Reputation

25 Badges

12 years, 334 days
Himself
Wayland, Massachusetts, United States
My name was formerly Carl Devore.

MaplePrimes Activity


These are replies submitted by Carl Love

@abbeykabir So the simple Newton iteration and fsolve return the same answers for your equations.

@abbeykabir So the simple Newton iteration and fsolve return the same answers for your equations.

I've never been a Mathematica user, nor have I made a comparison, so I may not be who you want to hear from. From the little bits of Mathematica that I've seen, it has a hideous bracketing syntax, using square brackets instead of parentheses and curly braces instead of square brackets.

I also object to the underlying code being hidden.

@abbeykabir Okay, good. (You need to reverse the direction of the inequality.) Yes, it's called convergence. In the multivariate case X[i+1] - X[i] is a vector. What is the analog of absolute value for vectors?

@abbeykabir Okay, good. (You need to reverse the direction of the inequality.) Yes, it's called convergence. In the multivariate case X[i+1] - X[i] is a vector. What is the analog of absolute value for vectors?

@yangtheary The title of your reply indicates that you are looking for a polynomial answer. My answer is based on seeing a pattern, and is not a polynomial.

A polynomial answer can always be obtained by a trivial formula, so is rather boring. The polynomials produced are usually not obvious or interesting, and their extrapolations usually do not follow the "obvious" and "logical" pattern of the sequence.

CurveFitting:-PolynomialInterpolation([[1,1], [2,3], [3,6], [4,12], [5,24]], n);


 

Say, what is the theme or purpose of your current series of questions?

 

 

@yangtheary The title of your reply indicates that you are looking for a polynomial answer. My answer is based on seeing a pattern, and is not a polynomial.

A polynomial answer can always be obtained by a trivial formula, so is rather boring. The polynomials produced are usually not obvious or interesting, and their extrapolations usually do not follow the "obvious" and "logical" pattern of the sequence.

CurveFitting:-PolynomialInterpolation([[1,1], [2,3], [3,6], [4,12], [5,24]], n);


 

Say, what is the theme or purpose of your current series of questions?

 

 

@erik10 

Maybe it is a bug that the cursor doesn't stop at the line, where the error occurs - as it did in Maple 16, you say?

I reported it as a bug several months ago.

I haven't been working with modules earlier. I understand it as a kind of collection of procedures created for a special purpose, so it makes a whole and easier to work with.

That's one thing that modules are for.

@erik10 

Maybe it is a bug that the cursor doesn't stop at the line, where the error occurs - as it did in Maple 16, you say?

I reported it as a bug several months ago.

I haven't been working with modules earlier. I understand it as a kind of collection of procedures created for a special purpose, so it makes a whole and easier to work with.

That's one thing that modules are for.

@erik10 Also note that I gave an answer to your question about modules above.

@erik10 Also note that I gave an answer to your question about modules above.

@erik10 

The code editor in Maple 16, while it did not have colors, did place your cursor a the point of a syntax error! It is very frustrating to find a missing parenthesis sometimes. Sometimes I cut-and-paste the code out to the regular GUI to find an error.

A module is essentially a procedure. It usually has procedures that are local to it, but the locals can be anything, just as with a procedure. If you want a group of procedures to share access to the locals of their parent procedure, you might as well make it a module. A module can have some locals which are visible outside of the module. These are called the exports of the module. In this way, a module is like a class in C++. If a module has a procedure named ModuleApply, then that procedure is called when the module's name is invoked as a procedure call. 

@erik10 

The code editor in Maple 16, while it did not have colors, did place your cursor a the point of a syntax error! It is very frustrating to find a missing parenthesis sometimes. Sometimes I cut-and-paste the code out to the regular GUI to find an error.

A module is essentially a procedure. It usually has procedures that are local to it, but the locals can be anything, just as with a procedure. If you want a group of procedures to share access to the locals of their parent procedure, you might as well make it a module. A module can have some locals which are visible outside of the module. These are called the exports of the module. In this way, a module is like a class in C++. If a module has a procedure named ModuleApply, then that procedure is called when the module's name is invoked as a procedure call. 

@abbeykabir The algorithms are not in packages. They are all accessible via the method option: dsolve(..., numeric, method= ...). They are documented on the help pages ?dsolve,numeric,IVP , ?dsolve,numeric,BVP , and ?dsolve,numeric,classical .

@abbeykabir The algorithms are not in packages. They are all accessible via the method option: dsolve(..., numeric, method= ...). They are documented on the help pages ?dsolve,numeric,IVP , ?dsolve,numeric,BVP , and ?dsolve,numeric,classical .

First 624 625 626 627 628 629 630 Last Page 626 of 709