<?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>Wed, 09 May 2012 00:38:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: KSO</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26457</link>
		<dc:creator>KSO</dc:creator>
		<pubDate>Wed, 09 May 2012 00:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26457</guid>
		<description>I&#039;m trying to add random noise to a function, but the random() function only generates a single number, giving me an offset. I want my function to plot a Lorentzian curve, for example, but I want random white noise added to every point, not just one. I used the following function definition:

Lno(G,x0,x):=(
		r:random(x),
		1/%pi*(0.5*G)/((x-x0)^2+(0.5*G)^2)+r
);

and tried another

Lnoi(G,x0,x):=1/%pi*(0.5*G)/((x-x0)^2+(0.5*G)^2)+random(1.2);

All I get is a smooth Lorentzian curve with a random offset when I plot using plot2d, not random noise at every point.

Does anyone know how to do this?</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to add random noise to a function, but the random() function only generates a single number, giving me an offset. I want my function to plot a Lorentzian curve, for example, but I want random white noise added to every point, not just one. I used the following function definition:</p>
<p>Lno(G,x0,x):=(<br />
		r:random(x),<br />
		1/%pi*(0.5*G)/((x-x0)^2+(0.5*G)^2)+r<br />
);</p>
<p>and tried another</p>
<p>Lnoi(G,x0,x):=1/%pi*(0.5*G)/((x-x0)^2+(0.5*G)^2)+random(1.2);</p>
<p>All I get is a smooth Lorentzian curve with a random offset when I plot using plot2d, not random noise at every point.</p>
<p>Does anyone know how to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phobos</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26456</link>
		<dc:creator>phobos</dc:creator>
		<pubDate>Tue, 08 May 2012 11:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26456</guid>
		<description>How to use if condition inside for loop.
I am using the following:

new:makelist(0);
k:1;
for i from 1 thru 10 do (
(if(imagpart(xvals[i]) = 0) then ab:makelist(xvals[i]),new:append(new,ab),k:k+1)
);

But, the if condition also gets executed 10 times.. though clearly it is not the case in my program.</description>
		<content:encoded><![CDATA[<p>How to use if condition inside for loop.<br />
I am using the following:</p>
<p>new:makelist(0);<br />
k:1;<br />
for i from 1 thru 10 do (<br />
(if(imagpart(xvals[i]) = 0) then ab:makelist(xvals[i]),new:append(new,ab),k:k+1)<br />
);</p>
<p>But, the if condition also gets executed 10 times.. though clearly it is not the case in my program.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Kanagasabapathy</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26451</link>
		<dc:creator>M Kanagasabapathy</dc:creator>
		<pubDate>Sun, 06 May 2012 05:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26451</guid>
		<description>Dear Antonio Cangiano,

Excellent and  Nice tutorial. Kindly proceed for higher computations , tensors, numerical simulations etc., if possible. It can be beneficial for researchers and students.
Dr M Kanagasabapathy</description>
		<content:encoded><![CDATA[<p>Dear Antonio Cangiano,</p>
<p>Excellent and  Nice tutorial. Kindly proceed for higher computations , tensors, numerical simulations etc., if possible. It can be beneficial for researchers and students.<br />
Dr M Kanagasabapathy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RockyRoad</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26358</link>
		<dc:creator>RockyRoad</dc:creator>
		<pubDate>Tue, 03 Apr 2012 10:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26358</guid>
		<description>Great work Antonio, thank you very much :)

Inspiring ? Yes ! 

I&#039;m nearly new to CAS programs (played a bit with gnuplot though), my last math classes are over 25 years old now ... not easy !

I&#039;m delighted to discover what Maxima can do for me and feel eager to refresh and
and expand my math notions and practice.

Your tutorial could do that !</description>
		<content:encoded><![CDATA[<p>Great work Antonio, thank you very much <img src='http://math-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Inspiring ? Yes ! </p>
<p>I&#8217;m nearly new to CAS programs (played a bit with gnuplot though), my last math classes are over 25 years old now &#8230; not easy !</p>
<p>I&#8217;m delighted to discover what Maxima can do for me and feel eager to refresh and<br />
and expand my math notions and practice.</p>
<p>Your tutorial could do that !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jerzy</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26329</link>
		<dc:creator>jerzy</dc:creator>
		<pubDate>Sat, 10 Mar 2012 20:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26329</guid>
		<description>Clear, simple, useffull, beautiful work. Thanks.</description>
		<content:encoded><![CDATA[<p>Clear, simple, useffull, beautiful work. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jerzy</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26328</link>
		<dc:creator>jerzy</dc:creator>
		<pubDate>Sat, 10 Mar 2012 20:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26328</guid>
		<description>Maxima gives correct result, because:
2*cos(x)^2 + sin(x)^2=
cos(x)^2+cos(x)^2 + sin(x)^2=
cos(x)^2+1

where 
cos(x)^2 + sin(x)^2=1</description>
		<content:encoded><![CDATA[<p>Maxima gives correct result, because:<br />
2*cos(x)^2 + sin(x)^2=<br />
cos(x)^2+cos(x)^2 + sin(x)^2=<br />
cos(x)^2+1</p>
<p>where<br />
cos(x)^2 + sin(x)^2=1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Pilous</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-26326</link>
		<dc:creator>Derek Pilous</dc:creator>
		<pubDate>Mon, 05 Mar 2012 22:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-26326</guid>
		<description>Fantastic tutorial, thank you very much. If you&#039;re not a teacher, you should be (well, if you&#039;re scientist, you&#039;re excused ;)). I am teacher myself and I can say, there are few people capable of writing so comprehensible and yet inspiring introduction to topic. Sorry for my English :)</description>
		<content:encoded><![CDATA[<p>Fantastic tutorial, thank you very much. If you&#8217;re not a teacher, you should be (well, if you&#8217;re scientist, you&#8217;re excused <img src='http://math-blog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). I am teacher myself and I can say, there are few people capable of writing so comprehensible and yet inspiring introduction to topic. Sorry for my English <img src='http://math-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ragbir Chana</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-25325</link>
		<dc:creator>Ragbir Chana</dc:creator>
		<pubDate>Fri, 11 Nov 2011 14:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-25325</guid>
		<description>Great tutorial. I like tutorials doing by example.</description>
		<content:encoded><![CDATA[<p>Great tutorial. I like tutorials doing by example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulb</title>
		<link>http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/comment-page-3/#comment-24715</link>
		<dc:creator>paulb</dc:creator>
		<pubDate>Tue, 13 Sep 2011 02:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-24715</guid>
		<description>try 

f(x):=sum(i, i, 1, x);
plot2d(f(x),[x,1,20]);</description>
		<content:encoded><![CDATA[<p>try </p>
<p>f(x):=sum(i, i, 1, x);<br />
plot2d(f(x),[x,1,20]);</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-24588</link>
		<dc:creator>Antonio Cangiano</dc:creator>
		<pubDate>Tue, 06 Sep 2011 10:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://math-blog.com/2007/06/04/a-10-minute-tutorial-for-solving-math-problems-with-maxima/#comment-24588</guid>
		<description>&lt;pre class=&quot;mathcode&quot;&gt;
sum(i, i, 1, n), simpsum;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<pre class="mathcode">
sum(i, i, 1, n), simpsum;
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

