<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/sage-edu</id>
  <title type="text">sage-edu Google Group</title>
  <subtitle type="text">
  This is an email list devoted to discussion of teaching and education applications of SAGE.
  </subtitle>
  <link href="/group/sage-edu/feed/atom_v1_0_msgs.xml" rel="self" title="sage-edu feed"/>
  <updated>2009-11-29T23:34:51Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>William Stein</name>
  <email>wst...@gmail.com</email>
  </author>
  <updated>2009-11-29T23:34:51Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/63c4ade6f1c0a0ad?show_docid=63c4ade6f1c0a0ad</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/63c4ade6f1c0a0ad?show_docid=63c4ade6f1c0a0ad"/>
  <title type="text">Re: [sage-edu] Re: hmmm ... this is interesting</title>
  <summary type="html" xml:space="preserve">
  On Sun, Nov 29, 2009 at 1:04 PM, Luiz Felipe Martins &lt;br&gt; &lt;p&gt;This is now trac 7556: &lt;br&gt; &lt;p&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://trac.sagemath.org/sage_trac/ticket/7556&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;William
  </summary>
  </entry>
  <entry>
  <author>
  <name>Rob Beezer</name>
  <email>goo...@beezer.cotse.net</email>
  </author>
  <updated>2009-11-29T21:56:11Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/bf50d9176c51f1e6?show_docid=bf50d9176c51f1e6</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/bf50d9176c51f1e6?show_docid=bf50d9176c51f1e6"/>
  <title type="text">Re: Sage TA?</title>
  <summary type="html" xml:space="preserve">
  I have an undergraduate student interested in a summer project writing &lt;br&gt; routines in Sage that will create &amp;quot;nice&amp;quot; problems in linear algebra. &lt;br&gt; Matrices that row-reduce nicely, have nice kernels and column spaces, &lt;br&gt; nice eigenvalues and eigenspaces, etc. I call it &amp;quot;linear algebra over &lt;br&gt; the integers&amp;quot; when I&#39;m in a joking mood.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Luiz Felipe Martins</name>
  <email>luizfelipe.mart...@gmail.com</email>
  </author>
  <updated>2009-11-29T21:04:35Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/f2710d41084442d6?show_docid=f2710d41084442d6</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/f2710d41084442d6?show_docid=f2710d41084442d6"/>
  <title type="text">Re: [sage-edu] Re: hmmm ... this is interesting</title>
  <summary type="html" xml:space="preserve">
  This is how round(x) is in the C library: &lt;br&gt; (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.gnu.org/s/libc/manual/html_node/Rounding-Functions.html&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; &lt;p&gt;Function: double round (double x) &lt;br&gt; &lt;p&gt; — Function: float roundf (float x) &lt;br&gt; &lt;p&gt; — Function: long double roundl (long double x) &lt;br&gt; &lt;p&gt; These functions are similar to rint, but they round
  </summary>
  </entry>
  <entry>
  <author>
  <name>mhampton</name>
  <email>hampto...@gmail.com</email>
  </author>
  <updated>2009-11-29T16:33:53Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/a6ae058dfc954afd?show_docid=a6ae058dfc954afd</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/a6ae058dfc954afd?show_docid=a6ae058dfc954afd"/>
  <title type="text">Re: hmmm ... this is interesting</title>
  <summary type="html" xml:space="preserve">
  This is because in the code for rounding, an element&#39;s own round &lt;br&gt; method is tried before converting to a float. The round function for &lt;br&gt; rationals rounds up if its exactly halfway: &lt;br&gt; &lt;p&gt; else: &lt;br&gt; q, r = self.numerator().quo_rem(self. denominator()) &lt;br&gt; if r &amp;lt; self.denominator() / 2: &lt;br&gt; return q
  </summary>
  </entry>
  <entry>
  <author>
  <name>michel paul</name>
  <email>mpaul...@gmail.com</email>
  </author>
  <updated>2009-11-29T15:47:48Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/9544f27481d4add7?show_docid=9544f27481d4add7</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/9490cb753485b99e/9544f27481d4add7?show_docid=9544f27481d4add7"/>
  <title type="text">hmmm ... this is interesting</title>
  <summary type="html" xml:space="preserve">
  sage: round(4.5) &lt;br&gt; 5.0 &lt;br&gt; sage: round(9/2) &lt;br&gt; 4.0 &lt;br&gt; &lt;p&gt;I noticed some strange behavior in a graph and tried to narrow down the &lt;br&gt; issue. This was it. &lt;br&gt; &lt;p&gt;-- &lt;br&gt; &amp;quot;Computer science is the new mathematics.&amp;quot; &lt;br&gt; &lt;p&gt;-- Dr. Christos Papadimitriou
  </summary>
  </entry>
  <entry>
  <author>
  <name>MišoLietavec</name>
  <email>frca...@gmail.com</email>
  </author>
  <updated>2009-11-29T12:38:55Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/aaa00f2718f495da?show_docid=aaa00f2718f495da</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/aaa00f2718f495da?show_docid=aaa00f2718f495da"/>
  <title type="text">Re: [sage-edu] Re: Sage TA?</title>
  <summary type="html" xml:space="preserve">
  I have the similar idea, about Python-based system, having improved WeBWorK &lt;br&gt; capabilities. Whether using Maxima interface (+ maybe matplotlib and mayavi2 &lt;br&gt; for plotting), &lt;br&gt; or to use (the subset of) Sage, this is a question. &lt;br&gt; &lt;p&gt;This semester we use Webwork for the curse of multidimensional calculus but,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Alasdair</name>
  <email>amc...@gmail.com</email>
  </author>
  <updated>2009-11-29T09:18:00Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/a8a61d0e84abc5b7?show_docid=a8a61d0e84abc5b7</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/a8a61d0e84abc5b7?show_docid=a8a61d0e84abc5b7"/>
  <title type="text">Re: Sage TA?</title>
  <summary type="html" xml:space="preserve">
  To show what I want, it&#39;s easiest just to copy and paste from the &lt;br&gt; Maple TA page at &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.maplesoft.com/products/mapleta/index.aspx:&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;just rely on content written by other &lt;br&gt; &lt;p&gt; * Includes an easy-to-use question bank editor, algorithm &lt;br&gt; designer, and assignment editor &lt;br&gt; * Hundreds of sample questions available, which can be used as-is
  </summary>
  </entry>
  <entry>
  <author>
  <name>kcrisman</name>
  <email>kcris...@gmail.com</email>
  </author>
  <updated>2009-11-29T04:56:44Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/f4915d888fe708ba/6f2ad8b765962149?show_docid=6f2ad8b765962149</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/f4915d888fe708ba/6f2ad8b765962149?show_docid=6f2ad8b765962149"/>
  <title type="text">Re: Sage education day 2</title>
  <summary type="html" xml:space="preserve">
  That sounds great - what aspects of education, what levels? &lt;br&gt; &lt;p&gt;Before: Mostly making sure that interested people will know about it, &lt;br&gt; making sure that you have enough people and topics to make it &lt;br&gt; coherent; in our case, having Nathan Carter&#39;s Lurch project as part of &lt;br&gt; it made it easier to make it also a place for people to let us know
  </summary>
  </entry>
  <entry>
  <author>
  <name>kcrisman</name>
  <email>kcris...@gmail.com</email>
  </author>
  <updated>2009-11-29T04:53:07Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/5f13788c9d25c888?show_docid=5f13788c9d25c888</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/5f13788c9d25c888?show_docid=5f13788c9d25c888"/>
  <title type="text">Re: Sage TA?</title>
  <summary type="html" xml:space="preserve">
  And, as a followup, does WebWorK already have most of what you need in &lt;br&gt; terms of this functionality (if I&#39;m interpreting this right)? Making &lt;br&gt; a &amp;quot;Sage TA&amp;quot; from scratch sounds like a lot of work... &lt;br&gt; &lt;p&gt;- kcrisman
  </summary>
  </entry>
  <entry>
  <author>
  <name>William Stein</name>
  <email>wst...@gmail.com</email>
  </author>
  <updated>2009-11-29T00:39:30Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/a9b738e6d580bd47?show_docid=a9b738e6d580bd47</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/a9b738e6d580bd47?show_docid=a9b738e6d580bd47"/>
  <title type="text">Re: [sage-edu] Sage TA?</title>
  <summary type="html" xml:space="preserve">
  What would it do? &amp;quot;Teaching and assessment&amp;quot; seems a little too vague &lt;br&gt; for me to understand. &lt;br&gt; What&#39;s an absolutely minimal list of features that &amp;quot;Sage TA&amp;quot; would &lt;br&gt; have to have to make you &lt;br&gt; a satisfied customer? &lt;br&gt; &lt;p&gt;William
  </summary>
  </entry>
  <entry>
  <author>
  <name>Alasdair</name>
  <email>amc...@gmail.com</email>
  </author>
  <updated>2009-11-29T00:06:13Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/22fcc9dd9bcc6e48?show_docid=22fcc9dd9bcc6e48</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/7abb8b8886b5df11/22fcc9dd9bcc6e48?show_docid=22fcc9dd9bcc6e48"/>
  <title type="text">Sage TA?</title>
  <summary type="html" xml:space="preserve">
  Over two years ago there were some discussions on the sage-support &lt;br&gt; group about the idea of &amp;quot;Sage TA&amp;quot;, a Sage version of Maple TA, the &lt;br&gt; teaching and assessment package produced by Maplesoft. I have spent &lt;br&gt; several years, and a fair amount of grant money, buying and trying to &lt;br&gt; use Maple TA at my own university, and I have been very disappointed
  </summary>
  </entry>
  <entry>
  <author>
  <name>Vincent D</name>
  <email>20100.delecr...@gmail.com</email>
  </author>
  <updated>2009-11-28T12:33:04Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/f4915d888fe708ba/e0d17aa840e7d397?show_docid=e0d17aa840e7d397</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/f4915d888fe708ba/e0d17aa840e7d397?show_docid=e0d17aa840e7d397"/>
  <title type="text">Sage education day 2</title>
  <summary type="html" xml:space="preserve">
  Hello, &lt;br&gt; &lt;p&gt;In February we will have the Sage days 20. The wednesday will concern &lt;br&gt; essentially Sage in education. Could we consider it as Sage education &lt;br&gt; day 2 ? &lt;br&gt; &lt;p&gt;I will be enlighted on any comment from the organizers of the Sage &lt;br&gt; days 1 (before and after). &lt;br&gt; &lt;p&gt;Vincent
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jenya Polyakova</name>
  <email>jeny...@yahoo.com</email>
  </author>
  <updated>2009-11-24T19:27:12Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/71a8eef2062a87ba?show_docid=71a8eef2062a87ba</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/71a8eef2062a87ba?show_docid=71a8eef2062a87ba"/>
  <title type="text">Re: [sage-edu] virtual machine and sage: newcomer questions....</title>
  <summary type="html" xml:space="preserve">
  Also, WIlliam, &lt;br&gt; I heard this is not (i.e. through Firefox) a stable way to work? Is it right? &lt;br&gt; Bests, &lt;br&gt; Jenya
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jenya Polyakova</name>
  <email>jeny...@yahoo.com</email>
  </author>
  <updated>2009-11-24T18:53:53Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/e589304064e5a326?show_docid=e589304064e5a326</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/e589304064e5a326?show_docid=e589304064e5a326"/>
  <title type="text">Re: [sage-edu] virtual machine and sage: newcomer questions....</title>
  <summary type="html" xml:space="preserve">
  I am not able to connect to my network right now....but will try as soon as I am home....Could you please give suggestions on how to to get to my folder on the actual desktop within the script? THANKS &lt;br&gt; Jenya
  </summary>
  </entry>
  <entry>
  <author>
  <name>William Stein</name>
  <email>wst...@gmail.com</email>
  </author>
  <updated>2009-11-24T18:50:35Z</updated>
  <id>http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/4b08b45489f3dcef?show_docid=4b08b45489f3dcef</id>
  <link href="http://groups.google.com/group/sage-edu/browse_frm/thread/8c35578d75c84817/4b08b45489f3dcef?show_docid=4b08b45489f3dcef"/>
  <title type="text">Re: [sage-edu] virtual machine and sage: newcomer questions....</title>
  <summary type="html" xml:space="preserve">
  There should be a little window that says something like: &lt;br&gt; &lt;p&gt; Open &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://192.168.1.51&quot;&gt;[link]&lt;/a&gt; in your web browser under Windows. &lt;br&gt; &lt;p&gt;If you see that windows, open it in Firefox under Windows 7. &lt;br&gt; &lt;p&gt; -- William
  </summary>
  </entry>
</feed>
