3-30 and index file

This commit is contained in:
2021-08-29 11:04:41 -07:00
parent 3cb8abfd8f
commit 8ff3055c97
5 changed files with 360 additions and 3 deletions

131
index.html Normal file
View File

@@ -0,0 +1,131 @@
<!--
This work is licensed under CC BY-NC-ND 4.0
Link to license: http://creativecommons.org/licenses/by-nc-nd/4.0/
Attribute to Russell Georgi
-->
<html>
<head>
<title>
List of programs
</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
th {
border: 1px solid #dddddd;
text-align: center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<td>
Number
</td>
<td>
Description
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 1: Strategies for Solving Problems</t>
</th>
</tr>
<tr>
<td>
<a href='circularPendulum.html'>Circular pendulum</a>
</td>
<td>
<t>Circular pendulum example problem</t>
</td>
</tr>
<tr>
<td>
<a href='1-7.html'>Problem 1-7</a>
</td>
<td>
<t>Two masses, one swinging</t>
</td>
</tr>
<tr>
<th colspan = "2">
<t>Chapter 3: Using F=ma</t>
</th>
</tr>
<tr>
<td>
<a href='3-1.html'>Problem 3-1</a>
</td>
<td>
<t>Basic Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-2.html'>Problem 3-2</a>
</td>
<td>
<t>Double Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-3.html'>Problem 3-3</a>
</td>
<td>
<t>Infinite Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-11.html'>Problem 3-11</a>
</td>
<td>
<t>Chain falling off a table</t>
</td>
</tr>
<tr>
<td>
<a href='3-27.html'>Problem 3-27</a>
</td>
<td>
<t>A more complicated Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-28.html'>Problem 3-28</a>
</td>
<td>
<t>Another Atwood's machine</t>
</td>
</tr>
<tr>
<td>
<a href='3-29.html'>Problem 3-29</a>
</td>
<td>
<t>Yet another Atwood's machine</t>
</td>
</tr>
</table>
<p xmlns:cc="http://creativecommons.org/ns#" >
This work is licensed under
<a href="http://creativecommons.org/licenses/by-nc-nd/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-ND 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nd.svg?ref=chooser-v1"></a></p>
</body>
</html>