Christopher2222

5785 Reputation

24 Badges

16 years, 347 days

MaplePrimes Activity


These are answers submitted by Christopher2222

My x^2 issue I found was just bad syntax there is no problem there.  Your plot issue was just you putting the wrong variable to the range.

I can not replicate any errors you produce.  Have been able to replicate the errors on another worksheet?  Are you using windows 10?  or  Mac?

 

It seems that error only comes up when you use the greek letter from the pallete and used without the multiplication sign. 

After which no matter what you do the error won't go away until you restart and use the pallete symbol with a space as multiplication again.

You aren't explaining EXACTLY what you are doing.  I think you are missing some things in explaining what you are doing. 

The only lines causing errors are the ones that look like this after copying to notepad

(∫)[0]^(Pi)sin(x) ⅆx;

(∫)[0]^(2 )(x)^(2) ⅆx

Your other lines that execute properly look proper when copied to notepad.  I can only think you are doing some kind of deleting or adding a space or something in the wrong spot however which I can not duplicate.

After re-installing.  I am having no luck (or good luck as the case may be) trying to recreate the errors you experience. 

I can not, no matter what I do get the errors you see.  I am trying to find out what you are doing.

Only after downloading your Bad Maple worksheet did I start exhibiting these problems.  I tried to restore my computer to earlier times and I've done it before but now after a restart (restarted funny) I have no restore points - and I should. 

I suspect there exists a virus in your file. 

I tried exactly what you did again in 2016.1 and did NOT get the errors you see.

Regarding your claim to know the proper syntax with

plot(t,x=0..2) let me remind you that YES that is BAD syntax.  With that you WILL get the errorWarning, expecting only range variable x in expression t to be plotted but found name t

That error is received in both 2016.1 and in Maple 18.  Again bad plot syntax as I correctly suggested earlier.  Considering you most likely mistakenly forgot about that bad syntax you presented I could not no matter how hard I tried to get the error you presented.

Your bugs in parsing resource can not be found.  It is most likely some combination of lines you deleted and re-executed after which caused the error.  Maple integrates no problems for me with Pi and pi in the definite integrals.  As with differentiation, it is carried out with no problems. 

int(x^2,x=0..2) returns the correct answer.

using the graphing interface I tried multiple times to replicate your error. 


Let me ask if you have been able to repeat your errors on a new sheet?

I suspect you have done something to create that error.  It does not occur in 2016.0.

Now if load your sheet into 2016 the errors occur as executed.  So it is something with you're entering and deleting on the sheet as it can not be duplicated unless someone with 2016.1 update can confirm.

And this is just bad programming executionon your part...

plot(t,x=0..2)

what you mean to do is plot(x,x=0..2) or plot(t,t=0..2)

 

add(i,i=[op(sn)])

but this adds all of them so a little modification

ps:=proc(a,b)
  add(i,i=[op(a)[1..b]])
end proc:

proc(sn,3)

  a1+a2+a3

 

 

So as Markiyan pointed to Acers solution, yours could look like this

plot(sin((1/180)*Pi*x), x = -180 .. 180, tickmarks = [[seq(180*i*(1/4) = (180*i*(1/4))*`°`, i = -4 .. 4)], default])

Couldn't you just put it in the quotes?

plot(sin((1/180)*Pi*x), x = -180 .. 180, axis[1] = [tickmarks = [90 = typeset("90°")]])

@mapleatha 

You could try

printf("The Equation Is: %a",EQ)

The best you can do is

F5 to toggle to text enter your text "The equation" then press F5 again to back to math mode and type EQ and then press Ctrl and +

                              2
The equation EQ =  s  - 4 s + 1 = 3


So unless you go back and delete EQ there isn't a way to replace EQ with the equation you want

When using view, Maple uses the default graphing of x=-10..10.  Viewing anything outside of those values will only show a graph within the x=-10..10 boundaries.

If you want to show outside those limits use a range instead of view

In your case do this

plot(sqrt(x+12),x=-20..3,y=-1..5)

you can leave out the y range and Maple will automatically scale the y after choosing the x range

plot(sqrt(x+12),x=-20..3)

 

F5 will do the same thing as Ctrl-T, pressing F5 again will toggle back.

@st104290 Nothing wrong with the code.  It works fine in 2015

The animations don't run automatically.  All animations are static (like you are seeing) until you click on the plot and press the play button in the top menu bar.

First 10 11 12 13 14 15 16 Last Page 12 of 47