{ "cells": [ { "cell_type": "markdown", "id": "0641422e", "metadata": {}, "source": [ "(columnLearning)=\n", "# Læring\n", "\n", "## Forutsetninger og læringsmål\n", "\n", "Det følgende er relevant for [MA302](ma302).\n", "\n", "\n", "## Introduksjon\n", "\n", "## Representasjoner\n", "\n", "````{sidebar} 1. kvadratsetning\n", ":class: width50\n", "```{graphviz-source}\n", "digraph G{\n", " compound=true;\n", " ranksep=\"0.02\"\n", " node[shape=\"plaintext\" fontsize=14]\n", " edge [fontsize=10 arrowhead=vee]\n", " subgraph cluster_manual{ \n", " bgcolor=\"#FFEEFA\"\n", " /* Nodes */\n", " manualTitle [label=\"Utregning\\nbevis\" shape=plaintext fontsize=20]\n", " manualStart [label=\"(a + b)²\"]\n", " manual1 [label=\"(a + b)×(a + b)\"]\n", " manual2 [label=\"a(a + b) + b(a + b)\"]\n", " manual3 [label=\"a×a + a×b + b×a + b×b\"]\n", " manual4 [label=\"a² + ab + ab + b²\"]\n", " manualEnd [label=\"a² + 2ab + b²\"]\n", " /* Edges */\n", " manualTitle -> manualStart [style=invis]\n", " manualStart -> manual1 [label=\"A² → A×A\"]\n", " manual1 -> manual2 [label=\"Distributiv lov\"]\n", " manual2 -> manual3 [label=\"Distributiv lov\\n2 ganger\\l\"]\n", " manual3 -> manual4 [label=\"A×A → A²\\lkommutativ ×\\l\"]\n", " manual4 -> manualEnd [label=\"A + A → 2A\"]\n", " }\n", " subgraph cluster_rule{ \n", " bgcolor=\"#FFEEFA\"\n", " /* Nodes */\n", " ruleTitle [label=\"Regel\" shape=plaintext fontsize=20]\n", " ruleStart [label=\"(a + b)²\"]\n", " ruleEnd [label=\"a² + 2ab + b²\"]\n", " ruleTitle -> ruleStart [style=invis]\n", " ruleStart -> ruleEnd [label=\"Ny regel!\"]\n", " }\n", " {\n", " edge[penwidth=3 constraint=false arrowhead=vee fontsize=12]\n", " manualTitle -> ruleTitle[ltail=cluster_manual lhead=cluster_rule color=\"blue\" minlen=2 label=\"\" fontcolor=blue] \n", " }\n", "\n", "}\n", "```\n", "```` \n", "\n", "\n", "## Algoritmer\n", "\n", "## Læring\n", "\n", "Metalæring?\n", "\n" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.13" }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": true, "sideBar": true, "skip_h1_title": false, "title_cell": "Table of Contents", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": false } }, "nbformat": 4, "nbformat_minor": 5 }