-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
44 lines (30 loc) · 1.1 KB
/
tutorial.html
File metadata and controls
44 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Local files containing the website icon and stylesheet. -->
<link rel="stylesheet" type="text/css" href="theme.css">
<!-- Imports needed to use the Sage cell server. -->
<script type="text/javascript" src="https://sagecell.sagemath.org/static/jquery.min.js"></script>
<script type="text/javascript" src="https://sagecell.sagemath.org/embedded_sagecell.js"></script>
<script type="text/javascript" src="sagecell.js"></script>
<script type="text/javascript" src="sage-text.js"></script>
<!-- Additional CSS customizations -->
<style type="text/css"></style>
<!-- Page title -->
<title>Vaganov-Shashkin Growth Model</title>
</head>
<body>
<h1>Vaganov-Shashkin Growth Model</h1>
<p>It's coming!
<!--<div class="sagecell-plot" id="sagecell2"><script type="application/sage">-->
<div class="sagecell-plot">
<script type="application/sage">
x = var('x')
y = function('y', x)
de = diff(y,x,2) - y == x
show(desolve(de, y))
</script>
</div>
<script type="text/javascript">sageFooter()</script>
</body>
</html>