Math Solution Tables
Implemented when there are multiple steps in a mathematical equation, often seen in algebra. Each step of the equation is a “row” of the table, and each row is aligned
around the equal sign text book convention). Math solution tables also allows for the option of an explanation on the right hand side of the table.
Presentation
Example
HTML
<table class=“math-solution”> <tbody> <tr> <td>2<em>J</em> − 6</td> <td> = </td> <td>4(<em>J</em> − 6)</td> <td> </td> </tr> <tr> <td>2<em>J</em> − 6</td> <td> = </td> <td>4<em>J</em> − 24</td> <td> </td> </tr> <tr> <td>18</td><td> = </td> <td>2<em>J</em></td><td> </td> </tr> <tr> <td>9</td><td> = </td><td><em>J</em></td> <td>(<em>Answer</em>)</td> </tr> </tbody> </table>
Math Translation
Alignment arranged with arrows used with math or english. Unique features include automatic sentence structure.
Presentation
Example
HTML
<table class=“math-translation”> <tbody> <tr> <td><strong>3%</strong></td><td><strong>of</strong></td> <td><strong>5</strong></td><td>translates to:</td> </tr> <tr> <td>↓</td><td>↓</td> <td>↓</td><td> </td> </tr> <tr> <td> <math><mfrac><mn>3</mn><mn>100</mn></mfrac></math> </td> <td>×</td><td>5</td><td> </td> </tr> </tbody> </table>