Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: UTMOST 2
Views: 1609
1
====
2
News
3
====
4
5
.. begin-recent-news
6
7
January 2015
8
^^^^^^^^^^^^
9
10
Joint Mathematics Meetings, January 10-13
11
The UTMOST team presented a poster on this project at the NSF
12
UTMOST poster session.
13
14
William Stein gave a one-hour Guest Lecture to the SIGMAA on Mathematics
15
Instruction Using the Web on the SaqgeMathCloud. Tom Judson was an
16
organizer of the "Poster Plus 5" Session on Open Source
17
Resources in Mathematics, which included a presentation by Tom Judson,
18
Rob Beezer and David Farmer.
19
20
The Sage project also had a successful booth in the exhibit hall, which introduced
21
many people to both the SageMathCloud and the Sage Cell Server.
22
23
June 2014
24
^^^^^^^^^
25
26
Sage Education Days, June 16--18
27
`Sage Edu Days 6 <http://wiki.sagemath.org/education6>`__ will be
28
held June 16--18 at the University of Washington in Seattle. See
29
the website for schedule and videos of talks.
30
31
Anyone with an interest in the use of Sage in educational settings
32
is welcome to attend. The focus will primarily be on undergraduate
33
mathematics, but will not be limited to just that area.
34
35
There will also be a `developer conference
36
<http://wiki.sagemath.org/days58>`__ happening that whole week.
37
38
March 2014
39
^^^^^^^^^^
40
41
Sage Cell Server
42
In March 2014, the Sage Cell Server had an average of 1986
43
computations per day, about 100 more computations per day than in
44
February 2014. The service was visited by users in 158 countries
45
(about half coming from United States, 25% from Europe, and
46
10% from Asia). The top city accessing the service was Tacoma, WA
47
(no doubt due to Rob Beezer's online linear algebra textbook using
48
it), followed by Omaha, NE, Ottawa, Hartford, CN, and Fargo, ND.
49
50
SageMathCloud
51
In March 2014, about 40,000 projects were modified. At the end of
52
March, there were around 28,500 accounts (with about 150 accounts being
53
created each day) and around 43,500 total projects. See `this page
54
<http://boxen.math.washington.edu/home/schilly/salvus/stats/stats.html>`__
55
for more graphs and statistics.
56
57
January 2014
58
^^^^^^^^^^^^
59
60
Joint Mathematics Meetings, January 15--18
61
The UTMOST team presented a poster on this project at the NSF
62
UTMOST poster session
63
64
Several UTMOST collaborators talked in sessions, including the
65
MAA Open Textbook session (Tom Judson/Rob Beezer) and in the MAA
66
Online Resources session (Jason Grout).
67
68
The Sage project also had a successful booth in the exhibit hall, which introduced
69
many people to both the SageMathCloud and the Sage Cell Server.
70
71
72
June 2013
73
^^^^^^^^^
74
75
Sage Education Days, June 19--21
76
`Sage Edu Days 5 <http://wiki.sagemath.org/education5>`__ will be
77
held June 19--21 at the University of Washington in Seattle. See
78
the website for schedule and videos of talks.
79
80
Anyone with an interest in the use of Sage in educational settings
81
is welcome to attend. The focus will primarily be on undergraduate
82
mathematics, but will not be limited to just that area.
83
84
There will also be a `developer conference
85
<http://wiki.sagemath.org/days48>`__ happening that whole week,
86
with the Sage Cloud as the theme.
87
88
.. end-recent-news
89
90
June 2012
91
^^^^^^^^^
92
93
Sage Education Days, June 13--21
94
`Sage Edu Days 5 <http://wiki.sagemath.org/education4>`__ will be
95
held June 13-15 at the University of Washington in Seattle.
96
97
Anyone with an interest in the use of Sage in educational settings
98
is welcome to attend. The focus will primarily be on undergraduate
99
mathematics, but will not be limited to just that area.
100
101
There will also be a `developer conference
102
<http://wiki.sagemath.org/days41>`__ happening that whole week,
103
with the Sage notebook as the theme.
104
105
January 2012
106
^^^^^^^^^^^^
107
108
Joint Meetings
109
We had a booth in the TUES poster session, and the Sage booth in the
110
conference hall was a big hit as well.
111
112
August 2011
113
^^^^^^^^^^^
114
115
Mathfest
116
We had a very successful booth that we shared with the `Webwork <http://webwork.maa.org/>`__ folks.
117
118
AIM Open Textbook Initiative
119
American Institute of Mathematics has launched its `Open Textbook
120
Initiative <http://aimath.org/textbooks/>`__. This initiative will
121
review and provide links to high-quality open-source textbooks.
122
This initiative is supported in part by UTMOST.
123
124
Sage-Enhanced Textbooks
125
Rob Beezer `announced
126
<http://groups.google.com/group/sage-devel/browse_thread/thread/6b439a44b0794dbb/7f89285396f36b18>`__
127
his work on enhancing his `linear algebra textbook
128
<http://linear.ups.edu/sage-fcla.html>`__ and also `announced <http://groups.google.com/group/sage-edu/browse_thread/thread/39a89604d56ae837/2a1fe3b7265b38c6>`__
129
his work on enhancing Judson's `abstract algebra textbook <http://abstract.ups.edu/sage-aata.html>`__. Both
130
of these projects involved work sponsored by UTMOST.
131
132
Embedding Sage in a webpage (beta)
133
You can now embed Sage into any webpage! A beta version of the
134
Sage Cell server was released. See the `documentation
135
<http://sage.math.washington.edu/home/jason/sagecell/embedding.html>`__
136
for embedding a computation.
137
138
As an example, click the button below to explore a Taylor
139
polynomial
140
141
.. raw:: html
142
143
<script type="text/javascript" src="http://aleph.sagemath.org/static/jquery.min.js"></script>
144
<script type="text/javascript" src="http://aleph.sagemath.org/embedded_sagecell.js"></script>
145
146
.. raw:: html
147
148
<div id="sagecell-interact"><script type="text/code">var('x')
149
x0 = 0
150
f(x) = sin(x)*e^(-x)
151
p = plot(f,(x,-1,5), thickness=2)
152
dot = point((x0,f(x=x0)),pointsize=80,rgbcolor=(1,0,0))
153
@interact
154
def _(order=(1..12)):
155
ft = f.taylor(x,x0,order)
156
pt = plot(ft,(x,-1, 5), color='green', thickness=2)
157
html('$f(x)\;=\;%s$'%latex(f(x)))
158
html('$\hat{f}(x;%s)\;=\;%s+\mathcal{O}(x^{%s})$'%(x0,latex(ft(x)),order+1))
159
show(dot + p + pt, ymin = -.5, ymax = 1)
160
</script></div>
161
<script>
162
$(function () {
163
sagecell.makeSagecell({inputLocation: '#sagecell-interact',
164
template: sagecell.templates.minimal,
165
evalButtonText: "Explore Taylor polynomials"})})
166
</script>
167
168
or generate graph paper (including a pdf)
169
170
.. raw:: html
171
172
<div id="sagecell-graphpaper"><script type="text/code">html("<h3>Graph Paper Generator</h3>")
173
import matplotlib
174
@interact(layout=[['xmin','xmax'],['ymin','ymax'],['nolab','xlab'],['gridlines','ylab']])
175
def doit(xmin=-4,xmax=4,ymin=-4,ymax=4,nolab=('labels',True),xlab=('x ticks',True),ylab=('y ticks',True),gridlines=('gridlines',True)):
176
if xlab:
177
xlabels=[xmin+i for i in range(0,xmax-xmin+1)]
178
else:
179
xlabels=[]
180
if ylab:
181
ylabels=[ymin+i for i in range(0,ymax-ymin+1)]
182
else:
183
ylabels=[]
184
p=plot(0,(x,xmin,xmax),ymin=ymin,ymax=ymax,ticks=[xlabels,ylabels],color='black', aspect_ratio=1,
185
gridlines=gridlines, gridlinesstyle=dict(linestyle='--',color='gray'))
186
if nolab:
187
show(p)
188
html('Click on link below to download PDF version.')
189
p.save("graph.pdf")
190
else:
191
p.show(tick_formatter=(matplotlib.ticker.NullFormatter(),matplotlib.ticker.NullFormatter()))
192
html('Click on link below to download PDF version.')
193
p.save("graph.pdf",tick_formatter=(matplotlib.ticker.NullFormatter(),matplotlib.ticker.NullFormatter()))
194
</script></div>
195
<script>
196
$(function () {
197
sagecell.makeSagecell({inputLocation: '#sagecell-graphpaper',
198
template: sagecell.templates.minimal,
199
evalButtonText: "Make graphing paper"})})
200
</script>
201
202
203
or try whatever Sage computation you want below.
204
205
.. raw:: html
206
207
<div id="sagecell-test">factorial(30) # edit me</div>
208
209
<script>
210
$(function () {sagecell.makeSagecell({
211
inputLocation: '#sagecell-test',
212
'hide': ['files']})})
213
</script>
214
215
216
217
June 2011
218
^^^^^^^^^
219
220
Sage Education Days 3, 16--18 Jun 2011
221
We had our first UTMOST conference in Seattle with the test site
222
teacher-authors for the 2011-2012 academic year. See the
223
`conference homepage <http://wiki.sagemath.org/education3>`__ for
224
details, links to videos of the talks, etc.
225
226
227
July 2010
228
^^^^^^^^^
229
230
Grant awarded
231
The UTMOST proposal was awarded a grant!
232
233
234