Carl Love

Carl Love

28070 Reputation

25 Badges

13 years, 28 days
Himself
Wayland, Massachusetts, United States
My name was formerly Carl Devore.

MaplePrimes Activity


These are replies submitted by Carl Love

Jay,

MaplePrimes seems to reinterpret the plot commands when you upload a worksheet. For example, notice the inclusion of gridlines. To prevent this, export the plots and upload them separately. I usually export as PNG if I'm not happy with how MaplePrimes mangled my plot.

Jay,

MaplePrimes seems to reinterpret the plot commands when you upload a worksheet. For example, notice the inclusion of gridlines. To prevent this, export the plots and upload them separately. I usually export as PNG if I'm not happy with how MaplePrimes mangled my plot.

Georgios,

In your example, Maple is not doing any numeric integration. It is computing a single antiderivative, which it then plots. You were just lucky that the constant of integration was what you wanted.

 

Jay,

Your first example (in the Answer) is not numeric integration either. The quotes are making Maple compute the antiderivative separately for each point it plots.

Georgios,

In your example, Maple is not doing any numeric integration. It is computing a single antiderivative, which it then plots. You were just lucky that the constant of integration was what you wanted.

 

Jay,

Your first example (in the Answer) is not numeric integration either. The quotes are making Maple compute the antiderivative separately for each point it plots.

@Heeka The GraphTheory package that I have been using throughout your two most recent threads does not exist in Maple 11.

The only other techniques for enumerating the Eulerian circuits that I can think of would be ad hoc---they would only work for a very small graph like this. Without loss of generality, we can assume that all Eulerian circuits begin with edges CA and AT.

@Heeka The GraphTheory package that I have been using throughout your two most recent threads does not exist in Maple 11.

The only other techniques for enumerating the Eulerian circuits that I can think of would be ad hoc---they would only work for a very small graph like this. Without loss of generality, we can assume that all Eulerian circuits begin with edges CA and AT.

@Heeka Note that there is a one-to-one correspondence between the Eulerian circuits in the original graph and in my enlarged graph.

@Heeka Note that there is a one-to-one correspondence between the Eulerian circuits in the original graph and in my enlarged graph.

@Markiyan Hirnyk My first answer was to a question that you deleted---a question about the examples on the help page ?LinearAlgebra,Modular,LinearSolve . I have since posted an answer to your second question.

@Markiyan Hirnyk My first answer was to a question that you deleted---a question about the examples on the help page ?LinearAlgebra,Modular,LinearSolve . I have since posted an answer to your second question.

@Markiyan Hirnyk There are two problems with your command

B:= LinearAolve(2, A, 2);

The first is that the return value of LinearSolve with the default inplace is NULL. So even if the command worked, would just be NULL

The second is that the second 2 in your command says that the rightmost two columns of A are "augmented". In other words, the matrix A represents a linear system C.X = D where C is 3x2 and D is 3x2, the leftmost two columns of being the C and the rightmost two columns being the D. This system is clearly inconsistent, its bottom row being < 0 0 | 1 1 >. If LinearSolve chooses to call that "singular" rather than "inconsistent", I am willing to forgive it. If it is to be considered a bug, it is only because of the choice of words in the error message.

@Markiyan Hirnyk There are two problems with your command

B:= LinearAolve(2, A, 2);

The first is that the return value of LinearSolve with the default inplace is NULL. So even if the command worked, would just be NULL

The second is that the second 2 in your command says that the rightmost two columns of A are "augmented". In other words, the matrix A represents a linear system C.X = D where C is 3x2 and D is 3x2, the leftmost two columns of being the C and the rightmost two columns being the D. This system is clearly inconsistent, its bottom row being < 0 0 | 1 1 >. If LinearSolve chooses to call that "singular" rather than "inconsistent", I am willing to forgive it. If it is to be considered a bug, it is only because of the choice of words in the error message.

@Markiyan Hirnyk The examples all seem consistent with what I said. With option inplace, the default, the result is obtained by re-examining the input matrix rather than by using the direct output of the command, which is NULL.

@Markiyan Hirnyk The examples all seem consistent with what I said. With option inplace, the default, the result is obtained by re-examining the input matrix rather than by using the direct output of the command, which is NULL.

@Markiyan Hirnyk Yes, of course, what I have created does not represent the original graph internally in Maple. This is a workaround required to create an approximate visualization of the Asker's original, which seemed to be what she wanted.

First 634 635 636 637 638 639 640 Last Page 636 of 709