Carl Love

Carl Love

28015 Reputation

25 Badges

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

MaplePrimes Activity


These are replies submitted by Carl Love

@trial123 Your problem is interesting, but I don't know enough mechanical engineering to answer it. Other people may be reluctant to look at your problem because of the extra trouble of viewing the images one-by-one. So you should upload your worksheet. Here's how: In the MaplePrimes text editor, in the second row of the toolbar, the last item is a fat green up arrow. Click on that. You should also upload the diagram.

I find the need to convert to polynomial form strange. Should that be considered a bug? Is there any analogous situation with dsolve?

I find the need to convert to polynomial form strange. Should that be considered a bug? Is there any analogous situation with dsolve?

It is very unlikely that something would be fixed for Maple 16 now that Maple 17 has been released. But we might as well see if the error is also produced in Maple 17, so upload your program.

And, are you sure that the results that Maple 14 and 15 give are correct? There's a chance (perhaps small) that an error message is the correct response to your problem, and represents the correction of a bug rather than the introduction of one.

Also a nice trick. This shows that any distinct region can be selected if you can "trace" the border as one continuous path.

Also a nice trick. This shows that any distinct region can be selected if you can "trace" the border as one continuous path.

Try 7/2. I get a Beta function in Maple 17.

Does this line have a typo?

X := : Y := Matrix(2): Z := Matrix(2):

Or is there some new syntax that I'm not aware of?

Does this line have a typo?

X := : Y := Matrix(2): Z := Matrix(2):

Or is there some new syntax that I'm not aware of?

Nice trick with the color= white. A variation is to add the option transparency= 0 to the second plot.

Nice trick with the color= white. A variation is to add the option transparency= 0 to the second plot.

@JamesK 

I know:P.....I've also tried Tree := Tree, {whattype(expr)},{whattype(elem)}; but I get the same error...what can I do?

A set cannot have two copies of the same element. But you can make a copy of a symbol which looks the same but is essentially different. You do this with convert(..., `local`). Example

{A,A};
                              {A}
b:= convert(A, `local`);
                               A
{A,b};
                             {A, A}

You can make any number of copies this way. A string cannot be copied like this. This is why I labeled the vertices with symbols instead of strings in my FunctionToTree.

@JamesK 

I know:P.....I've also tried Tree := Tree, {whattype(expr)},{whattype(elem)}; but I get the same error...what can I do?

A set cannot have two copies of the same element. But you can make a copy of a symbol which looks the same but is essentially different. You do this with convert(..., `local`). Example

{A,A};
                              {A}
b:= convert(A, `local`);
                               A
{A,b};
                             {A, A}

You can make any number of copies this way. A string cannot be copied like this. This is why I labeled the vertices with symbols instead of strings in my FunctionToTree.

@JamesK I see....What do you recommend I should do?

To answer that simplistically: Anything can be converted to a string with convert(..., string) or sprintf("%a", ...); anything can be converted to a symbol with convert(..., symbol) or nprintf("%a", ...).

But since I know where you're going with this, I suggest that you study closely my FunctionToTree module in the other recent thread here. You're going to encounter exactly the same problems that I did when writing that, even though you're not first applying ToInert.

@JamesK I see....What do you recommend I should do?

To answer that simplistically: Anything can be converted to a string with convert(..., string) or sprintf("%a", ...); anything can be converted to a symbol with convert(..., symbol) or nprintf("%a", ...).

But since I know where you're going with this, I suggest that you study closely my FunctionToTree module in the other recent thread here. You're going to encounter exactly the same problems that I did when writing that, even though you're not first applying ToInert.

First 677 678 679 680 681 682 683 Last Page 679 of 708