1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-26 09:54:19 +00:00
triennale-appunti-steffo/src/routes/ottimizzazioneLineare.js

184 lines
9 KiB
JavaScript
Raw Normal View History

2020-03-09 23:18:13 +00:00
import {Component} from 'preact'
2020-03-09 23:19:30 +00:00
import Split from "../components/split";
import Latex from "../components/latex";
import Panel from "../components/panel";
import Example from "../components/example";
import Todo from "../components/todo";
const r = String.raw;
2020-03-09 23:18:13 +00:00
export default class OttimizzazioneLineare extends Component {
render() {
return (
<div>
<h1>Ottimizzazione lineare intera</h1>
2020-03-09 23:19:30 +00:00
<Split title={"Materiale"}>
<Panel title={"Videolezioni su YouTube"}>
<p>
2020-03-11 16:15:17 +00:00
<b>Consigliata: <a href={"https://www.youtube.com/playlist?list=PLh93e8qjTszffkHNn-19CqUOhHFbhBlBh"}>Playlist con rumori di sottofondo rimossi</a></b>
</p>
<p>
<a href={"https://www.youtube.com/playlist?list=PLh0s0u9-Vwuor8YXTflVvIIU82PO1oDXS"}>Playlist originale</a>
2020-03-09 23:19:30 +00:00
</p>
</Panel>
<Panel title={"Videolezioni streamate"}>
<ol start={"0"}>
<li><a href={"https://eu.bbcollab.com/collab/ui/session/playback/load/31427e93855c4f9cbbffe6658ee62ca5"}>Introduzione al corso</a></li>
<li><a href={"https://eu.bbcollab.com/collab/ui/session/playback/load/41027969a49b4f72b0fb68ae4d9ba138"}>Introduzione alla ricerca operativa</a></li>
</ol>
</Panel>
2020-03-09 23:19:30 +00:00
<Panel title={"Slides"}>
<ol start={"0"}>
<li><a href={"https://t.me/unimorefiles/11"}>Introduzione al corso</a></li>
<li><a href={"https://t.me/unimorefiles/12"}>Introduzione alla ricerca operativa</a></li>
</ol>
2020-03-09 23:19:30 +00:00
</Panel>
</Split>
<Split title={"Le basi"}>
<Panel title={"Funzione obiettivo"}>
<p>
La funzione obiettivo è la funzione con valore noto sconosciuto:
</p>
<p>
<Latex>{r`z = C_1 \cdot x_1 + C_2 \cdot x_2 + C_n \cdot x_n`}</Latex>
</p>
</Panel>
<Panel title={"Gradiente"}>
<p>
Funzione della funzione obiettivo che indica la direzione del suo aumento più veloce.
</p>
<p>
<Latex>{r`\nabla f = \frac{\delta f}{\delta x_1} e_1 + \frac{\delta f}{\delta x_2} e_2 + \frac{\delta f}{\delta x_n} e_n`}</Latex>
</p>
<p>
<Latex>{r`e_i`}</Latex> è la direzione della coordinata i-esima.
</p>
<Example>
Se <Latex>{r`n = 3`}</Latex>, allora:
<ul>
<li><Latex>{r`e_1 = (1, 0, 0)`}</Latex></li>
<li><Latex>{r`e_2 = (0, 1, 0)`}</Latex></li>
<li><Latex>{r`e_3 = (0, 0, 1)`}</Latex></li>
</ul>
</Example>
<Example>
Se la funzione obiettivo è <Latex>z = 2w + 3x + 4y</Latex>, il suo gradiente è <Latex>{r`\nabla z = (2, 3, 4)`}</Latex>.
</Example>
</Panel>
</Split>
2020-03-10 20:59:40 +00:00
<Split title={"La forma standard"}>
<Panel title={"Condizioni"}>
<p>
Un sistema è in <i>forma standard</i> quando ha:
</p>
<ul>
<li>Solo equazioni</li>
<li>Tutte le variabili maggiori di zero</li>
</ul>
</Panel>
<Panel title={"Slack"}>
<p>
Possiamo trasformare una disequazione in equazione introducendo variabili <i>slack</i>:
</p>
<p>
<Latex>{r`3x + 2y \leq 15 \implies 3x + 2y + s_1 = 15`}</Latex>
</p>
<p>
2020-03-11 11:37:34 +00:00
In seguito, possiamo riscrivere tutte le funzioni in termini delle variabili slack.
2020-03-10 20:59:40 +00:00
</p>
<Example>
Si ottiene qualcosa come <Latex>{r`z = -2 s_1 - 3 s_2 + 40`}</Latex>.
</Example>
</Panel>
2020-03-11 11:37:34 +00:00
<Panel title={"Tableu"}>
2020-03-10 20:59:40 +00:00
<p>
2020-03-11 11:37:34 +00:00
Un modo per rappresentare sistemi in forma standard.
2020-03-10 20:59:40 +00:00
</p>
<p>
2020-03-11 11:37:34 +00:00
<table class={"right"}>
<thead>
<tr>
<th/>
<th><Latex>x</Latex></th>
<th><Latex>y</Latex></th>
<th><Latex>s_1</Latex></th>
<th><Latex>s_2</Latex></th>
</tr>
</thead>
<tbody>
<tr>
<td>obj:</td>
2020-03-11 11:37:34 +00:00
<td><Latex>80</Latex></td>
<td><Latex>70</Latex></td>
<td><Latex>0</Latex></td>
<td><Latex>0</Latex></td>
</tr>
<tr>
<td/>
<td><Latex>3</Latex></td>
<td><Latex>2</Latex></td>
<td><Latex>1</Latex></td>
<td><Latex>0</Latex></td>
</tr>
<tr>
<td/>
<td><Latex>2</Latex></td>
<td><Latex>3</Latex></td>
<td><Latex>0</Latex></td>
<td><Latex>1</Latex></td>
</tr>
</tbody>
</table>
</p>
<Example>
E' la matrice equivalente completa del sistema!
</Example>
2020-03-11 11:37:34 +00:00
<p>
Riscrivendo in termini delle variabili slack, otteniamo:
</p>
<p>
<table class={"right"}>
<thead>
<tr>
<th/>
<th><Latex>x</Latex></th>
<th><Latex>y</Latex></th>
<th><Latex>s_1</Latex></th>
<th><Latex>s_2</Latex></th>
</tr>
</thead>
<tbody>
<tr>
<td>obj:</td>
2020-03-11 11:37:34 +00:00
<td><Latex>0</Latex></td>
<td><Latex>0</Latex></td>
<td><Latex>-20</Latex></td>
<td><Latex>-10</Latex></td>
</tr>
<tr>
<td/>
<td><Latex>1</Latex></td>
<td><Latex>0</Latex></td>
2020-03-13 16:42:09 +00:00
<td><Latex>{r`-\frac{3}{5}`}</Latex></td>
<td><Latex>{r`\frac{2}{5}`}</Latex></td>
2020-03-11 11:37:34 +00:00
</tr>
<tr>
<td/>
<td><Latex>0</Latex></td>
<td><Latex>1</Latex></td>
2020-03-13 16:42:09 +00:00
<td><Latex>{r`\frac{2}{5}`}</Latex></td>
<td><Latex>{r`-\frac{3}{5}`}</Latex></td>
2020-03-11 11:37:34 +00:00
</tr>
</tbody>
</table>
2020-03-10 20:59:40 +00:00
</p>
<Example>
Abbiamo appena applicato Gauss-Jordan, trovando la matrice inversa.
</Example>
2020-03-10 20:59:40 +00:00
</Panel>
</Split>
2020-03-09 23:18:13 +00:00
</div>
)
}
}