<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A 10 minute tutorial for solving Math problems with Maxima</title>
	<atom:link href="http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/feed/" rel="self" type="application/rss+xml" />
	<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/</link>
	<description>Mathematics is wonderful!</description>
	<lastBuildDate>Thu, 04 Mar 2010 18:20:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: AKE</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7733</link>
		<dc:creator>AKE</dc:creator>
		<pubDate>Mon, 22 Feb 2010 18:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7733</guid>
		<description>Very nice tutorial introduction! Highly recommended first intro to Maxima.

I&#039;ve put together a selection of the Maxima resources that I&#039;ve found most useful over the years, including a succinct instruction cheatsheet, a guide to programming subroutines/scripts, and a Mathematica-Maxima syntax conversion chart.  

They&#039;re available here:
http://mathscitech.org/articles/maxima

Enjoy!</description>
		<content:encoded><![CDATA[<p>Very nice tutorial introduction! Highly recommended first intro to Maxima.</p>
<p>I&#8217;ve put together a selection of the Maxima resources that I&#8217;ve found most useful over the years, including a succinct instruction cheatsheet, a guide to programming subroutines/scripts, and a Mathematica-Maxima syntax conversion chart.  </p>
<p>They&#8217;re available here:<br />
<a href="http://mathscitech.org/articles/maxima" rel="nofollow">http://mathscitech.org/articles/maxima</a></p>
<p>Enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Belash</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7576</link>
		<dc:creator>Ivan Belash</dc:creator>
		<pubDate>Wed, 16 Dec 2009 08:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7576</guid>
		<description>You forget one, but very important thing: how to run - Ctrl+R
It really easy, but it was a problem for me.</description>
		<content:encoded><![CDATA[<p>You forget one, but very important thing: how to run &#8211; Ctrl+R<br />
It really easy, but it was a problem for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7423</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 14 Nov 2009 22:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7423</guid>
		<description>When I try your example:

trigsimp(2*cos(x)^2 + sin(x)^2);

I get
=&gt; \displaystyle \cos(x)^2+1
instead of
=&gt; \displaystyle \cos ^2x+1</description>
		<content:encoded><![CDATA[<p>When I try your example:</p>
<p>trigsimp(2*cos(x)^2 + sin(x)^2);</p>
<p>I get<br />
=&gt; \displaystyle \cos(x)^2+1<br />
instead of<br />
=&gt; \displaystyle \cos ^2x+1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Friedman</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7267</link>
		<dc:creator>David Friedman</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7267</guid>
		<description>I&#039;m trying Maxima now, after closing my sage session. I ran into trouble using sage to define a symbolic sum e.g. you want to define a function like:

f(x) = sum(i, i, 1, x); 

apparently sage cannot do that at this point in the development. It was disappointing that sage couldn&#039;t do this (or if it is possible to do this I couldn&#039;t figure it out after an hour of trying). 

sage is actually the first hit after a google search for &quot;sage&quot;, so it is still popular, and maybe it&#039;ll improve by leaps and bounds, but at least after the first ten minutes I have a better feeling about Maxima.  

when I was searching for a way to solve my problem I found this thread, which indicates 
that this functionality is on the way for the sage:

http://groups.google.com/group/sage-support/browse_thread/thread/cf9cb4e92ce3bc04/f5e41d8aa31294e4?lnk=gst&amp;q=sum#f5e41d8aa31294e4   

it seems to me that sage is more of an interface to or a concatenation of a lot of other programs (latex, r, maxima, python etc., and also commercial programs like mathematica, matlab).  I guess one has to ask whether when doing a task it is better to use sage as a single command center, or to just use that program directly.</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying Maxima now, after closing my sage session. I ran into trouble using sage to define a symbolic sum e.g. you want to define a function like:</p>
<p>f(x) = sum(i, i, 1, x); </p>
<p>apparently sage cannot do that at this point in the development. It was disappointing that sage couldn&#8217;t do this (or if it is possible to do this I couldn&#8217;t figure it out after an hour of trying). </p>
<p>sage is actually the first hit after a google search for &#8220;sage&#8221;, so it is still popular, and maybe it&#8217;ll improve by leaps and bounds, but at least after the first ten minutes I have a better feeling about Maxima.  </p>
<p>when I was searching for a way to solve my problem I found this thread, which indicates<br />
that this functionality is on the way for the sage:</p>
<p><a href="http://groups.google.com/group/sage-support/browse_thread/thread/cf9cb4e92ce3bc04/f5e41d8aa31294e4?lnk=gst&amp;q=sum#f5e41d8aa31294e4" rel="nofollow">http://groups.google.com/group/sage-support/browse_thread/thread/cf9cb4e92ce3bc04/f5e41d8aa31294e4?lnk=gst&amp;q=sum#f5e41d8aa31294e4</a>   </p>
<p>it seems to me that sage is more of an interface to or a concatenation of a lot of other programs (latex, r, maxima, python etc., and also commercial programs like mathematica, matlab).  I guess one has to ask whether when doing a task it is better to use sage as a single command center, or to just use that program directly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samuel measho</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7264</link>
		<dc:creator>samuel measho</dc:creator>
		<pubDate>Wed, 14 Oct 2009 19:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7264</guid>
		<description>HI ,I just want to ask how can i use maxima to compute and draw the graph of complex numbers.</description>
		<content:encoded><![CDATA[<p>HI ,I just want to ask how can i use maxima to compute and draw the graph of complex numbers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandros</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7251</link>
		<dc:creator>Alexandros</dc:creator>
		<pubDate>Sat, 26 Sep 2009 10:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7251</guid>
		<description>I exit maxima with Ctrl-D.</description>
		<content:encoded><![CDATA[<p>I exit maxima with Ctrl-D.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Cangiano</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7249</link>
		<dc:creator>Antonio Cangiano</dc:creator>
		<pubDate>Fri, 25 Sep 2009 18:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7249</guid>
		<description>Larry, quit(); will exit maxima. :)</description>
		<content:encoded><![CDATA[<p>Larry, quit(); will exit maxima. <img src='http://math-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry Dickson</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7248</link>
		<dc:creator>Larry Dickson</dc:creator>
		<pubDate>Fri, 25 Sep 2009 18:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7248</guid>
		<description>How do you gracefully exit the maxima program? exit; and quit; don&#039;t work. I tried ? quit and did get out via a stack overflow :-) but surely there is some way out other than crashing???</description>
		<content:encoded><![CDATA[<p>How do you gracefully exit the maxima program? exit; and quit; don&#8217;t work. I tried ? quit and did get out via a stack overflow <img src='http://math-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  but surely there is some way out other than crashing???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hank</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7240</link>
		<dc:creator>Hank</dc:creator>
		<pubDate>Sun, 20 Sep 2009 05:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7240</guid>
		<description>Hi --

Don&#039;t forget to check out the best Maxima tutorial IMHO:

http://www.csulb.edu/~woollett/

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi &#8211;</p>
<p>Don&#8217;t forget to check out the best Maxima tutorial IMHO:</p>
<p><a href="http://www.csulb.edu/~woollett/" rel="nofollow">http://www.csulb.edu/~woollett/</a></p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-7202</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 11 Sep 2009 14:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-7202</guid>
		<description>Hi
I&#039;m alex..I write because I knew Maxima last year and using there in linux, it&#039;s amazing!!!..But now I want install Maxima in WinXP (for work) and I fail the configuration because there is a problem with a socket!!!
How Can I do? 
thanks (Sorry for my English)!!!
Bie!!!</description>
		<content:encoded><![CDATA[<p>Hi<br />
I&#8217;m alex..I write because I knew Maxima last year and using there in linux, it&#8217;s amazing!!!..But now I want install Maxima in WinXP (for work) and I fail the configuration because there is a problem with a socket!!!<br />
How Can I do?<br />
thanks (Sorry for my English)!!!<br />
Bie!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
