2022-02-04 01:14:51 +00:00
|
|
|
import {Heading, Chapter, Panel, Idiomatic as I, Box, ListUnordered} from "@steffo/bluelib-react"
|
2022-06-28 17:13:40 +00:00
|
|
|
import { NextPageContext } from "next"
|
2022-02-04 01:14:51 +00:00
|
|
|
import { Link } from "../../../components/link"
|
2022-02-04 17:41:40 +00:00
|
|
|
import { Warn1024 } from "../../../components/warn"
|
2022-02-04 01:14:51 +00:00
|
|
|
|
|
|
|
|
2022-06-28 17:13:40 +00:00
|
|
|
export async function getStaticProps(_context: NextPageContext) {
|
|
|
|
return {
|
|
|
|
props: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-04 01:14:51 +00:00
|
|
|
export default function Statistica() {
|
|
|
|
return <>
|
|
|
|
<Heading level={2}>
|
|
|
|
Statistica ed elementi di probabilità
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Introduzione
|
|
|
|
</Heading>
|
|
|
|
<p>
|
|
|
|
Come Fisica, <I>Statistica ed elementi di probabilità</I> è stato un altro esame in cui il modello "a carte mnemoniche" mi ha aiutato un sacco a ricordare i concetti per l'orale.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Spero che questi contenuti possano essere altrettanto utili a voi!
|
|
|
|
</p>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Materiale raccolto
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Panel>
|
|
|
|
<Heading level={4}>
|
|
|
|
Appuntiweb
|
|
|
|
</Heading>
|
2022-02-04 17:41:40 +00:00
|
|
|
<Warn1024/>
|
2022-02-04 01:14:51 +00:00
|
|
|
<ListUnordered>
|
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year2/statistica/teoria">
|
|
|
|
Appunti di teoria
|
|
|
|
</Link>
|
|
|
|
</ListUnordered.Item>
|
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|