[{"data":1,"prerenderedAt":7830},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":304,"course-wordcounts":2377,"ref-card-index":3289,"tikz:76e71c69deef940dc926762c53df9865834d265b4b0689b97ace202392da964c":7823,"tikz:7b0c4dabee94a972ee11d1ab9194e6744d6463b143f513ee9417904786c27316":7824,"tikz:0cb39e53a57e64a3788587815ad57581384e159f2197e54e4157a8e4a16eded4":7825,"tikz:4f1af49f45296c09dfa625508416cd405852b682e5aa6cd12e3a768eb15a1c36":7826,"tikz:d2d63febbff066c3bda6ca5eddaed51f30afbcab32322b8179ef09132d99ea36":7827,"tikz:842e2de7ee99fc0ea7db90d602b5e945235c6e14f22bc3638f8ac4c5df6e0033":7828,"tikz:21b5e229dd36e783f8c6efcd167a7e4769398e0f0fbb91b2191213c1be4ec031":7829},[4,38,79,108,137,166,195,224,244,259,289],{"module":5,"moduleNumber":6,"slug":7,"lessons":8},"Foundations",1,"foundations",[9,14,20,26,32],{"title":10,"path":11,"lessonNumber":6,"topics":12,"summary":13},"Bits, Bytes, and Words","\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words",[5],"Everything a machine stores is a string of bits grouped into bytes. We set out binary and hexadecimal, the byte as the unit of addressing, the word as the machine's natural integer size, and byte ordering — why the same four bytes read as 0x01234567 on one machine and 0x67452301 on another.\n",{"title":15,"path":16,"lessonNumber":17,"topics":18,"summary":19},"Integer Representation","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation",2,[5],"A fixed-width byte string is just a pattern; what makes it a number is the rule we read it by. We define unsigned encoding and two's complement — where the top bit carries a negative weight — derive the ranges UMax, TMin, and TMax, and show how the same bits reinterpret between signed and unsigned, how widening sign-extends, and what truncation throws away.\n",{"title":21,"path":22,"lessonNumber":23,"topics":24,"summary":25},"Integer Arithmetic","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic",3,[5],"Fixed-width integer arithmetic is arithmetic modulo a power of two: add past the top and the result wraps. We work out unsigned and two's-complement addition and the rules that detect their overflow, why negation is a complement-plus-one, how multiplication truncates to the low-order bits and how compilers turn constant multiplies into shifts and adds, why C declares signed overflow undefined, and the bias fix that keeps shift-based signed division rounding toward zero.\n",{"title":27,"path":28,"lessonNumber":29,"topics":30,"summary":31},"Floating Point","\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point",4,[5],"IEEE-754 trades the exactness of integers for enormous range by storing numbers as sign, exponent, and fraction — scientific notation in binary. We lay out the single and double formats, the bias that encodes the exponent, the three regimes (normalized, denormalized, special), a worked encode\u002Fdecode, the four rounding modes and round-to-even at the bit level, why addition is not associative, the pitfalls of float-int conversion, and why 0.1 has no exact binary representation.\n",{"title":33,"path":34,"lessonNumber":35,"topics":36,"summary":37},"Boolean Algebra and Bit Manipulation","\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation",5,[5],"Treat a word as a vector of independent bits and the bitwise operators become an algebra. We define AND, OR, NOT, and XOR as bit vectors, build the masking idioms that set, clear, toggle, and test individual bits, extract fields with zero- and sign-extension, count set bits three ways, derive the classic x & (x - 1) family of tricks, and distinguish bitwise operators from C's short-circuiting logical operators.\n",{"module":39,"moduleNumber":17,"slug":40,"lessons":41},"Machine-Level Programming","machine-level-x86-64",[42,47,52,57,62,67,73],{"title":43,"path":44,"lessonNumber":6,"topics":45,"summary":46},"The Machine's View","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view",[39],"The instruction set architecture is the contract a compiler writes against: the program counter, sixteen integer registers with their sub-register widths, and the condition codes. We follow one C function down through gcc to assembly, learn to read an instruction as operation plus operands, and fix the vocabulary the rest of the module uses.\n",{"title":48,"path":49,"lessonNumber":17,"topics":50,"summary":51},"Data Movement","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement",[39],"Most instructions a program runs simply move data. We cover the mov family and its size suffixes, the three operand forms, the full memory addressing mode D(Rb,Ri,S) and its special cases, lea for address arithmetic, and how push and pop manipulate the stack pointer %rsp on a stack that grows toward lower addresses.\n",{"title":53,"path":54,"lessonNumber":23,"topics":55,"summary":56},"Arithmetic and Logic","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic",[39],"The ALU instructions that compute on register and memory values: add, sub, and imul; the unary inc\u002Fdec\u002Fneg\u002Fnot; the shifts sal\u002Fshr\u002Fsar; the bitwise and\u002For\u002Fxor; and lea reused as a fast arithmetic trick. Each binary operation also sets the condition-code flags CF, ZF, SF, and OF, which cmp and test compute without keeping a result.\n",{"title":58,"path":59,"lessonNumber":29,"topics":60,"summary":61},"Control Flow","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow",[39],"How a flat instruction stream realizes branches and loops. The conditional jumps read the condition-code flags; set instructions turn flags into a 0\u002F1 byte. We translate if\u002Felse into the standard compare-and-branch pattern, while\u002Ffor loops into the guarded-do form, and dense switches into jump tables that index a target directly.\n",{"title":63,"path":64,"lessonNumber":35,"topics":65,"summary":66},"Procedures","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures",[39],"How a function call works at the machine level: the run-time stack, call and ret passing control through a saved return address, the System V convention that routes the first six arguments through %rdi..%r9 and the result through %rax, the caller-saved versus callee-saved split, the stack frame, and a recursive factorial traced through its frames.\n",{"title":68,"path":69,"lessonNumber":70,"topics":71,"summary":72},"Arrays, Structs, and Alignment","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment",6,[39],"How aggregate data lays out in memory. Arrays as base-plus-scaled-index, the row-major ordering of multidimensional arrays, pointer arithmetic in units of the pointed-to type, struct fields at fixed byte offsets, the overlapping storage of unions, and the alignment rules that force padding into a struct.\n",{"title":74,"path":75,"lessonNumber":76,"topics":77,"summary":78},"Memory Layout and Buffer Overflows","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows",7,[39],"The process address space — text, data, heap, and stack — and the classic vulnerability it enables. A stack buffer that is written past its end can overwrite the saved return address and redirect ret, so we sketch the mechanism defensively and then the three standard protections: stack canaries, a non-executable stack, and address-space layout randomization.\n",{"module":80,"moduleNumber":23,"slug":81,"lessons":82},"Instruction Set Architecture","instruction-set-architecture",[83,88,93,98,103],{"title":84,"path":85,"lessonNumber":6,"topics":86,"summary":87},"What an ISA Is","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is",[80],"The instruction set architecture is the contract that lets a compiler and a chip be written by people who never meet: the stable interface software targets and hardware implements. We separate architecture from microarchitecture, read RISC and CISC as opposite answers to where complexity should live, price out what each choice costs in decode hardware, code density, and pipeline friendliness, and see how x86-64 endures by translating its instructions into RISC-like operations on the fly.\n",{"title":89,"path":90,"lessonNumber":17,"topics":91,"summary":92},"Instruction Formats and Operands","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands",[80],"An instruction is an opcode plus a way to name its operands. We count operands — 3-address, 2-address, 1-address accumulator, and 0-address stack machines — by writing the same C = A + B four ways, weigh register operands against memory operands, then lay out the same add byte by byte in x86-64 (REX prefix, opcode, ModRM) and in Y86-64, and what fixed versus variable length costs at fetch time.\n",{"title":94,"path":95,"lessonNumber":23,"topics":96,"summary":97},"Addressing Modes","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes",[80],"Once an operand field exists, it needs a rule for turning its bits into the data it names. That rule is the addressing mode. We walk the standard set — immediate, register, direct, register-indirect, displacement, scaled-indexed, and PC-relative — fixing the effective-address computation for each, run every mode against one concrete machine state, and price out what Y86-64 loses by keeping only base plus displacement.\n",{"title":99,"path":100,"lessonNumber":29,"topics":101,"summary":102},"The Y86-64 Instruction Set","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set",[80],"Y86-64 is a teaching ISA — a stripped-down x86-64 simple enough to implement by hand yet real enough to compile to. We fix its programmer-visible state (fifteen registers, three condition codes, the PC, memory, and a status code), give the instruction set with exact byte encodings, spell out how the condition codes decide every jXX and cmovXX, and run the encoding both directions: assembly to bytes and raw bytes back to meaning.\n",{"title":104,"path":105,"lessonNumber":35,"topics":106,"summary":107},"Y86-64 Programming","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming",[80],"With the encodings fixed, we write real Y86-64 assembly: the .pos, .align, and .quad directives, the calling convention borrowed from x86-64, a stack set up by hand, and complete programs — an array sum and a branch-free max. We watch the assembler turn the listing into the exact byte image the processor will execute, and trace the stack across the call.\n",{"module":109,"moduleNumber":29,"slug":110,"lessons":111},"Digital Logic","digital-logic",[112,117,122,127,132],{"title":113,"path":114,"lessonNumber":6,"topics":115,"summary":116},"Transistors, Gates, and Boolean Functions","\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions",[109],"A processor is built from millions of transistor switches. We start at the MOS transistor as a voltage-controlled switch, build the CMOS inverter and NAND transistor by transistor, meet the seven standard gates with their truth tables, show that NAND alone is functionally complete, price each gate in transistors and in time, and turn any truth table into a sum-of-products circuit.\n",{"title":118,"path":119,"lessonNumber":17,"topics":120,"summary":121},"Combinational Logic and HCL","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl",[109],"A combinational circuit is a pure Boolean function of its current inputs — no memory, no clock. We draw the line between combinational and sequential logic, do the gate-delay accounting that finds a circuit's critical path and bounds the clock, meet don't-cares, then introduce CS:APP's Hardware Control Language: bit-level operators, word-level signals, equality nets, and the case expression that compiles to a multiplexer tree.\n",{"title":123,"path":124,"lessonNumber":23,"topics":125,"summary":126},"Multiplexers, Decoders, and the ALU","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu",[109],"The combinational building blocks that make a datapath. We build the 2:1 and 4:1 multiplexer and tie it back to HCL's case expression, the n-to-2^n decoder, a one-bit full adder (sum is XOR, carry is majority), the ripple-carry adder that chains them, and finally the ALU — a function unit that selects among add, sub, and, and xor under a control input and exposes condition flags.\n",{"title":128,"path":129,"lessonNumber":29,"topics":130,"summary":131},"Memory Elements: Latches, Flip-Flops, and Clocking","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking",[109],"A combinational circuit holds no state; feeding a circuit's output back to its input creates memory. We build the SR latch from cross-coupled gates, the level-sensitive D latch, and the master\u002Fslave edge-triggered D flip-flop, then introduce the clock and the synchronous design discipline, the setup\u002Fhold timing window, clock skew, metastability, and the register as n flip-flops sharing one clock.\n",{"title":133,"path":134,"lessonNumber":35,"topics":135,"summary":136},"Register Files and Random-Access Memory","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory",[109],"Storage organized for access by address. We build the register file (a small bank of registers with addressed read ports and clocked write ports, the exact structure Y86-64's decode and write-back stages use), then descend to the SRAM and DRAM cells of main memory, why one is fast and dear and the other dense and slow, and how a row decoder picks a word out of a memory array.\n",{"module":138,"moduleNumber":35,"slug":139,"lessons":140},"Processor Design","processor-design",[141,146,151,156,161],{"title":142,"path":143,"lessonNumber":6,"topics":144,"summary":145},"The Fetch-Decode-Execute Cycle","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle",[138],"A processor is a machine that repeats one loop forever: read the next instruction from memory, figure out what it asks for, do it, and advance. We fix the stored-program idea, lay out the datapath at a high level — PC, instruction memory, register file, ALU, data memory — and the control unit that sequences them, break the work into the six stages the rest of the module builds in hardware, and work out exactly how fetch parses variable-length instructions and computes the next PC.\n",{"title":147,"path":148,"lessonNumber":17,"topics":149,"summary":150},"The SEQ Stages","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages",[138],"The six SEQ stages, made exact. For every Y86-64 instruction — halt, nop, the moves, OPq, the jumps, call and ret, pushq and popq — we write down what Fetch, Decode, Execute, Memory, Write-back, and PC update each compute, as per-instruction stage tables with every row justified. Once the tables are filled in, the processor is fully specified; the remaining lessons turn them into wires.\n",{"title":152,"path":153,"lessonNumber":23,"topics":154,"summary":155},"Control Logic and Sequencing","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing",[138],"The stage tables say what each instruction needs; the control logic computes it from icode. We write the HCL for the register-port selections (srcA, srcB, dstE, dstM), the ALU function and input selection, the memory read\u002Fwrite and address, the branch condition, and the next-PC mux — each a case expression on icode that compiles to a mux — and see how one blob of combinational logic serves every instruction at once. We close by contrasting hardwired control with the microprogrammed alternative.\n",{"title":157,"path":158,"lessonNumber":29,"topics":159,"summary":160},"Assembling SEQ","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq",[138],"We wire the whole thing together. The functional units from digital logic and the control signals from the last lesson assemble into the complete SEQ datapath, laid out the way CS:APP draws it — six stages stacked bottom to top, Fetch at the floor and PC update at the ceiling, signals flowing up the margins. Then the timing analysis: why everything must settle in one cycle, the no-reading-back principle that makes single-cycle execution consistent, and the critical path that sets the clock. We close by walking an OPq and a ret through the assembled machine.\n",{"title":162,"path":163,"lessonNumber":35,"topics":164,"summary":165},"Tracing a Program","\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program",[138],"To close the module, we take a complete Y86-64 program — a loop that sums 1 through 3 — and run it through SEQ one cycle at a time, recording the PC, the fetched instruction, every stage computation, and the registers, condition codes, and memory after each cycle. Then we examine single cycles in detail: every named signal of an OPq in concrete hex, and a second program whose call and ret we trace through the stack. The traces confirm that the assembled datapath and control logic behave as a processor.\n",{"module":167,"moduleNumber":70,"slug":168,"lessons":169},"Pipelining","pipelining",[170,175,180,185,190],{"title":171,"path":172,"lessonNumber":6,"topics":173,"summary":174},"Pipelining Principles","\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles",[167],"A processor that runs one instruction to completion before starting the next wastes most of its hardware most of the time. Pipelining splits the work into stages separated by registers so several instructions are in flight at once. We separate throughput from latency, work the 300 ps example through one, two, and three stages, and derive the three ceilings on the gain: uneven stages, register overhead, and the dependencies between instructions.\n",{"title":176,"path":177,"lessonNumber":17,"topics":178,"summary":179},"From SEQ to PIPE","\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe",[167],"We turn the sequential Y86-64 processor into a pipelined one by inserting pipeline registers between its stages so each cycle holds one instruction per stage. Doing it correctly forces a rearrangement: the next-PC computation must move into Fetch as a prediction, because the later stages that used to compute it are now busy with other instructions. We walk SEQ to SEQ+ to PIPE, spell out exactly what each pipeline register carries, and fix the naming discipline (D_stat versus d_stat) that keeps five in-flight instructions straight.\n",{"title":181,"path":182,"lessonNumber":23,"topics":183,"summary":184},"Data Hazards: Stalling and Forwarding","\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding",[167],"Overlapping instructions collide when a later one needs a value an earlier one has not finished computing: a read-after-write data hazard. We map exactly which instruction distances are dangerous, fix hazards the slow way by stalling (three bubbles), then the fast way by forwarding from five distinct sources into Decode, in a priority order that sequential semantics forces. Forwarding handles almost everything; the load-use hazard still needs exactly one stall.\n",{"title":186,"path":187,"lessonNumber":29,"topics":188,"summary":189},"Control Hazards and Branch Prediction","\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction",[167],"A pipeline must fetch an instruction every cycle, but after a conditional jump or a ret the next address is not yet known: a control hazard. We measure the branch penalty, weigh predict-taken against its alternatives with real loop arithmetic, watch PIPE detect a misprediction in Execute and squash the two wrong-path instructions, and meet the ret hazard, which has nothing to predict and stalls three cycles. A 2-bit counter gives a taste of dynamic prediction.\n",{"title":191,"path":192,"lessonNumber":35,"topics":193,"summary":194},"The Complete PIPE Processor","\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor",[167],"We assemble the full pipelined Y86-64: five stages, five pipeline registers, forwarding paths, and a small control unit that decides, each cycle, whether to stall or bubble each register. The subtle part is when hazards combine: one pairing hides a genuine bug. A fourth control case reads stat and keeps exceptions precise. Performance reduces to CPI = 1 + lp + mp + rp, worked out to 1.27 with realistic frequencies, and PIPE beats SEQ by several times despite every penalty.\n",{"module":196,"moduleNumber":76,"slug":197,"lessons":198},"The Memory Hierarchy","memory-hierarchy",[199,204,209,214,219],{"title":200,"path":201,"lessonNumber":6,"topics":202,"summary":203},"Storage Technologies and the Latency Gap","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap",[196],"No single memory is both fast and large and cheap. We survey the technologies a machine can store bits in — SRAM, DRAM, flash, and rotating disk — open up a DRAM chip to find the row buffer, work a disk access down to the millisecond, and rank everything by speed, density, and cost per bit. Then we watch the processor outrun memory decade after decade. That widening gap is the whole reason a machine stacks fast small storage on top of slow large storage into a hierarchy.\n",{"title":205,"path":206,"lessonNumber":17,"topics":207,"summary":208},"Locality","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality",[196],"A hierarchy only pays off because programs do not touch memory at random. They reuse recently-used data (temporal locality) and touch nearby data soon after (spatial locality). We make both precise and then quantitative: miss rates for stride-1 and stride-k traversals against a concrete block size, and the loop-order pair on a 2-D array where the same sum misses 16 times one way and 64 times the other — why row-major versus column-major order can change a program's speed by an order of magnitude.\n",{"title":210,"path":211,"lessonNumber":23,"topics":212,"summary":213},"Cache Memories and Direct Mapping","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped",[196],"A cache is fast SRAM that holds copies of recently-used blocks of main memory. We fix its organization — S sets, E lines per set, B bytes per block — and the way it dissects an address into tag, set index, and block offset, worked bit by bit on a concrete 16-byte cache. Then we run the direct-mapped (E=1) access algorithm end to end on a seven-access trace: index to a set, compare the tag, hit or miss, evict. Cold and conflict misses fall out of the structure, and a two-array ping-pong shows conflict thrashing and its padding fix.\n",{"title":215,"path":216,"lessonNumber":29,"topics":217,"summary":218},"Set-Associative Caches and Write Policies","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies",[196],"Give each set several lines and a block has a choice of homes — fewer conflict misses, at the cost of comparing E tags in parallel and choosing a victim to evict. We re-run the direct-mapped ping-pong trace on a 2-way cache and watch the conflicts vanish, weigh LRU against random replacement, then turn to writes: write-through versus write-back with a dirty bit on a hit, write-allocate versus no-write-allocate on a miss, and a worked traffic count showing when each pairing wins.\n",{"title":220,"path":221,"lessonNumber":35,"topics":222,"summary":223},"Cache Performance and Cache-Friendly Code","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code",[196],"Turn the cache mechanism into a number. Hit time, miss rate, and miss penalty combine into the average memory access time; we compute AMAT for a two-level hierarchy with real numbers, weigh the design knobs against each other, and read the memory mountain. Then we write cache-friendly code — the matrix-multiply loop-order case study (ijk versus kij, misses counted per iteration) and loop blocking, where cache-sized tiles turn evicted reuse back into hits.\n",{"module":225,"moduleNumber":226,"slug":227,"lessons":228},"Virtual Memory",8,"virtual-memory",[229,234,239],{"title":230,"path":231,"lessonNumber":6,"topics":232,"summary":233},"Address Spaces and Translation","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation",[225],"Every process runs as if it owns a private, contiguous span of memory — its virtual address space — while the hardware maps those addresses onto a single shared physical memory. We fix virtual memory's three jobs (a cache for disk, a memory manager, a protection boundary), the page as the unit of mapping, and the MMU replacing the virtual page number while the offset passes through untouched — then run one translation end to end at the bit level and trace the control flow of a page hit against a page fault.\n",{"title":235,"path":236,"lessonNumber":17,"topics":237,"summary":238},"Page Tables and Page Faults","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults",[225],"The page table is an array of page-table entries indexed by virtual page number; each entry's valid bit says whether the page is in DRAM, on disk, or unallocated, and its permission, reference, and dirty bits drive protection and replacement. We walk translation as a table lookup, the page fault and demand paging, the clock algorithm the OS uses to approximate LRU, memory mapping and copy-on-write (why fork is cheap), the taxonomy of bad references, and thrashing.\n",{"title":240,"path":241,"lessonNumber":23,"topics":242,"summary":243},"The TLB and Multi-Level Page Tables","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables",[225],"A page-table read on every access would double memory traffic; a flat table for a 48-bit space would occupy 512 GB per process. The TLB fixes the first: a small set-associative cache of PTEs inside the MMU whose tag and index come from the VPN. Multi-level page tables fix the second, allocating only the sub-tables a process uses; x86-64 walks four levels with a 9+9+9+9+12 split. We trace one reference end to end through TLB, walk, and cache, and close with the overlap trick that lets the L1 cache start before translation ends.\n",{"module":245,"moduleNumber":246,"slug":247,"lessons":248},"Exceptions & I\u002FO",9,"exceptions-and-io",[249,254],{"title":250,"path":251,"lessonNumber":6,"topics":252,"summary":253},"Exceptional Control Flow","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow",[245],"Beyond the sequential, branch, and call flow a program controls itself, the hardware can divert the processor in response to events. We sort these into four classes — interrupts (asynchronous, from devices), traps (intentional syscalls), faults (recoverable, like a page fault), and aborts (unrecoverable) — then take the mechanism apart: exception numbers and the table dispatch, what the hardware pushes and why it differs from a procedure call, the divide-error \u002F page-fault \u002F general-protection trio on x86-64, the full syscall round trip with a worked write in assembly, and processes and signals as the abstractions ECF makes possible.\n",{"title":255,"path":256,"lessonNumber":17,"topics":257,"summary":258},"Interrupts and the Kernel","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel",[245],"An I\u002FO device signals completion by raising an interrupt, crossing the privilege boundary from user mode into the kernel. We fix that boundary, follow an interrupt from device through the interrupt controller to its vectored handler, and use the timer interrupt to drive preemptive scheduling and the context switch. Then the I\u002FO mechanics: polling versus interrupt-driven I\u002FO with a cycle count, device registers and memory-mapped I\u002FO versus port I\u002FO, DMA's full transfer walkthrough and its cache hazard, and a disk read traced end to end, from the read syscall to the completion interrupt.\n",{"module":260,"moduleNumber":261,"slug":262,"lessons":263},"Multithreading & Multicore",10,"multithreading-and-multicore",[264,269,274,279,284],{"title":265,"path":266,"lessonNumber":6,"topics":267,"summary":268},"Processes, Threads, and Parallelism","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism",[260],"Around 2004 the single core stopped getting faster, and the industry's answer was to hand programmers more cores instead. This lesson builds the vocabulary that shift demands: process versus thread and exactly which hardware state each one owns, concurrency versus parallelism, the three kinds of parallelism a machine can exploit, why Dennard scaling ended and forced the multicore turn, and Amdahl's law — the arithmetic that bounds the speedup those cores can deliver.\n",{"title":270,"path":271,"lessonNumber":17,"topics":272,"summary":273},"Hardware Multithreading","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading",[260],"A pipeline spends much of its life waiting — on cache misses, on dependences, on branches. Hardware multithreading fills the dead cycles with instructions from another thread. We compare coarse-grained switching (change threads on a long stall), fine-grained interleaving (change every cycle), and simultaneous multithreading (mix threads inside a single cycle), work out exactly which hardware a second thread context duplicates and which it shares, and weigh when SMT pays off and when two threads just fight over one cache.\n",{"title":275,"path":276,"lessonNumber":23,"topics":277,"summary":278},"Cache Coherence","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence",[260],"Give each core its own cache and the same address can live in two places at once, with copies that disagree. We reproduce the stale-copy bug with a two-core trace, then fix it the way hardware does: snooping caches that watch a shared bus and keep every line in a protocol state. We build MSI in full, upgrade it to MESI, contrast invalidation with updating, add coherence misses as the fourth C, and end with false sharing: the performance bug where cores fight over a line while never touching the same byte.\n",{"title":280,"path":281,"lessonNumber":29,"topics":282,"summary":283},"Memory Consistency and Synchronization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization",[260],"Coherence keeps cores agreeing about one location; consistency is the contract about many. We define sequential consistency, then watch real hardware break it: the store buffer lets a load slip ahead of an older store, and the classic two-thread litmus test ends with both sides reading zero. We state x86-TSO precisely, restore order with mfence, build atomic read-modify-write from the lock prefix, xchg, and cmpxchg, and write a spinlock twice — once naively, once bus-friendly — closing with what lock-free progress actually guarantees.\n",{"title":285,"path":286,"lessonNumber":35,"topics":287,"summary":288},"Multicore Organization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization",[260],"Where everything sits on the die. A modern die gives each core private L1 and L2 caches, spreads a shared last-level cache across slices, and wires it all together with a ring or mesh; multi-socket servers add NUMA, where memory is local to one socket and every remote access pays a latency penalty. We walk the floorplan, put numbers on local versus remote latency, meet thread affinity, and account for the two shared resources — coherence traffic and LLC capacity — that decide how far a parallel program scales.\n",{"module":290,"moduleNumber":291,"slug":292,"lessons":293},"Capstone",11,"capstone",[294,299],{"title":295,"path":296,"lessonNumber":6,"topics":297,"summary":298},"The Whole Machine","\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine",[290],"We take one line of C down the whole tower the course built — compiler to assembly, assembly to machine-code bytes, the bytes into the fetch–decode–execute datapath — then trace one load and one add through the pipelined, cached, translated, interruptible machine, each step cross-linked to the lesson that built it. We close with the map of the course as a stack of layers and an accounting of what we simplified: out-of-order execution, superscalar issue, and speculation past the branch predictor.\n",{"title":300,"path":301,"lessonNumber":17,"topics":302,"summary":303},"Assembling a Complete CPU","\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu",[290],"We bolt the parts the course built — PC, instruction memory and its fetch logic, register file, ALU, condition codes, data memory, and the control unit — into one complete CPU, name the lesson that built each, wire them in a deliberate order, and power the machine on from reset. Then we assemble a real test program (sum a four-element array through a call\u002Fret procedure), give its exact bytes and memory layout, and trace it cycle by cycle to the answer 0xabcdabcdabcd. We close with how to validate such a machine, and what it takes to put two of them on one die.\n",{"id":305,"title":230,"blurb":306,"body":307,"brief":2350,"category":2351,"description":2352,"draft":2353,"extension":2354,"meta":2355,"module":225,"navigation":2357,"path":231,"practice":2358,"rawbody":2359,"readingTime":2360,"seo":2365,"sources":2366,"status":2373,"stem":2374,"summary":233,"topics":2375,"__hash__":2376},"course\u002F03.computer-architecture\u002F07.virtual-memory\u002F01.address-spaces-and-translation.md","",{"type":308,"value":309,"toc":2340},"minimark",[310,324,329,545,567,663,667,670,711,866,920,934,938,1121,1136,1208,1212,1216,1223,1226,1277,1280,1367,1371,1513,1819,1861,1929,1932,1935,2010,2014,2021,2032,2035,2052,2055,2061,2065,2068,2071,2075,2078,2102,2216,2333],[311,312,313,314,318,319,323],"p",{},"The ",[315,316,317],"a",{"href":201},"memory hierarchy","\nended with a convenient fiction: that a program addresses one flat array of bytes\nthat is entirely its own. On a real machine that array does not exist. Physical\nmemory, the DRAM chips, is a single shared resource, smaller than the address\neach program is allowed to name, and used at the same time by dozens of\nprocesses. ",[320,321,322],"strong",{},"Virtual memory"," is the mechanism that makes the fiction true for each\nprocess: every program gets its own private array of bytes, and hardware\ntranslates each access into a location in the one physical memory underneath.\nThis lesson sets up the two address spaces and the translation that connects\nthem; the next two build the data structures that make it work.",[325,326,328],"h2",{"id":327},"two-address-spaces","Two address spaces",[311,330,331,332,335,336,340,341,404,405,421,422,425,426,429,430,472,473,488,489,504,505,508,509,512,513,528,529,544],{},"A program issues ",[320,333,334],{},"virtual addresses",": the addresses in its code, its pointers,\nits ",[337,338,339],"code",{},"%rip",". The set of all ",[342,343,346],"span",{"className":344},[345],"katex",[342,347,351],{"className":348,"ariaHidden":350},[349],"katex-html","true",[342,352,355,360],{"className":353},[354],"base",[342,356],{"className":357,"style":359},[358],"strut","height:0.6644em;",[342,361,364,368],{"className":362},[363],"mord",[342,365,367],{"className":366},[363],"2",[342,369,372],{"className":370},[371],"msupsub",[342,373,376],{"className":374},[375],"vlist-t",[342,377,380],{"className":378},[379],"vlist-r",[342,381,384],{"className":382,"style":359},[383],"vlist",[342,385,387,392],{"style":386},"top:-3.063em;margin-right:0.05em;",[342,388],{"className":389,"style":391},[390],"pstrut","height:2.7em;",[342,393,399],{"className":394},[395,396,397,398],"sizing","reset-size6","size3","mtight",[342,400,403],{"className":401},[363,402,398],"mathnormal","n"," such addresses on an ",[342,406,408],{"className":407},[345],[342,409,411],{"className":410,"ariaHidden":350},[349],[342,412,414,418],{"className":413},[354],[342,415],{"className":416,"style":417},[358],"height:0.4306em;",[342,419,403],{"className":420},[363,402],"-bit machine is the\n",[320,423,424],{},"virtual address space",". Underneath, DRAM is named by ",[320,427,428],{},"physical addresses",",\nand the set of ",[342,431,433],{"className":432},[345],[342,434,436],{"className":435,"ariaHidden":350},[349],[342,437,439,442],{"className":438},[354],[342,440],{"className":441,"style":359},[358],[342,443,445,448],{"className":444},[363],[342,446,367],{"className":447},[363],[342,449,451],{"className":450},[371],[342,452,454],{"className":453},[375],[342,455,457],{"className":456},[379],[342,458,460],{"className":459,"style":359},[383],[342,461,462,465],{"style":386},[342,463],{"className":464,"style":391},[390],[342,466,468],{"className":467},[395,396,397,398],[342,469,471],{"className":470},[363,402,398],"m"," of those (with ",[342,474,476],{"className":475},[345],[342,477,479],{"className":478,"ariaHidden":350},[349],[342,480,482,485],{"className":481},[354],[342,483],{"className":484,"style":417},[358],[342,486,471],{"className":487},[363,402]," usually smaller than ",[342,490,492],{"className":491},[345],[342,493,495],{"className":494,"ariaHidden":350},[349],[342,496,498,501],{"className":497},[354],[342,499],{"className":500,"style":417},[358],[342,502,403],{"className":503},[363,402],") is the\n",[320,506,507],{},"physical address space",". The processor's ",[315,510,511],{"href":11},"word size","\nfixes ",[342,514,516],{"className":515},[345],[342,517,519],{"className":518,"ariaHidden":350},[349],[342,520,522,525],{"className":521},[354],[342,523],{"className":524,"style":417},[358],[342,526,403],{"className":527},[363,402],"; the amount of installed RAM fixes the useful range of ",[342,530,532],{"className":531},[345],[342,533,535],{"className":534,"ariaHidden":350},[349],[342,536,538,541],{"className":537},[354],[342,539],{"className":540,"style":417},[358],[342,542,471],{"className":543},[363,402],".",[546,547,549],"callout",{"type":548},"definition",[311,550,551,554,555,558,559,562,563,566],{},[320,552,553],{},"Definition (Virtual \u002F physical address)."," A ",[320,556,557],{},"virtual address"," is the\naddress a program emits; it indexes that process's private virtual address\nspace. A ",[320,560,561],{},"physical address"," is the address of an actual byte in main memory.\nThe two are connected only through ",[320,564,565],{},"address translation",", performed by\nhardware on every reference.",[311,568,569,570,616,617,662],{},"The sizes matter. A modern x86-64 processor uses 48-bit virtual\naddresses: ",[342,571,573],{"className":572},[345],[342,574,576],{"className":575,"ariaHidden":350},[349],[342,577,579,583],{"className":578},[354],[342,580],{"className":581,"style":582},[358],"height:0.8141em;",[342,584,586,589],{"className":585},[363],[342,587,367],{"className":588},[363],[342,590,592],{"className":591},[371],[342,593,595],{"className":594},[375],[342,596,598],{"className":597},[379],[342,599,601],{"className":600,"style":582},[383],[342,602,603,606],{"style":386},[342,604],{"className":605,"style":391},[390],[342,607,609],{"className":608},[395,396,397,398],[342,610,612],{"className":611},[363,398],[342,613,615],{"className":614},[363,398],"48"," bytes is 256 TB of nameable space, per process. A machine\nwith 16 GB of DRAM has physical addresses covering about ",[342,618,620],{"className":619},[345],[342,621,623],{"className":622,"ariaHidden":350},[349],[342,624,626,629],{"className":625},[354],[342,627],{"className":628,"style":582},[358],[342,630,632,635],{"className":631},[363],[342,633,367],{"className":634},[363],[342,636,638],{"className":637},[371],[342,639,641],{"className":640},[375],[342,642,644],{"className":643},[379],[342,645,647],{"className":646,"style":582},[383],[342,648,649,652],{"style":386},[342,650],{"className":651,"style":391},[390],[342,653,655],{"className":654},[395,396,397,398],[342,656,658],{"className":657},[363,398],[342,659,661],{"className":660},[363,398],"34"," bytes. Every\nprocess can name sixteen thousand times more memory than exists, and dozens of\nprocesses do so simultaneously; address translation is what makes this workable.",[325,664,666],{"id":665},"the-three-jobs-of-virtual-memory","The three jobs of virtual memory",[311,668,669],{},"Virtual memory solves three problems at once, all with the same mechanism: a\nlevel of indirection on every address. The machinery of the next two lessons\nexists to serve exactly these jobs.",[311,671,672,675,676,706,707,710],{},[320,673,674],{},"A cache for disk."," A process can name far more bytes than the machine has\nDRAM, so the full contents of its address space live on disk, and DRAM holds\nonly the subset in active use. This makes DRAM one more level of the memory\nhierarchy: a cache whose backing store is disk. But the numbers force an\nextreme design. A DRAM access costs tens of nanoseconds; a read from an SSD\ncosts tens of microseconds, and from a spinning disk around\n",[342,677,679],{"className":678},[345],[342,680,682],{"className":681,"ariaHidden":350},[349],[342,683,685,689,693,698],{"className":684},[354],[342,686],{"className":687,"style":688},[358],"height:0.6444em;",[342,690,692],{"className":691},[363],"10",[342,694],{"className":695,"style":697},[696],"mspace","margin-right:0.1667em;",[342,699,702],{"className":700},[363,701],"text",[342,703,705],{"className":704},[363],"ms"," — a miss penalty of three to five orders of magnitude, dwarfing\nthe roughly 100x gap that ",[315,708,709],{"href":211},"SRAM caches","\nbridge. Consequently the blocks are large (4 KB pages rather than 64-byte\nlines, to amortize the transfer), placement is fully associative (any page may\noccupy any frame, so no placement constraint ever forces a bad\neviction), the write policy is always write-back (writing through to disk on\nevery store would be absurd), and replacement is decided by operating-system\nsoftware, because when a miss costs ten million cycles, spending a few thousand\nchoosing the right victim is free.",[311,712,713,714,735,736,800,801,861,862,865],{},"The magnitudes force every one of those design\nchoices. Line up the levels a reference might reach: an L1 hit\nis about 1 ns, a DRAM access about 100 ns (a ",[342,715,717],{"className":716},[345],[342,718,720],{"className":719,"ariaHidden":350},[349],[342,721,723,727,731],{"className":722},[354],[342,724],{"className":725,"style":726},[358],"height:0.7278em;vertical-align:-0.0833em;",[342,728,730],{"className":729},[363],"100",[342,732,734],{"className":733},[363],"×"," gap, the one SRAM caches\nexist to bridge), an SSD read about ",[342,737,739],{"className":738},[345],[342,740,742,779],{"className":741,"ariaHidden":350},[349],[342,743,745,749,753,756,760,767,771,776],{"className":744},[354],[342,746],{"className":747,"style":748},[358],"height:0.8389em;vertical-align:-0.1944em;",[342,750,752],{"className":751},[363],"50",[342,754],{"className":755,"style":697},[696],[342,757,759],{"className":758},[363,402],"μ",[342,761,763],{"className":762},[363,701],[342,764,766],{"className":765},[363],"s",[342,768],{"className":769,"style":770},[696],"margin-right:0.2778em;",[342,772,775],{"className":773},[774],"mrel","=",[342,777],{"className":778,"style":770},[696],[342,780,782,785,788,796],{"className":781},[354],[342,783],{"className":784,"style":748},[358],[342,786,752],{"className":787},[363],[342,789,791],{"className":790},[363],[342,792,795],{"className":793},[794],"mpunct",",",[342,797,799],{"className":798},[363],"000"," ns, and a\nspinning-disk read about ",[342,802,804],{"className":803},[345],[342,805,807,834],{"className":806,"ariaHidden":350},[349],[342,808,810,813,816,819,825,828,831],{"className":809},[354],[342,811],{"className":812,"style":688},[358],[342,814,692],{"className":815},[363],[342,817],{"className":818,"style":697},[696],[342,820,822],{"className":821},[363,701],[342,823,705],{"className":824},[363],[342,826],{"className":827,"style":770},[696],[342,829,775],{"className":830},[774],[342,832],{"className":833,"style":770},[696],[342,835,837,840,843,849,852,858],{"className":836},[354],[342,838],{"className":839,"style":748},[358],[342,841,692],{"className":842},[363],[342,844,846],{"className":845},[363],[342,847,795],{"className":848},[794],[342,850,799],{"className":851},[363],[342,853,855],{"className":854},[363],[342,856,795],{"className":857},[794],[342,859,799],{"className":860},[363]," ns. So a page fault to\na spinning disk is roughly ",[320,863,864],{},"100,000 times"," slower than the DRAM access it stands\nin for, and to an SSD still about 500 times slower. If a DRAM access were one\nsecond, a disk page fault would be over a day. When a single miss costs that much,\nit pays to spend freely both avoiding it and handling it: large blocks (one\n10 ms seek should return a lot of data), full associativity (never evict a\nuseful page over a placement technicality), and a software replacement policy\n(a few thousand cycles of deliberation is invisible against ten million cycles of\ndisk) all follow directly from the size of that number.",[311,867,868,871,872,876,877,880,881,884,885,903,904,919],{},[320,869,870],{},"A memory manager."," Because each address space is private, every process can\nuse the ",[873,874,875],"em",{},"same"," layout: on x86-64 Linux, code starting at ",[337,878,879],{},"0x400000",", the heap\ngrowing up from the end of the data segment, shared libraries in the middle,\nthe stack growing down from the top. The ",[315,882,883],{"href":44},"linker","\nbakes absolute addresses into every executable without knowing, or caring,\nwhere in DRAM the program will land. Allocation gets simpler too: when a\nprocess asks for ",[342,886,888],{"className":887},[345],[342,889,891],{"className":890,"ariaHidden":350},[349],[342,892,894,898],{"className":893},[354],[342,895],{"className":896,"style":897},[358],"height:0.6944em;",[342,899,902],{"className":900,"style":901},[363,402],"margin-right:0.0315em;","k"," contiguous pages of heap, the kernel can satisfy it with\n",[342,905,907],{"className":906},[345],[342,908,910],{"className":909,"ariaHidden":350},[349],[342,911,913,916],{"className":912},[354],[342,914],{"className":915,"style":897},[358],[342,917,902],{"className":918,"style":901},[363,402]," page frames scattered anywhere in DRAM, because contiguity in virtual space\nnever requires contiguity in physical space. And sharing falls out for free:\nthe kernel keeps one physical copy of the C library's code and maps the same\nframes into every process that uses it, at whatever virtual address each\nexpects.",[311,921,922,925,926,929,930,933],{},[320,923,924],{},"A protection boundary."," Isolation holds by construction: a process cannot\nread or clobber another's memory because no virtual address it can form ",[873,927,928],{},"maps","\nthere. Within a process, the mapping is the natural place to hang finer\npermissions — this page is read-only code, that one is non-executable stack,\nthose belong to the kernel — checked by hardware on every single reference.\nThe ",[315,931,932],{"href":236},"next lesson","\nshows that these checks cost nothing extra, because they ride along with a\nlookup translation was doing anyway.",[325,935,937],{"id":936},"pages-and-page-frames","Pages and page frames",[311,939,940,941,985,986,989,990,993,994,1085,1086,544],{},"Translating each byte individually would be hopeless: there are ",[342,942,944],{"className":943},[345],[342,945,947],{"className":946,"ariaHidden":350},[349],[342,948,950,953],{"className":949},[354],[342,951],{"className":952,"style":582},[358],[342,954,956,959],{"className":955},[363],[342,957,367],{"className":958},[363],[342,960,962],{"className":961},[371],[342,963,965],{"className":964},[375],[342,966,968],{"className":967},[379],[342,969,971],{"className":970,"style":582},[383],[342,972,973,976],{"style":386},[342,974],{"className":975,"style":391},[390],[342,977,979],{"className":978},[395,396,397,398],[342,980,982],{"className":981},[363,398],[342,983,615],{"className":984},[363,398]," of\nthem. Instead virtual memory works in fixed-size chunks. The virtual space is cut\ninto ",[320,987,988],{},"pages"," and physical memory into equally-sized ",[320,991,992],{},"page frames",", and the\nunit of mapping is one page into one frame. A typical page is ",[342,995,997],{"className":996},[345],[342,998,1000,1021,1065],{"className":999,"ariaHidden":350},[349],[342,1001,1003,1007,1012,1015,1018],{"className":1002},[354],[342,1004],{"className":1005,"style":1006},[358],"height:0.6833em;",[342,1008,1011],{"className":1009,"style":1010},[363,402],"margin-right:0.1389em;","P",[342,1013],{"className":1014,"style":770},[696],[342,1016,775],{"className":1017},[774],[342,1019],{"className":1020,"style":770},[696],[342,1022,1024,1027,1056,1059,1062],{"className":1023},[354],[342,1025],{"className":1026,"style":359},[358],[342,1028,1030,1033],{"className":1029},[363],[342,1031,367],{"className":1032},[363],[342,1034,1036],{"className":1035},[371],[342,1037,1039],{"className":1038},[375],[342,1040,1042],{"className":1041},[379],[342,1043,1045],{"className":1044,"style":359},[383],[342,1046,1047,1050],{"style":386},[342,1048],{"className":1049,"style":391},[390],[342,1051,1053],{"className":1052},[395,396,397,398],[342,1054,311],{"className":1055},[363,402,398],[342,1057],{"className":1058,"style":770},[696],[342,1060,775],{"className":1061},[774],[342,1063],{"className":1064,"style":770},[696],[342,1066,1068,1071,1075,1078],{"className":1067},[354],[342,1069],{"className":1070,"style":1006},[358],[342,1072,1074],{"className":1073},[363],"4",[342,1076],{"className":1077,"style":697},[696],[342,1079,1081],{"className":1080},[363,701],[342,1082,1084],{"className":1083},[363],"KB",",\nso ",[342,1087,1089],{"className":1088},[345],[342,1090,1092,1111],{"className":1091,"ariaHidden":350},[349],[342,1093,1095,1099,1102,1105,1108],{"className":1094},[354],[342,1096],{"className":1097,"style":1098},[358],"height:0.625em;vertical-align:-0.1944em;",[342,1100,311],{"className":1101},[363,402],[342,1103],{"className":1104,"style":770},[696],[342,1106,775],{"className":1107},[774],[342,1109],{"className":1110,"style":770},[696],[342,1112,1114,1117],{"className":1113},[354],[342,1115],{"className":1116,"style":688},[358],[342,1118,1120],{"className":1119},[363],"12",[546,1122,1123],{"type":548},[311,1124,1125,554,1128,1131,1132,1135],{},[320,1126,1127],{},"Definition (Page \u002F page frame).",[320,1129,1130],{},"page"," is a fixed-size, aligned block\nof the virtual address space — the granularity at which virtual memory is\nmapped, transferred, and protected. A ",[320,1133,1134],{},"page frame"," is a physical-memory block\nof the same size that can hold one page. Mapping a page to a frame is what\ntranslation records.",[311,1137,1138,1139,1142,1143,1158,1159,1162,1163,1166,1167,1158,1204,1207],{},"Because the page size is a power of two, a virtual address splits cleanly into two\nfields, exactly as a cache address split into ",[315,1140,1141],{"href":211},"tag, index, and offset",".\nThe low ",[342,1144,1146],{"className":1145},[345],[342,1147,1149],{"className":1148,"ariaHidden":350},[349],[342,1150,1152,1155],{"className":1151},[354],[342,1153],{"className":1154,"style":1098},[358],[342,1156,311],{"className":1157},[363,402]," bits are the ",[320,1160,1161],{},"virtual page offset (VPO)",": which byte ",[873,1164,1165],{},"within"," the\npage. The high ",[342,1168,1170],{"className":1169},[345],[342,1171,1173,1195],{"className":1172,"ariaHidden":350},[349],[342,1174,1176,1180,1183,1187,1192],{"className":1175},[354],[342,1177],{"className":1178,"style":1179},[358],"height:0.6667em;vertical-align:-0.0833em;",[342,1181,403],{"className":1182},[363,402],[342,1184],{"className":1185,"style":1186},[696],"margin-right:0.2222em;",[342,1188,1191],{"className":1189},[1190],"mbin","−",[342,1193],{"className":1194,"style":1186},[696],[342,1196,1198,1201],{"className":1197},[354],[342,1199],{"className":1200,"style":1098},[358],[342,1202,311],{"className":1203},[363,402],[320,1205,1206],{},"virtual page number (VPN)",": which page.",[1209,1210],"tikz-figure",{"hash":1211},"76e71c69deef940dc926762c53df9865834d265b4b0689b97ace202392da964c",[325,1213,1215],{"id":1214},"the-mmu-translates-the-page-number-not-the-offset","The MMU translates the page number, not the offset",[311,1217,1218,1219,1222],{},"Translation is done in hardware by the ",[320,1220,1221],{},"memory management unit (MMU)",", a block\nthat sits between the CPU's address output and main memory. On every memory\nreference the CPU hands the MMU a virtual address; the MMU returns the physical\naddress, and only then does DRAM see anything.",[1209,1224],{"hash":1225},"7b0c4dabee94a972ee11d1ab9194e6744d6463b143f513ee9417904786c27316",[311,1227,1228,1229,1232,1233,1236,1237,1240,1241,1256,1257,1272,1273,1276],{},"The translation itself is the lesson's central fact, and it is simpler than it\nlooks. The MMU maps the ",[320,1230,1231],{},"virtual page number"," to a ",[320,1234,1235],{},"physical page number\n(PPN)","; that is the only lookup. The offset is ",[873,1238,1239],{},"not"," translated: because a page\nand a frame are the same size and the same alignment, byte ",[342,1242,1244],{"className":1243},[345],[342,1245,1247],{"className":1246,"ariaHidden":350},[349],[342,1248,1250,1253],{"className":1249},[354],[342,1251],{"className":1252,"style":897},[358],[342,1254,902],{"className":1255,"style":901},[363,402]," of a page is byte\n",[342,1258,1260],{"className":1259},[345],[342,1261,1263],{"className":1262,"ariaHidden":350},[349],[342,1264,1266,1269],{"className":1265},[354],[342,1267],{"className":1268,"style":897},[358],[342,1270,902],{"className":1271,"style":901},[363,402]," of its frame. So the ",[320,1274,1275],{},"physical page offset (PPO) equals the VPO, bit for\nbit."," The MMU replaces the high field and copies the low field through unchanged.",[1209,1278],{"hash":1279},"0cb39e53a57e64a3788587815ad57581384e159f2197e54e4157a8e4a16eded4",[311,1281,1282,1283,1286,1287,1290,1291,1324,1325,1358,1359,1362,1363,1366],{},"So a virtual address ",[337,1284,1285],{},"VPN | VPO"," becomes the physical address ",[337,1288,1289],{},"PPN | VPO",". Two\nproperties follow immediately. First, the number of offset bits — and therefore\nthe page size — is shared by both spaces; only the page-number widths can differ\n(",[342,1292,1294],{"className":1293},[345],[342,1295,1297,1315],{"className":1296,"ariaHidden":350},[349],[342,1298,1300,1303,1306,1309,1312],{"className":1299},[354],[342,1301],{"className":1302,"style":1179},[358],[342,1304,403],{"className":1305},[363,402],[342,1307],{"className":1308,"style":1186},[696],[342,1310,1191],{"className":1311},[1190],[342,1313],{"className":1314,"style":1186},[696],[342,1316,1318,1321],{"className":1317},[354],[342,1319],{"className":1320,"style":1098},[358],[342,1322,311],{"className":1323},[363,402]," virtual bits map to ",[342,1326,1328],{"className":1327},[345],[342,1329,1331,1349],{"className":1330,"ariaHidden":350},[349],[342,1332,1334,1337,1340,1343,1346],{"className":1333},[354],[342,1335],{"className":1336,"style":1179},[358],[342,1338,471],{"className":1339},[363,402],[342,1341],{"className":1342,"style":1186},[696],[342,1344,1191],{"className":1345},[1190],[342,1347],{"className":1348,"style":1186},[696],[342,1350,1352,1355],{"className":1351},[354],[342,1353],{"className":1354,"style":1098},[358],[342,1356,311],{"className":1357},[363,402]," physical bits). Second, the ",[873,1360,1361],{},"whole"," job of\nthe address-translation machinery reduces to one question: ",[320,1364,1365],{},"given a VPN, what is\nthe PPN?"," That mapping is held in a per-process table.",[325,1368,1370],{"id":1369},"a-translation-bit-by-bit","A translation, bit by bit",[311,1372,1373,1374,1408,1409,1442,1443,1477,1478,1512],{},"Run one translation end to end on a\nsmall machine (the example system of CS:APP §9.6.4): ",[342,1375,1377],{"className":1376},[345],[342,1378,1380,1398],{"className":1379,"ariaHidden":350},[349],[342,1381,1383,1386,1389,1392,1395],{"className":1382},[354],[342,1384],{"className":1385,"style":417},[358],[342,1387,403],{"className":1388},[363,402],[342,1390],{"className":1391,"style":770},[696],[342,1393,775],{"className":1394},[774],[342,1396],{"className":1397,"style":770},[696],[342,1399,1401,1404],{"className":1400},[354],[342,1402],{"className":1403,"style":688},[358],[342,1405,1407],{"className":1406},[363],"14"," virtual address\nbits, ",[342,1410,1412],{"className":1411},[345],[342,1413,1415,1433],{"className":1414,"ariaHidden":350},[349],[342,1416,1418,1421,1424,1427,1430],{"className":1417},[354],[342,1419],{"className":1420,"style":417},[358],[342,1422,471],{"className":1423},[363,402],[342,1425],{"className":1426,"style":770},[696],[342,1428,775],{"className":1429},[774],[342,1431],{"className":1432,"style":770},[696],[342,1434,1436,1439],{"className":1435},[354],[342,1437],{"className":1438,"style":688},[358],[342,1440,1120],{"className":1441},[363]," physical address bits, and ",[342,1444,1446],{"className":1445},[345],[342,1447,1449,1467],{"className":1448,"ariaHidden":350},[349],[342,1450,1452,1455,1458,1461,1464],{"className":1451},[354],[342,1453],{"className":1454,"style":1006},[358],[342,1456,1011],{"className":1457,"style":1010},[363,402],[342,1459],{"className":1460,"style":770},[696],[342,1462,775],{"className":1463},[774],[342,1465],{"className":1466,"style":770},[696],[342,1468,1470,1473],{"className":1469},[354],[342,1471],{"className":1472,"style":688},[358],[342,1474,1476],{"className":1475},[363],"64","-byte pages, so ",[342,1479,1481],{"className":1480},[345],[342,1482,1484,1502],{"className":1483,"ariaHidden":350},[349],[342,1485,1487,1490,1493,1496,1499],{"className":1486},[354],[342,1488],{"className":1489,"style":1098},[358],[342,1491,311],{"className":1492},[363,402],[342,1494],{"className":1495,"style":770},[696],[342,1497,775],{"className":1498},[774],[342,1500],{"className":1501,"style":770},[696],[342,1503,1505,1508],{"className":1504},[354],[342,1506],{"className":1507,"style":688},[358],[342,1509,1511],{"className":1510},[363],"6",".\nThe derived widths follow mechanically:",[1514,1515,1516,1557,1690],"ul",{},[1517,1518,1519,1522,1523,1556],"li",{},[320,1520,1521],{},"VPO = PPO = 6 bits",", because ",[342,1524,1526],{"className":1525},[345],[342,1527,1529,1547],{"className":1528,"ariaHidden":350},[349],[342,1530,1532,1535,1538,1541,1544],{"className":1531},[354],[342,1533],{"className":1534,"style":1098},[358],[342,1536,311],{"className":1537},[363,402],[342,1539],{"className":1540,"style":770},[696],[342,1542,775],{"className":1543},[774],[342,1545],{"className":1546,"style":770},[696],[342,1548,1550,1553],{"className":1549},[354],[342,1551],{"className":1552,"style":688},[358],[342,1554,1511],{"className":1555},[363],";",[1517,1558,1559,1562,1563,1628,1629,1689],{},[320,1560,1561],{},"VPN"," ",[342,1564,1566],{"className":1565},[345],[342,1567,1569,1582,1600,1618],{"className":1568,"ariaHidden":350},[349],[342,1570,1572,1576,1579],{"className":1571},[354],[342,1573],{"className":1574,"style":1575},[358],"height:0.3669em;",[342,1577,775],{"className":1578},[774],[342,1580],{"className":1581,"style":770},[696],[342,1583,1585,1588,1591,1594,1597],{"className":1584},[354],[342,1586],{"className":1587,"style":1179},[358],[342,1589,403],{"className":1590},[363,402],[342,1592],{"className":1593,"style":1186},[696],[342,1595,1191],{"className":1596},[1190],[342,1598],{"className":1599,"style":1186},[696],[342,1601,1603,1606,1609,1612,1615],{"className":1602},[354],[342,1604],{"className":1605,"style":1098},[358],[342,1607,311],{"className":1608},[363,402],[342,1610],{"className":1611,"style":770},[696],[342,1613,775],{"className":1614},[774],[342,1616],{"className":1617,"style":770},[696],[342,1619,1621,1624],{"className":1620},[354],[342,1622],{"className":1623,"style":688},[358],[342,1625,1627],{"className":1626},[363],"8"," bits, so the virtual space has ",[342,1630,1632],{"className":1631},[345],[342,1633,1635,1679],{"className":1634,"ariaHidden":350},[349],[342,1636,1638,1641,1670,1673,1676],{"className":1637},[354],[342,1639],{"className":1640,"style":582},[358],[342,1642,1644,1647],{"className":1643},[363],[342,1645,367],{"className":1646},[363],[342,1648,1650],{"className":1649},[371],[342,1651,1653],{"className":1652},[375],[342,1654,1656],{"className":1655},[379],[342,1657,1659],{"className":1658,"style":582},[383],[342,1660,1661,1664],{"style":386},[342,1662],{"className":1663,"style":391},[390],[342,1665,1667],{"className":1666},[395,396,397,398],[342,1668,1627],{"className":1669},[363,398],[342,1671],{"className":1672,"style":770},[696],[342,1674,775],{"className":1675},[774],[342,1677],{"className":1678,"style":770},[696],[342,1680,1682,1685],{"className":1681},[354],[342,1683],{"className":1684,"style":688},[358],[342,1686,1688],{"className":1687},[363],"256"," pages;",[1517,1691,1692,1562,1695,1758,1759,1818],{},[320,1693,1694],{},"PPN",[342,1696,1698],{"className":1697},[345],[342,1699,1701,1713,1731,1749],{"className":1700,"ariaHidden":350},[349],[342,1702,1704,1707,1710],{"className":1703},[354],[342,1705],{"className":1706,"style":1575},[358],[342,1708,775],{"className":1709},[774],[342,1711],{"className":1712,"style":770},[696],[342,1714,1716,1719,1722,1725,1728],{"className":1715},[354],[342,1717],{"className":1718,"style":1179},[358],[342,1720,471],{"className":1721},[363,402],[342,1723],{"className":1724,"style":1186},[696],[342,1726,1191],{"className":1727},[1190],[342,1729],{"className":1730,"style":1186},[696],[342,1732,1734,1737,1740,1743,1746],{"className":1733},[354],[342,1735],{"className":1736,"style":1098},[358],[342,1738,311],{"className":1739},[363,402],[342,1741],{"className":1742,"style":770},[696],[342,1744,775],{"className":1745},[774],[342,1747],{"className":1748,"style":770},[696],[342,1750,1752,1755],{"className":1751},[354],[342,1753],{"className":1754,"style":688},[358],[342,1756,1511],{"className":1757},[363]," bits, so physical memory has ",[342,1760,1762],{"className":1761},[345],[342,1763,1765,1809],{"className":1764,"ariaHidden":350},[349],[342,1766,1768,1771,1800,1803,1806],{"className":1767},[354],[342,1769],{"className":1770,"style":582},[358],[342,1772,1774,1777],{"className":1773},[363],[342,1775,367],{"className":1776},[363],[342,1778,1780],{"className":1779},[371],[342,1781,1783],{"className":1782},[375],[342,1784,1786],{"className":1785},[379],[342,1787,1789],{"className":1788,"style":582},[383],[342,1790,1791,1794],{"style":386},[342,1792],{"className":1793,"style":391},[390],[342,1795,1797],{"className":1796},[395,396,397,398],[342,1798,1511],{"className":1799},[363,398],[342,1801],{"className":1802,"style":770},[696],[342,1804,775],{"className":1805},[774],[342,1807],{"className":1808,"style":770},[696],[342,1810,1812,1815],{"className":1811},[354],[342,1813],{"className":1814,"style":688},[358],[342,1816,1476],{"className":1817},[363]," frames.",[311,1820,1821,1822,1857,1858,544],{},"Notice ",[342,1823,1825],{"className":1824},[345],[342,1826,1828,1848],{"className":1827,"ariaHidden":350},[349],[342,1829,1831,1835,1838,1841,1845],{"className":1830},[354],[342,1832],{"className":1833,"style":1834},[358],"height:0.5782em;vertical-align:-0.0391em;",[342,1836,471],{"className":1837},[363,402],[342,1839],{"className":1840,"style":770},[696],[342,1842,1844],{"className":1843},[774],"\u003C",[342,1846],{"className":1847,"style":770},[696],[342,1849,1851,1854],{"className":1850},[354],[342,1852],{"className":1853,"style":417},[358],[342,1855,403],{"className":1856},[363,402],": this machine's virtual space (16 KB) is four times larger than\nits physical memory (4 KB), so at most a quarter of the virtual pages can be\nresident at once. Now let the CPU read virtual address ",[337,1859,1860],{},"0x03D4",[1862,1863,1864,1875,1897,1915],"ol",{},[1517,1865,1866,1562,1869,1871,1872,544],{},[320,1867,1868],{},"Write out the 14 bits.",[337,1870,1860],{}," is ",[337,1873,1874],{},"00 0011 1101 0100",[1517,1876,1877,1880,1881,1884,1885,1888,1889,1892,1893,1896],{},[320,1878,1879],{},"Split at bit 6."," The high 8 bits, ",[337,1882,1883],{},"0000 1111",", are the VPN: page\n",[337,1886,1887],{},"0x0F",". The low 6 bits, ",[337,1890,1891],{},"01 0100",", are the VPO: byte ",[337,1894,1895],{},"0x14"," within the\npage.",[1517,1898,1899,1904,1905,1908,1909,1911,1912,544],{},[320,1900,1901,1902,544],{},"Look up VPN ",[337,1903,1887],{}," The page table (next lesson's subject) says this\npage is resident in frame ",[337,1906,1907],{},"0x0D",", so the PPN is ",[337,1910,1907],{},"; in bits,\n",[337,1913,1914],{},"00 1101",[1517,1916,1917,1920,1921,1924,1925,1928],{},[320,1918,1919],{},"Form the physical address."," Concatenate PPN and the untouched offset:\n",[337,1922,1923],{},"0011 0101 0100",", which reads as ",[337,1926,1927],{},"0x354",". That 12-bit address goes to\nmemory.",[1209,1930],{"hash":1931},"4f1af49f45296c09dfa625508416cd405852b682e5aa6cd12e3a768eb15a1c36",[311,1933,1934],{},"Every translation the rest of this module performs — through page tables, TLBs,\nand multi-level walks — is this same four-step skeleton. Only step 3, the\nlookup, gets more elaborate.",[311,1936,1937,1938,1941,1942,1944,1945,1947,1948,1950,1951,1953,1954,1956,1957,1959,1960,1962,1963,1965,1966,1968,1969,1972,1973,1975,1976,1979,1980,1982,1983,1975,1985,1988,1989,1992,1993,1995,1996,1999,2000,2003,2004,2006,2007,2009],{},"One more property of the split, worked through with the same numbers because it is\na common source of confusion: ",[320,1939,1940],{},"which bits move and which do not."," The offset\n",[337,1943,1895],{}," appears verbatim in both the virtual address (",[337,1946,1860],{},") and the physical\naddress (",[337,1949,1927],{},") — the low six bits are ",[337,1952,1891],{}," in each. Only the high field\nchanged, from VPN ",[337,1955,1887],{}," to PPN ",[337,1958,1907],{},". So two virtual addresses in the ",[873,1961,875],{},"\npage always land in the ",[873,1964,875],{}," frame at the same relative position: ",[337,1967,1860],{}," and\n",[337,1970,1971],{},"0x03D5"," (offsets ",[337,1974,1895],{}," and ",[337,1977,1978],{},"0x15"," of page ",[337,1981,1887],{},") become ",[337,1984,1927],{},[337,1986,1987],{},"0x355",",\nadjacent in memory just as they were adjacent in the program. Crossing a page\nboundary, though, is a discontinuity: ",[337,1990,1991],{},"0x03FF"," is the last byte of page ",[337,1994,1887],{},",\nand ",[337,1997,1998],{},"0x0400"," is byte 0 of page ",[337,2001,2002],{},"0x10",", which the table may map to any frame at\nall — physically nowhere near frame ",[337,2005,1907],{},". Contiguity in virtual space survives\ntranslation only ",[873,2008,1165],{}," a page; across pages it is the table's to decide, and\nusually it scatters.",[325,2011,2013],{"id":2012},"page-hit-page-fault","Page hit, page fault",[311,2015,2016,2017,2020],{},"Step 3 hides one assumption: that the page ",[873,2018,2019],{},"was"," resident. The lookup structure\nrecords, for each virtual page, whether a frame currently holds it, and the\ntwo answers produce two very different control flows.",[311,2022,2023,2024,2027,2028,2031],{},"A ",[320,2025,2026],{},"page hit"," is the common case, and it is handled entirely in hardware. The\nCPU sends the virtual address to the MMU; the MMU reads the page's ",[320,2029,2030],{},"page-table\nentry (PTE)"," from memory, finds the page resident, forms the physical address,\nand the access completes. The program never knows any of this happened.",[1209,2033],{"hash":2034},"d2d63febbff066c3bda6ca5eddaed51f30afbcab32322b8179ef09132d99ea36",[311,2036,2023,2037,2040,2041,2043,2044,2047,2048,2051],{},[320,2038,2039],{},"page fault"," is what happens when the PTE says the page is ",[873,2042,1239],{}," resident.\nHardware cannot fix that — fetching a page from disk, choosing which resident\npage to evict from its frame, and updating the bookkeeping are policy\ndecisions — so the MMU raises an exception that transfers control to a software\nroutine in the kernel, the ",[320,2045,2046],{},"page-fault handler",". The handler brings the page\ninto a frame, updates the lookup structure, and returns. Then the CPU\n",[320,2049,2050],{},"re-executes the faulting instruction from scratch",",\nand this time the reference hits. The program cannot tell the fault occurred,\nexcept by the clock.",[1209,2053],{"hash":2054},"842e2de7ee99fc0ea7db90d602b5e945235c6e14f22bc3638f8ac4c5df6e0033",[311,2056,2057,2058,2060],{},"The division of labor is deliberate. Hardware handles the fast, common\ncase (hits) with no software in the loop; software handles the slow, rare case\n(faults) with full policy freedom. The\n",[315,2059,932],{"href":236},"\nfills in both halves: the structure the MMU reads, and what the handler\nactually does.",[325,2062,2064],{"id":2063},"one-physical-memory-many-virtual-spaces","One physical memory, many virtual spaces",[311,2066,2067],{},"Putting the pieces together: each running process has its own virtual address\nspace, its own VPN-to-PPN mapping, and the freedom to use identical virtual\nlayouts. Those mappings funnel into the single physical memory, where the kernel\nhands out frames as it sees fit. Two processes may map their page 5 to entirely\ndifferent frames (isolation), or — for shared libraries — deliberately to the\nsame frame (sharing).",[1209,2069],{"hash":2070},"21b5e229dd36e783f8c6efcd167a7e4769398e0f0fbb91b2191213c1be4ec031",[325,2072,2074],{"id":2073},"from-atlas-to-five-level-paging","From Atlas to five-level paging",[311,2076,2077],{},"Virtual memory is one of the oldest ideas in computer architecture that is still\nexactly as described here, and the history explains why the design looks the way\nit does.",[311,2079,2080,2081,2084,2085,2089,2090,2093,2094,2097,2098,2101],{},"The mechanism was invented on the ",[320,2082,2083],{},"Atlas"," computer at the University of\nManchester (Kilburn, Edwards, Lanigan, and Sumner, ",[2086,2087,2088],"q",{},"One-Level Storage System,","\n1962, ",[873,2091,2092],{},"IRE Trans.","). Atlas gave programmers a single flat store of 1 M words\nwhile backing it with 16 K words of core and a drum, paging between them\nautomatically — the ",[2086,2095,2096],{},"one-level storage"," of the title is precisely the convenient\nfiction this lesson opened with. Every element here, the page, the page fault, the\nautomatic fetch from backing store, is in that paper. What Atlas lacked was a\nfast way to do the lookup on every reference; that arrived as the ",[320,2099,2100],{},"translation\nlookaside buffer",", and its principle is the third lesson of this module.",[311,2103,2104,2105,2149,2150,2153,2154,2199,2200,2203,2204,2207,2208,2211,2212,2215],{},"The design also keeps expanding along the one axis the arithmetic exposes: address\nwidth. This lesson's 48-bit x86-64 space (",[342,2106,2108],{"className":2107},[345],[342,2109,2111],{"className":2110,"ariaHidden":350},[349],[342,2112,2114,2117],{"className":2113},[354],[342,2115],{"className":2116,"style":582},[358],[342,2118,2120,2123],{"className":2119},[363],[342,2121,367],{"className":2122},[363],[342,2124,2126],{"className":2125},[371],[342,2127,2129],{"className":2128},[375],[342,2130,2132],{"className":2131},[379],[342,2133,2135],{"className":2134,"style":582},[383],[342,2136,2137,2140],{"style":386},[342,2138],{"className":2139,"style":391},[390],[342,2141,2143],{"className":2142},[395,396,397,398],[342,2144,2146],{"className":2145},[363,398],[342,2147,615],{"className":2148},[363,398]," = 256 TB) was generous when it\nshipped, but large servers outgrew it, so Intel and AMD added ",[320,2151,2152],{},"5-level paging","\n(a fifth table level lifting virtual addresses to 57 bits, ",[342,2155,2157],{"className":2156},[345],[342,2158,2160],{"className":2159,"ariaHidden":350},[349],[342,2161,2163,2166],{"className":2162},[354],[342,2164],{"className":2165,"style":582},[358],[342,2167,2169,2172],{"className":2168},[363],[342,2170,367],{"className":2171},[363],[342,2173,2175],{"className":2174},[371],[342,2176,2178],{"className":2177},[375],[342,2179,2181],{"className":2180},[379],[342,2182,2184],{"className":2183,"style":582},[383],[342,2185,2186,2189],{"style":386},[342,2187],{"className":2188,"style":391},[390],[342,2190,2192],{"className":2191},[395,396,397,398],[342,2193,2195],{"className":2194},[363,398],[342,2196,2198],{"className":2197},[363,398],"57"," = 128 PB),\nsupported in Linux since 2017 and shipping on Ice Lake servers. The\n",[315,2201,2202],{"href":236},"page-table lessons","\nthat follow show why adding reach is as cheap as adding one more level to the\nwalk. And the isolation this lesson credits to ",[2086,2205,2206],{},"no virtual address maps there","\nhas a hardware caveat: the ",[320,2209,2210],{},"Meltdown"," attack (Lipp et al., 2018,\nUSENIX Security) showed that speculative execution could momentarily read across\nthe protection boundary the page table is supposed to enforce, and the fix,\n",[320,2213,2214],{},"kernel page-table isolation",", gives the kernel its own set of page tables so\na user process's tables cannot even name kernel memory — protection by\nconstruction, taken one level further than this lesson's version.",[546,2217,2219],{"type":2218},"note",[311,2220,2221,2224,2225,2227,2228,2231,2232,2234,2235,2237,2238,2297,2298,2300,2301,2303,2304,2307,2308,2311,2312,2314,2315,2317,2318,2320,2321,2323,2324,2326,2327,2329,2330,2332],{},[320,2222,2223],{},"Takeaway."," Each process emits ",[320,2226,334],{}," into its own space; the\n",[320,2229,2230],{},"MMU"," translates every one into a ",[320,2233,561],{}," in the single shared\nDRAM. Translation works on ",[320,2236,988],{}," (size ",[342,2239,2241],{"className":2240},[345],[342,2242,2244,2262],{"className":2243,"ariaHidden":350},[349],[342,2245,2247,2250,2253,2256,2259],{"className":2246},[354],[342,2248],{"className":2249,"style":1006},[358],[342,2251,1011],{"className":2252,"style":1010},[363,402],[342,2254],{"className":2255,"style":770},[696],[342,2257,775],{"className":2258},[774],[342,2260],{"className":2261,"style":770},[696],[342,2263,2265,2268],{"className":2264},[354],[342,2266],{"className":2267,"style":359},[358],[342,2269,2271,2274],{"className":2270},[363],[342,2272,367],{"className":2273},[363],[342,2275,2277],{"className":2276},[371],[342,2278,2280],{"className":2279},[375],[342,2281,2283],{"className":2282},[379],[342,2284,2286],{"className":2285,"style":359},[383],[342,2287,2288,2291],{"style":386},[342,2289],{"className":2290,"style":391},[390],[342,2292,2294],{"className":2293},[395,396,397,398],[342,2295,311],{"className":2296},[363,402,398],"): the high ",[320,2299,1561],{}," is\nlooked up and replaced by a ",[320,2302,1694],{},", while the low ",[320,2305,2306],{},"VPO"," is copied through\nunchanged as the ",[320,2309,2310],{},"PPO"," — same size, same alignment, so the offset never\nmoves. On the 14-bit example machine, ",[337,2313,1860],{}," splits into VPN ",[337,2316,1887],{}," and\noffset ",[337,2319,1895],{},", and PPN ",[337,2322,1907],{}," makes the physical address ",[337,2325,1927],{},". A resident\npage is a ",[320,2328,2026],{},", handled entirely in hardware; a missing one is a\n",[320,2331,2039],{},", handled by the OS, after which the instruction restarts. The\nwhole arrangement buys a cache for disk, painless memory management, and\nprotection.",[311,2334,2335,2336,2339],{},"The mapping from VPN to PPN lives in a structure the MMU consults on every access:\nthe ",[315,2337,2338],{"href":236},"page table",",\nand what happens when a page is not in DRAM at all.",{"title":306,"searchDepth":17,"depth":17,"links":2341},[2342,2343,2344,2345,2346,2347,2348,2349],{"id":327,"depth":17,"text":328},{"id":665,"depth":17,"text":666},{"id":936,"depth":17,"text":937},{"id":1214,"depth":17,"text":1215},{"id":1369,"depth":17,"text":1370},{"id":2012,"depth":17,"text":2013},{"id":2063,"depth":17,"text":2064},{"id":2073,"depth":17,"text":2074},[],"computer-science","The memory hierarchy\nended with a convenient fiction: that a program addresses one flat array of bytes\nthat is entirely its own. On a real machine that array does not exist. Physical\nmemory, the DRAM chips, is a single shared resource, smaller than the address\neach program is allowed to name, and used at the same time by dozens of\nprocesses. Virtual memory is the mechanism that makes the fiction true for each\nprocess: every program gets its own private array of bytes, and hardware\ntranslates each access into a location in the one physical memory underneath.\nThis lesson sets up the two address spaces and the translation that connects\nthem; the next two build the data structures that make it work.",false,"md",{"moduleNumber":76,"lessonNumber":6,"order":2356},701,true,[],"---\ntitle: Address Spaces and Translation\nmodule: Virtual Memory\nmoduleNumber: 7\nlessonNumber: 1\norder: 701\nsummary: >\n  Every process runs as if it owns a private, contiguous span of memory — its\n  virtual address space — while the hardware maps those addresses onto a\n  single shared physical memory. We fix virtual memory's three jobs (a cache for\n  disk, a memory manager, a protection boundary), the page as the unit of\n  mapping, and the MMU replacing the virtual page number while the offset passes\n  through untouched — then run one translation end to end at the bit level and\n  trace the control flow of a page hit against a page fault.\ntopics: [Virtual Memory]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §9 Virtual Memory\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §10 Virtual Memory\"\n---\n\nThe [memory hierarchy](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap)\nended with a convenient fiction: that a program addresses one flat array of bytes\nthat is entirely its own. On a real machine that array does not exist. Physical\nmemory, the DRAM chips, is a single shared resource, smaller than the address\neach program is allowed to name, and used at the same time by dozens of\nprocesses. **Virtual memory** is the mechanism that makes the fiction true for each\nprocess: every program gets its own private array of bytes, and hardware\ntranslates each access into a location in the one physical memory underneath.\nThis lesson sets up the two address spaces and the translation that connects\nthem; the next two build the data structures that make it work.\n\n## Two address spaces\n\nA program issues **virtual addresses**: the addresses in its code, its pointers,\nits `%rip`. The set of all $2^n$ such addresses on an $n$-bit machine is the\n**virtual address space**. Underneath, DRAM is named by **physical addresses**,\nand the set of $2^m$ of those (with $m$ usually smaller than $n$) is the\n**physical address space**. The processor's [word size](\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words)\nfixes $n$; the amount of installed RAM fixes the useful range of $m$.\n\n> **Definition (Virtual \u002F physical address).** A **virtual address** is the\n> address a program emits; it indexes that process's private virtual address\n> space. A **physical address** is the address of an actual byte in main memory.\n> The two are connected only through **address translation**, performed by\n> hardware on every reference.\n\nThe sizes matter. A modern x86-64 processor uses 48-bit virtual\naddresses: $2^{48}$ bytes is 256 TB of nameable space, per process. A machine\nwith 16 GB of DRAM has physical addresses covering about $2^{34}$ bytes. Every\nprocess can name sixteen thousand times more memory than exists, and dozens of\nprocesses do so simultaneously; address translation is what makes this workable.\n\n## The three jobs of virtual memory\n\nVirtual memory solves three problems at once, all with the same mechanism: a\nlevel of indirection on every address. The machinery of the next two lessons\nexists to serve exactly these jobs.\n\n**A cache for disk.** A process can name far more bytes than the machine has\nDRAM, so the full contents of its address space live on disk, and DRAM holds\nonly the subset in active use. This makes DRAM one more level of the memory\nhierarchy: a cache whose backing store is disk. But the numbers force an\nextreme design. A DRAM access costs tens of nanoseconds; a read from an SSD\ncosts tens of microseconds, and from a spinning disk around\n$10\\,\\text{ms}$ — a miss penalty of three to five orders of magnitude, dwarfing\nthe roughly 100x gap that [SRAM caches](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped)\nbridge. Consequently the blocks are large (4 KB pages rather than 64-byte\nlines, to amortize the transfer), placement is fully associative (any page may\noccupy any frame, so no placement constraint ever forces a bad\neviction), the write policy is always write-back (writing through to disk on\nevery store would be absurd), and replacement is decided by operating-system\nsoftware, because when a miss costs ten million cycles, spending a few thousand\nchoosing the right victim is free.\n\nThe magnitudes force every one of those design\nchoices. Line up the levels a reference might reach: an L1 hit\nis about 1 ns, a DRAM access about 100 ns (a $100\\times$ gap, the one SRAM caches\nexist to bridge), an SSD read about $50\\,\\mu\\text{s} = 50{,}000$ ns, and a\nspinning-disk read about $10\\,\\text{ms} = 10{,}000{,}000$ ns. So a page fault to\na spinning disk is roughly **100,000 times** slower than the DRAM access it stands\nin for, and to an SSD still about 500 times slower. If a DRAM access were one\nsecond, a disk page fault would be over a day. When a single miss costs that much,\nit pays to spend freely both avoiding it and handling it: large blocks (one\n10 ms seek should return a lot of data), full associativity (never evict a\nuseful page over a placement technicality), and a software replacement policy\n(a few thousand cycles of deliberation is invisible against ten million cycles of\ndisk) all follow directly from the size of that number.\n\n**A memory manager.** Because each address space is private, every process can\nuse the _same_ layout: on x86-64 Linux, code starting at `0x400000`, the heap\ngrowing up from the end of the data segment, shared libraries in the middle,\nthe stack growing down from the top. The [linker](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view)\nbakes absolute addresses into every executable without knowing, or caring,\nwhere in DRAM the program will land. Allocation gets simpler too: when a\nprocess asks for $k$ contiguous pages of heap, the kernel can satisfy it with\n$k$ page frames scattered anywhere in DRAM, because contiguity in virtual space\nnever requires contiguity in physical space. And sharing falls out for free:\nthe kernel keeps one physical copy of the C library's code and maps the same\nframes into every process that uses it, at whatever virtual address each\nexpects.\n\n**A protection boundary.** Isolation holds by construction: a process cannot\nread or clobber another's memory because no virtual address it can form _maps_\nthere. Within a process, the mapping is the natural place to hang finer\npermissions — this page is read-only code, that one is non-executable stack,\nthose belong to the kernel — checked by hardware on every single reference.\nThe [next lesson](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults)\nshows that these checks cost nothing extra, because they ride along with a\nlookup translation was doing anyway.\n\n## Pages and page frames\n\nTranslating each byte individually would be hopeless: there are $2^{48}$ of\nthem. Instead virtual memory works in fixed-size chunks. The virtual space is cut\ninto **pages** and physical memory into equally-sized **page frames**, and the\nunit of mapping is one page into one frame. A typical page is $P = 2^p = 4\\,\\text{KB}$,\nso $p = 12$.\n\n> **Definition (Page \u002F page frame).** A **page** is a fixed-size, aligned block\n> of the virtual address space — the granularity at which virtual memory is\n> mapped, transferred, and protected. A **page frame** is a physical-memory block\n> of the same size that can hold one page. Mapping a page to a frame is what\n> translation records.\n\nBecause the page size is a power of two, a virtual address splits cleanly into two\nfields, exactly as a cache address split into [tag, index, and offset](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped).\nThe low $p$ bits are the **virtual page offset (VPO)**: which byte _within_ the\npage. The high $n - p$ bits are the **virtual page number (VPN)**: which page.\n\n$$\n% caption: An n-bit virtual address splits into the high virtual page number\n% caption: (VPN) and the low p-bit virtual page offset (VPO). The VPN names a page;\n% caption: the VPO names a byte inside it. Page size P = 2^p, so p = log2(P).\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[draw, fill=acc!8, minimum width=48mm, minimum height=8mm, inner sep=0pt]\n    (vpn) at (0,0) {VPN};\n  \\node[draw, minimum width=24mm, minimum height=8mm, inner sep=0pt,\n    anchor=west] (vpo) at (vpn.east) {VPO};\n  \\node[anchor=south west] at (vpn.north west) {bit n-1};\n  \\node[anchor=south east] at (vpo.north east) {bit 0};\n  \\draw[\u003C->] ($(vpn.south west)+(0,-0.25)$) -- ($(vpn.south east)+(0,-0.25)$)\n    node[midway,below] {n-p bits};\n  \\draw[\u003C->] ($(vpo.south west)+(0,-0.25)$) -- ($(vpo.south east)+(0,-0.25)$)\n    node[midway,below] {p bits};\n\\end{tikzpicture}\n$$\n\n## The MMU translates the page number, not the offset\n\nTranslation is done in hardware by the **memory management unit (MMU)**, a block\nthat sits between the CPU's address output and main memory. On every memory\nreference the CPU hands the MMU a virtual address; the MMU returns the physical\naddress, and only then does DRAM see anything.\n\n$$\n% caption: The MMU sits between the CPU and physical memory. The CPU emits a\n% caption: virtual address; the MMU translates it to a physical address; only the\n% caption: physical address reaches DRAM. Translation happens on every reference.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  box\u002F.style={draw, minimum height=11mm, inner sep=3pt, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box, minimum width=16mm] (cpu) at (0,0) {CPU};\n  \\node[box, minimum width=18mm, fill=acc!8] (mmu) at (3.4,0) {MMU};\n  \\node[box, minimum width=22mm] (mem) at (7.4,0) {physical\\\\memory};\n  \\draw[->] (cpu.east) -- (mmu.west)\n    node[midway,above] {VA};\n  \\draw[->] (mmu.east) -- (mem.west)\n    node[midway,above] {PA};\n  \\draw[->] (mem.south) |- ($(cpu.south)+(0,-0.75)$) -- (cpu.south)\n    node[pos=0.25,below] {data};\n\\end{tikzpicture}\n$$\n\nThe translation itself is the lesson's central fact, and it is simpler than it\nlooks. The MMU maps the **virtual page number** to a **physical page number\n(PPN)**; that is the only lookup. The offset is _not_ translated: because a page\nand a frame are the same size and the same alignment, byte $k$ of a page is byte\n$k$ of its frame. So the **physical page offset (PPO) equals the VPO, bit for\nbit.** The MMU replaces the high field and copies the low field through unchanged.\n\n$$\n% caption: Translation replaces the VPN with the PPN and copies the offset\n% caption: through unchanged. The physical page offset (PPO) equals the virtual\n% caption: page offset (VPO) exactly, because a page and a frame share size and\n% caption: alignment. Only the page number is looked up.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth]\n  \\definecolor{acc}{HTML}{2348F2}\n  % virtual address (top)\n  \\node[draw, fill=acc!8, minimum width=40mm, minimum height=8mm, inner sep=0pt]\n    (vpn) at (0,1.6) {VPN};\n  \\node[draw, minimum width=24mm, minimum height=8mm, inner sep=0pt,\n    anchor=west] (vpo) at (vpn.east) {VPO};\n  \\node[anchor=east] at (vpn.west) {VA};\n  % physical address (bottom)\n  \\node[draw, fill=acc!8, minimum width=30mm, minimum height=8mm, inner sep=0pt]\n    (ppn) at (1.0,-1.0) {PPN};\n  \\node[draw, minimum width=24mm, minimum height=8mm, inner sep=0pt,\n    anchor=west] (ppo) at (ppn.east) {PPO};\n  \\node[anchor=north east] at (ppn.south west) {PA};\n  % VPN -> MMU -> PPN\n  \\node[draw, circle, minimum size=9mm, fill=acc!8] (mmu) at (-1.7,0.3) {MMU};\n  \\draw[->] (vpn.west) -| (mmu.north);\n  \\draw[->] (mmu.south) |- (ppn.west);\n  % of\\\u002Ffset copied straight down, unchanged\n  \\draw[->,acc, thick] (vpo.south) -- (ppo.north)\n    node[midway,right] {unchanged};\n\\end{tikzpicture}\n$$\n\nSo a virtual address `VPN | VPO` becomes the physical address `PPN | VPO`. Two\nproperties follow immediately. First, the number of offset bits — and therefore\nthe page size — is shared by both spaces; only the page-number widths can differ\n($n - p$ virtual bits map to $m - p$ physical bits). Second, the _whole_ job of\nthe address-translation machinery reduces to one question: **given a VPN, what is\nthe PPN?** That mapping is held in a per-process table.\n\n## A translation, bit by bit\n\nRun one translation end to end on a\nsmall machine (the example system of CS:APP §9.6.4): $n = 14$ virtual address\nbits, $m = 12$ physical address bits, and $P = 64$-byte pages, so $p = 6$.\nThe derived widths follow mechanically:\n\n- **VPO = PPO = 6 bits**, because $p = 6$;\n- **VPN** $= n - p = 8$ bits, so the virtual space has $2^8 = 256$ pages;\n- **PPN** $= m - p = 6$ bits, so physical memory has $2^6 = 64$ frames.\n\nNotice $m \u003C n$: this machine's virtual space (16 KB) is four times larger than\nits physical memory (4 KB), so at most a quarter of the virtual pages can be\nresident at once. Now let the CPU read virtual address `0x03D4`.\n\n1. **Write out the 14 bits.** `0x03D4` is `00 0011 1101 0100`.\n2. **Split at bit 6.** The high 8 bits, `0000 1111`, are the VPN: page\n   `0x0F`. The low 6 bits, `01 0100`, are the VPO: byte `0x14` within the\n   page.\n3. **Look up VPN `0x0F`.** The page table (next lesson's subject) says this\n   page is resident in frame `0x0D`, so the PPN is `0x0D`; in bits,\n   `00 1101`.\n4. **Form the physical address.** Concatenate PPN and the untouched offset:\n   `0011 0101 0100`, which reads as `0x354`. That 12-bit address goes to\n   memory.\n\n$$\n% caption: Virtual address 0x03D4 on the example machine (n = 14, m = 12,\n% caption: P = 64). The high 8 bits are VPN 0x0F; the low 6 are VPO 0x14. The page\n% caption: table maps VPN 0x0F to PPN 0x0D, and the physical address 0x354 is that\n% caption: PPN with the same six offset bits appended, untouched.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  bit\u002F.style={draw, minimum size=6mm, inner sep=0pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % virtual address bits: 00001111 010100\n  \\foreach \\i\u002F\\v in {0\u002F0,1\u002F0,2\u002F0,3\u002F0,4\u002F1,5\u002F1,6\u002F1,7\u002F1}\n    \\node[bit, draw=acc, fill=acc!8] at (\\i*0.6,2.6) {\\v};\n  \\foreach \\i\u002F\\v in {8\u002F0,9\u002F1,10\u002F0,11\u002F1,12\u002F0,13\u002F0}\n    \\node[bit] at (\\i*0.6,2.6) {\\v};\n  \\node[anchor=south] at (2.1,3.0) {VPN = \\texttt{0x0F}};\n  \\node[anchor=south] at (6.3,3.0) {VPO = \\texttt{0x14}};\n  \\node[anchor=east] at (-0.55,2.6) {VA \\texttt{0x03D4}};\n  % physical address bits: 001101 010100 (of\\\u002Ffset column-aligned with VPO)\n  \\foreach \\i\u002F\\v in {0\u002F0,1\u002F0,2\u002F1,3\u002F1,4\u002F0,5\u002F1}\n    \\node[bit, draw=acc, fill=acc!8] at (\\i*0.6+1.2,0.4) {\\v};\n  \\foreach \\i\u002F\\v in {6\u002F0,7\u002F1,8\u002F0,9\u002F1,10\u002F0,11\u002F0}\n    \\node[bit] at (\\i*0.6+1.2,0.4) {\\v};\n  \\node[anchor=north] at (2.7,0.0) {PPN = \\texttt{0x0D}};\n  \\node[anchor=north] at (6.3,0.0) {PPO = \\texttt{0x14}};\n  \\node[anchor=east] at (0.65,0.4) {PA \\texttt{0x354}};\n  % page-table lookup arrow (VPN group down to PPN group)\n  \\draw[->] (2.1,2.25) -- (2.7,0.75);\n  \\node[anchor=east, align=right] at (1.75,1.5)\n    {page table:\\\\PTE \\texttt{0x0F} = PPN \\texttt{0x0D}};\n  % of\\\u002Ffset copied down unchanged\n  \\draw[->,acc,thick] (6.3,2.25) -- (6.3,0.75)\n    node[midway,right] {unchanged};\n\\end{tikzpicture}\n$$\n\nEvery translation the rest of this module performs — through page tables, TLBs,\nand multi-level walks — is this same four-step skeleton. Only step 3, the\nlookup, gets more elaborate.\n\nOne more property of the split, worked through with the same numbers because it is\na common source of confusion: **which bits move and which do not.** The offset\n`0x14` appears verbatim in both the virtual address (`0x03D4`) and the physical\naddress (`0x354`) — the low six bits are `01 0100` in each. Only the high field\nchanged, from VPN `0x0F` to PPN `0x0D`. So two virtual addresses in the _same_\npage always land in the _same_ frame at the same relative position: `0x03D4` and\n`0x03D5` (offsets `0x14` and `0x15` of page `0x0F`) become `0x354` and `0x355`,\nadjacent in memory just as they were adjacent in the program. Crossing a page\nboundary, though, is a discontinuity: `0x03FF` is the last byte of page `0x0F`,\nand `0x0400` is byte 0 of page `0x10`, which the table may map to any frame at\nall — physically nowhere near frame `0x0D`. Contiguity in virtual space survives\ntranslation only _within_ a page; across pages it is the table's to decide, and\nusually it scatters.\n\n## Page hit, page fault\n\nStep 3 hides one assumption: that the page _was_ resident. The lookup structure\nrecords, for each virtual page, whether a frame currently holds it, and the\ntwo answers produce two very different control flows.\n\nA **page hit** is the common case, and it is handled entirely in hardware. The\nCPU sends the virtual address to the MMU; the MMU reads the page's **page-table\nentry (PTE)** from memory, finds the page resident, forms the physical address,\nand the access completes. The program never knows any of this happened.\n\n$$\n% caption: A page hit runs entirely in hardware. (1) The CPU sends the virtual\n% caption: address to the MMU. (2) The MMU requests the page-table entry from\n% caption: memory (PTEA is the entry's address) and (3) receives the PTE. (4) The\n% caption: entry supplies the PPN, and the MMU sends the physical address to\n% caption: memory, which (5) returns the data.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  box\u002F.style={draw, minimum height=16mm, inner sep=3pt, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box, minimum width=16mm] (cpu) at (0,0) {CPU};\n  \\node[box, minimum width=18mm, fill=acc!8] (mmu) at (3.6,0) {MMU};\n  \\node[box, minimum width=26mm] (mem) at (8.2,0) {cac\\\u002Fhe \u002F\\\\memory};\n  \\draw[->] (cpu.east) -- (mmu.west) node[midway,above] {(1) VA};\n  \\draw[->] ([yshift=5mm]mmu.east) -- ([yshift=5mm]mem.west)\n    node[midway,above,font=\\scriptsize] {(2) PTEA};\n  \\draw[\u003C-] (mmu.east) -- (mem.west)\n    node[midway,above,font=\\scriptsize] {(3) PTE};\n  \\draw[->] ([yshift=-5mm]mmu.east) -- ([yshift=-5mm]mem.west)\n    node[midway,above,font=\\scriptsize] {(4) PA};\n  \\draw[->] (mem.south) |- ($(cpu.south)+(0,-0.7)$) -- (cpu.south);\n  \\node[anchor=south] at (3.0,-1.45) {(5) data};\n\\end{tikzpicture}\n$$\n\nA **page fault** is what happens when the PTE says the page is _not_ resident.\nHardware cannot fix that — fetching a page from disk, choosing which resident\npage to evict from its frame, and updating the bookkeeping are policy\ndecisions — so the MMU raises an exception that transfers control to a software\nroutine in the kernel, the **page-fault handler**. The handler brings the page\ninto a frame, updates the lookup structure, and returns. Then the CPU\n**re-executes the faulting instruction from scratch**,\nand this time the reference hits. The program cannot tell the fault occurred,\nexcept by the clock.\n\n$$\n% caption: A page fault diverts to software. Steps 1-3 proceed as in a hit, but\n% caption: the PTE comes back not-resident, so (4) the MMU raises an exception\n% caption: into the OS page-fault handler. (5) The handler evicts a victim if\n% caption: needed and reads the missing page from disk into a frame, (6) the page\n% caption: lands in memory and the PTE is updated, and (7) control returns and the\n% caption: CPU restarts the faulting instruction, which now hits.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  box\u002F.style={draw, minimum height=16mm, inner sep=3pt, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box, minimum width=16mm] (cpu) at (0,0) {CPU};\n  \\node[box, minimum width=18mm, fill=acc!8] (mmu) at (3.6,0) {MMU};\n  \\node[box, minimum width=26mm] (mem) at (8.2,0) {cac\\\u002Fhe \u002F\\\\memory};\n  \\node[box, minimum width=30mm, minimum height=11mm] (os) at (3.6,2.6)\n    {OS page-fault\\\\handler};\n  \\node[box, minimum width=18mm, minimum height=11mm] (disk) at (8.2,2.6)\n    {disk\\\\(swap)};\n  \\draw[->] (cpu.east) -- (mmu.west) node[midway,above] {(1) VA};\n  \\draw[->] ([yshift=5mm]mmu.east) -- ([yshift=5mm]mem.west)\n    node[midway,above,font=\\scriptsize] {(2) PTEA};\n  \\draw[\u003C-] (mmu.east) -- (mem.west)\n    node[midway,above,font=\\scriptsize] {(3) PTE: v=0};\n  \\draw[->] (mmu.north) -- (os.south) node[midway,right] {(4) exception};\n  \\draw[->] (os.east) -- (disk.west)\n    node[midway,above,font=\\scriptsize] {(5) read page};\n  \\draw[->] (disk.south) -- (mem.north) node[midway,right] {(6) new page};\n  \\draw[->] (os.west) -| (cpu.north);\n  \\node[anchor=south, font=\\scriptsize] at (0.75,2.68) {(7) return, restart};\n\\end{tikzpicture}\n$$\n\nThe division of labor is deliberate. Hardware handles the fast, common\ncase (hits) with no software in the loop; software handles the slow, rare case\n(faults) with full policy freedom. The\n[next lesson](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults)\nfills in both halves: the structure the MMU reads, and what the handler\nactually does.\n\n## One physical memory, many virtual spaces\n\nPutting the pieces together: each running process has its own virtual address\nspace, its own VPN-to-PPN mapping, and the freedom to use identical virtual\nlayouts. Those mappings funnel into the single physical memory, where the kernel\nhands out frames as it sees fit. Two processes may map their page 5 to entirely\ndifferent frames (isolation), or — for shared libraries — deliberately to the\nsame frame (sharing).\n\n$$\n% caption: Two processes each have a private virtual address space; their pages\n% caption: map, through per-process translations, into the one shared physical\n% caption: memory. The two page 0s land in different frames (isolation), while A's\n% caption: page 1 and B's page 0 deliberately share frame 2 - a shared library\n% caption: mapped at different virtual addresses. Frame 1 is currently free.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  pg\u002F.style={draw, minimum width=15mm, minimum height=6mm, inner sep=0pt},\n  fr\u002F.style={draw, minimum width=15mm, minimum height=6mm, inner sep=0pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % process A virtual pages (left top)\n  \\node[anchor=south] at (-4,2.3) {pro\\\u002Fcess A};\n  \\node[pg] (a0) at (-4,1.7) {page 0};\n  \\node[pg] (a1) at (-4,1.0) {page 1};\n  % process B virtual pages (left bottom)\n  \\node[anchor=south] at (-4,-0.5) {pro\\\u002Fcess B};\n  \\node[pg] (b0) at (-4,-1.1) {page 0};\n  \\node[pg] (b1) at (-4,-1.8) {page 1};\n  % physical frames (right)\n  \\node[anchor=south] at (2.4,2.3) {physical memory};\n  \\node[fr] (f0) at (2.4,1.7) {frame 0};\n  \\node[fr] (f1) at (2.4,1.0) {frame 1};\n  \\node[fr, fill=acc!8] (f2) at (2.4,0.3) {frame 2};\n  \\node[fr] (f3) at (2.4,-0.4) {frame 3};\n  % mappings (monotone: no crossings; f2 shared by both processes)\n  \\draw[->,acc] (a0.east) -- (f0.west);\n  \\draw[->,acc] (a1.east) -- ([yshift=1.5mm]f2.west);\n  \\draw[->] (b0.east) -- ([yshift=-1.5mm]f2.west);\n  \\draw[->] (b1.east) -- (f3.west);\n\\end{tikzpicture}\n$$\n\n## From Atlas to five-level paging\n\nVirtual memory is one of the oldest ideas in computer architecture that is still\nexactly as described here, and the history explains why the design looks the way\nit does.\n\nThe mechanism was invented on the **Atlas** computer at the University of\nManchester (Kilburn, Edwards, Lanigan, and Sumner, \"One-Level Storage System,\"\n1962, _IRE Trans._). Atlas gave programmers a single flat store of 1 M words\nwhile backing it with 16 K words of core and a drum, paging between them\nautomatically — the \"one-level storage\" of the title is precisely the convenient\nfiction this lesson opened with. Every element here, the page, the page fault, the\nautomatic fetch from backing store, is in that paper. What Atlas lacked was a\nfast way to do the lookup on every reference; that arrived as the **translation\nlookaside buffer**, and its principle is the third lesson of this module.\n\nThe design also keeps expanding along the one axis the arithmetic exposes: address\nwidth. This lesson's 48-bit x86-64 space ($2^{48}$ = 256 TB) was generous when it\nshipped, but large servers outgrew it, so Intel and AMD added **5-level paging**\n(a fifth table level lifting virtual addresses to 57 bits, $2^{57}$ = 128 PB),\nsupported in Linux since 2017 and shipping on Ice Lake servers. The\n[page-table lessons](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults)\nthat follow show why adding reach is as cheap as adding one more level to the\nwalk. And the isolation this lesson credits to \"no virtual address maps there\"\nhas a hardware caveat: the **Meltdown** attack (Lipp et al., 2018,\nUSENIX Security) showed that speculative execution could momentarily read across\nthe protection boundary the page table is supposed to enforce, and the fix,\n**kernel page-table isolation**, gives the kernel its own set of page tables so\na user process's tables cannot even name kernel memory — protection by\nconstruction, taken one level further than this lesson's version.\n\n> **Takeaway.** Each process emits **virtual addresses** into its own space; the\n> **MMU** translates every one into a **physical address** in the single shared\n> DRAM. Translation works on **pages** (size $P = 2^p$): the high **VPN** is\n> looked up and replaced by a **PPN**, while the low **VPO** is copied through\n> unchanged as the **PPO** — same size, same alignment, so the offset never\n> moves. On the 14-bit example machine, `0x03D4` splits into VPN `0x0F` and\n> offset `0x14`, and PPN `0x0D` makes the physical address `0x354`. A resident\n> page is a **page hit**, handled entirely in hardware; a missing one is a\n> **page fault**, handled by the OS, after which the instruction restarts. The\n> whole arrangement buys a cache for disk, painless memory management, and\n> protection.\n\nThe mapping from VPN to PPN lives in a structure the MMU consults on every access:\nthe [page table](\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults),\nand what happens when a page is not in DRAM at all.\n",{"text":2361,"minutes":2362,"time":2363,"words":2364},"12 min read",11.9,714000,2380,{"title":230,"description":2352},[2367,2370],{"book":2368,"ref":2369},"Bryant & O'Hallaron","CS:APP — §9 Virtual Memory",{"book":2371,"ref":2372},"Bistriceanu","Computer Architecture Notes — §10 Virtual Memory","available","03.computer-architecture\u002F07.virtual-memory\u002F01.address-spaces-and-translation",[225],"zRFthdk27Ld74rd1n8fYjHQ22ZiM0owXjkKt9jJJp-o",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2378,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2379,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2380,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2381,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2382,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2383,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2384,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2385,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2386,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2387,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2388,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2389,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2390,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2391,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2392,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2393,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2394,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2395,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2396,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2397,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2398,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2399,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2400,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2401,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2402,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2403,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2404,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2405,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2406,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2407,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2408,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2409,"\u002Falgorithms\u002Fsequences\u002Ftries":2410,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2411,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2412,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2413,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2414,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2415,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2416,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2417,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2418,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2419,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2420,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2421,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2422,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2423,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2424,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2425,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2426,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2427,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2428,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2429,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2430,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2431,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2432,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2433,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2434,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2435,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2436,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2437,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2438,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2439,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2440,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2441,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2442,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2443,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2444,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2445,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2446,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2447,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2448,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2449,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2450,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2451,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2452,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2453,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2454,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2455,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2456,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2457,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2458,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2459,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2460,"\u002Falgorithms":2461,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2462,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2463,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2464,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2465,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2466,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2467,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2468,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2469,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2470,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2471,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2472,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2473,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2474,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2475,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2476,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2477,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2478,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2479,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2480,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2481,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2482,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2483,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2484,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2485,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2486,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2487,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2488,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2489,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2490,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2491,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2492,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2493,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2494,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2495,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2476,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2496,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2497,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2498,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2466,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2499,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2500,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2501,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2502,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2503,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2504,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2505,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2506,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2507,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2508,"\u002Fcalculus":2509,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2510,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2511,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2512,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2513,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2514,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2515,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2516,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2517,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2518,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2519,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2520,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2521,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2522,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2523,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2524,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2525,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2526,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2527,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2528,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2529,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2530,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2531,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2532,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2533,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2534,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2535,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2536,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2537,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2538,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2539,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2540,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2541,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2542,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2543,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2544,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2545,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2546,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2547,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2548,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2549,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2550,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2551,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2552,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2553,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2554,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2555,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2556,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2557,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2558,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2559,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2560,"\u002Fmechanics":2561,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2562,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2563,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2564,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2565,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2566,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2567,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2568,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2569,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2570,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2571,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2572,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2573,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2550,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2574,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2575,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2576,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2546,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2411,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2577,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2537,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2578,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2579,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2580,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2581,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2582,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2583,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2584,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2585,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2586,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2511,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2587,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2588,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2589,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2590,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2591,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2592,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2593,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2594,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2529,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2528,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2595,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2596,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2597,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2598,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2599,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2600,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2601,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2602,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2603,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2555,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2553,"\u002Felectricity-and-magnetism":2604,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2605,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2606,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2607,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2608,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2609,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2610,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2611,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2612,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2613,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2463,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2614,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2615,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2467,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2616,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2617,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2618,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2619,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2620,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2621,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2622,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2623,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2624,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2625,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2626,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2627,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2628,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2629,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2630,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2631,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2632,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2633,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2634,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2635,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2502,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2636,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2637,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2638,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2639,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2640,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2641,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2642,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2643,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2644,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2645,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2646,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2647,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2648,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2649,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2650,"\u002Flinear-algebra":2651,"\u002Ftheory-of-computation":2652,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2653,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2654,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2655,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2656,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2657,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2658,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2659,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2660,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2661,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2662,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2663,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2664,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2665,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2666,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2667,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2668,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2669,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2670,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2671,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2672,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2673,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2674,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2675,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2676,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2677,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2678,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2679,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2680,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2681,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2682,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2683,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2684,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2685,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2686,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2687,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2688,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2689,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2364,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2690,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2691,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2692,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2693,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2694,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2695,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2696,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2697,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2698,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2699,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2700,"\u002Fcomputer-architecture":2652,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2701,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2702,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2703,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2467,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2704,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2466,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2473,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2705,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2706,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2507,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2707,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2708,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2709,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2710,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2711,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2712,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2713,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2714,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2715,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2716,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2717,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2718,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2713,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2719,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2720,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2721,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2722,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2723,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2724,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2725,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2726,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2727,"\u002Fdifferential-equations":2728,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2729,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2730,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2731,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2732,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2612,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2733,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2734,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2735,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2736,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2737,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2738,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2482,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2739,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2740,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2741,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2742,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2743,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2744,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2745,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2746,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2747,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2748,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2703,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2749,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2750,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2751,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2752,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2753,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2633,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2754,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2755,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2643,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2756,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2757,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2758,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2759,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2760,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2761,"\u002Frelativity":2762,"\u002Fphysical-computing":2652,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2763,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2742,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2764,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2765,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2766,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2767,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2768,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2769,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2770,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2718,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2643,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2771,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2772,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2773,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2774,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2770,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2775,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2750,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2504,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2776,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2777,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2484,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2778,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2779,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2780,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2781,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2782,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2783,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2784,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2785,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2786,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2742,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2787,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2788,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2789,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2776,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2465,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2790,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2791,"\u002Fquantum-mechanics":2792,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2726,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2793,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2794,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2616,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2795,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2502,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2796,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2797,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2639,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2748,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2798,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2799,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2800,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2801,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2802,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2775,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2803,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2609,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2804,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2805,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2463,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2806,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2807,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2764,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2492,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2643,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2808,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2809,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2628,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2752,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2810,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2811,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2812,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2648,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2813,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2814,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2815,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2815,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2816,"\u002Freal-analysis":2817,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2818,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2819,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2820,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2821,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2822,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2823,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2824,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2825,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2826,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2827,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2791,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2828,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2820,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2737,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2829,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2830,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2831,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2832,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2833,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2834,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2835,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2836,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2830,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2837,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2806,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2838,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2839,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2840,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2841,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2842,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2843,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2844,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2845,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2846,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2847,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2481,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2848,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2849,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2722,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2850,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2851,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2779,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2851,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2852,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2853,"\u002Fabstract-algebra":2854,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2855,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2856,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2857,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2858,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2859,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2771,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2860,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2861,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2862,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2863,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2864,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2865,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2866,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2606,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2734,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2481,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2867,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2465,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2868,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2869,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2503,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2796,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2870,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2871,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2872,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2873,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2874,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2875,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2876,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2877,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2878,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2879,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2880,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2881,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2882,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2883,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2827,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2884,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2885,"\u002Fatomic-physics":2886,"\u002Fdatabases":2652,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2887,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2888,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2889,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2818,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2890,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2891,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2892,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2893,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2894,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2895,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2896,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2897,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2898,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2899,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2900,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2901,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2902,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2903,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2904,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2905,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2906,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2907,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2908,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2909,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2900,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2910,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2911,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2912,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2913,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2914,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2859,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2915,"\u002Fcategory-theory":2916,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2917,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2918,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2919,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2920,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2921,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2922,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2881,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2923,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2924,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2925,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2926,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2927,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2928,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2929,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2930,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2931,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2932,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2933,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2934,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2935,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2936,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2937,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2938,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2939,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2940,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2941,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2942,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2943,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2944,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2945,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2946,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2947,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2948,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2949,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2893,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2950,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2951,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2952,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2953,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2954,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2955,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2956,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2446,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2957,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2958,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2682,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2959,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2960,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2961,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2962,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2963,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2964,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2965,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2966,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2967,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2968,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2969,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2970,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2655,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2971,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2972,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2973,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2974,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2691,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2975,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2976,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2977,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2978,"\u002Fdeep-learning":2652,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2979,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2776,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2980,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2981,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2982,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2983,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2984,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2985,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2986,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2987,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2823,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2988,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2989,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2990,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2710,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2504,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2991,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2992,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2993,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2638,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2994,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2995,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2715,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2643,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2996,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2612,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2482,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2498,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2997,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2998,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2999,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2630,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":3000,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2492,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":3001,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":3002,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3003,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":3004,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2825,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":3005,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":3006,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":3007,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":3008,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2771,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":3009,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2749,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":3010,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2611,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":3011,"\u002Fstatistical-mechanics":3012,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":3013,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2477,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2736,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":3014,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":3015,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":3016,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":3017,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":3018,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":3019,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2610,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":3020,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":3021,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":3022,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":3023,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2752,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":3024,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":3025,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":3026,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":3027,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":3028,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2807,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2751,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":3029,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":3030,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":3031,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":3032,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2742,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":3033,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":3034,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2979,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2879,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2607,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":3035,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2473,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":3036,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":3037,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2618,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":3038,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2872,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":3039,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2465,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":3040,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2476,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":3041,"\u002Fcondensed-matter":2792,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":3042,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":3043,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":3044,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":3045,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2490,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":3046,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":3047,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2490,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":3048,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2902,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":3049,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":3050,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":3051,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":3049,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":3052,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":3053,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":3054,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":3055,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":3056,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":3057,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":3058,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":3059,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2980,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":3060,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":3053,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":3061,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":3062,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2695,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":3063,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2880,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":3064,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":3065,"\u002Flogic":3066,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":3067,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":3068,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2682,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":3069,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":3070,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":3071,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":3072,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":3062,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":3073,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":3074,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":3075,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2973,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":3076,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":3077,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":3078,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":3079,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":3080,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2698,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":3081,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":3082,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":3083,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":3084,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2889,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":3085,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":3061,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":3086,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":3087,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":3088,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2709,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":3089,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2839,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":3090,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":3091,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2672,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":3092,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":3093,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":3094,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":3095,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":3096,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2949,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":3097,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":3098,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":3099,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2984,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":3100,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":3101,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":3102,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2698,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2765,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":3103,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":3104,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":3105,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":3106,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":3107,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":3108,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":3109,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":3110,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":3111,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":3112,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":3113,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":3114,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":3115,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":3116,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":3117,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":3118,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":3119,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":3120,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":3121,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":3122,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":3123,"\u002Freinforcement-learning":2652,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":3124,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":3125,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":3126,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":3127,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":3128,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":3129,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":3130,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":3131,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":3132,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":3133,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":3134,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":3135,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":3136,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2978,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2833,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":3137,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":3138,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":3139,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":3140,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":3141,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":3142,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2960,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":3143,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":3144,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":3145,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":3146,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":3147,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":3148,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":3149,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":3150,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":3151,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":3152,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":3153,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":3154,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2892,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":3144,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":3155,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2433,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":3156,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":3157,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":3158,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":3159,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":3160,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2941,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":3161,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":3162,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":3163,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":3164,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":3165,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":3166,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":3167,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":3168,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":3169,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":3170,"\u002Fartificial-intelligence":2652,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2908,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":3171,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2469,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2467,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":3002,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":3172,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2495,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2804,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":3173,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":3174,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":3175,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2864,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":3176,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":3177,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":3178,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":3063,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":3179,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":3180,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2479,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2707,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":3181,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2808,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":3182,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":3183,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2703,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2791,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":3184,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":3185,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":3186,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2474,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2848,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2710,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":3187,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2758,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2822,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":3188,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":3189,"\u002Fnuclear-physics":3190,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":3191,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":3192,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2829,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":3193,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":3194,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":3195,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2678,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":3196,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":3197,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2974,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":3198,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":3143,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":3199,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":3200,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":3201,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":3202,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":3203,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":3204,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":3205,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2656,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":3206,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":3207,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":3149,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":3208,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":3209,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":3210,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":3211,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":3212,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":3213,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":3214,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":3215,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":3073,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":3216,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":3217,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":3218,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":3219,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":3220,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":3221,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":3222,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":3223,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":3224,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":3225,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":3226,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":3227,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2927,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":3094,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2684,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":3228,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":3229,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":3230,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":3231,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2941,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":3232,"\u002Fnatural-language-processing":2652,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":3233,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2849,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":3234,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2994,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":3235,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":3236,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":3184,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":3237,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":3238,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2799,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2502,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":3239,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2753,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":3240,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2786,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":3241,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":3040,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":3242,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":3243,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":3009,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":3244,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2473,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":3245,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":3246,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":3247,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2790,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":3006,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":3248,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":3249,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2865,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":3250,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2910,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":3251,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":3252,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2799,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2832,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":3253,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":3254,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":3255,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2888,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":3256,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2630,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":3257,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2732,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":3258,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":3259,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":3056,"\u002Fparticle-physics":3260,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2850,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":3004,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":3261,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2789,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":3262,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2849,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2761,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":3263,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":3264,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":3265,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":3266,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":3267,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":3055,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2986,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":3268,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":3269,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":3270,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":3271,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":3183,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":3272,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2745,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2808,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2790,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":3273,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2874,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2491,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3274,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":3275,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":3005,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":3276,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":3277,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":3278,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":3279,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2472,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":3280,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":3281,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2732,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":3282,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":3283,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2998,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2654,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":3284,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":3285,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2910,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2896,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2908,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":3005,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":3286,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2471,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2663,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":3287,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2749,"\u002Fastrophysics-cosmology":2854,"\u002Fcolophon":3288,"\u002F":2652},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":3290,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":3294,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":3298,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":3302,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":3306,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":3310,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":3314,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":3319,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":3323,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":3327,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":3331,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":3336,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":3340,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":3344,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":3348,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":3353,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":3357,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":3361,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":3365,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":3369,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":3373,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":3377,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":3381,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":3385,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":3389,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":3393,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":3397,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":3402,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":3406,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3410,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3414,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3418,"\u002Falgorithms\u002Fsequences\u002Ftries":3422,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3426,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3430,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3435,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3439,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3443,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3447,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3451,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3455,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3459,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3463,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3467,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3471,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3475,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3479,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3483,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3487,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3492,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3496,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3500,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3504,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3508,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3513,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3517,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3521,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3525,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3529,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3533,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3537,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3541,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3545,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3549,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3553,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3558,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3562,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3566,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3570,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3575,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3579,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3583,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3587,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3591,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3595,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3599,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3604,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3608,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3612,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3616,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3621,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3625,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3629,"\u002Falgorithms":3633,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3636,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3641,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3645,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3649,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3653,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3658,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3662,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3666,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3670,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3675,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3679,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3683,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3687,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3692,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3696,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3700,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3705,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3709,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3713,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3718,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3722,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3726,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3731,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3735,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3739,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3743,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3748,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3752,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3756,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3761,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3765,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3769,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3773,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3777,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3782,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3786,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3790,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3794,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3798,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3803,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3806,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3810,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3814,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3818,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3823,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3827,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3831,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3835,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3839,"\u002Fcalculus":3843,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3846,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3850,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3854,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3859,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3863,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3867,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3871,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3875,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3880,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3884,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3888,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3892,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3896,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3901,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3905,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3909,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3913,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3917,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3922,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3926,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3930,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3935,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3939,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3943,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3947,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3951,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3955,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3960,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3964,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3968,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3972,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3976,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3980,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3984,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3989,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3993,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3997,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":4001,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":4005,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":4009,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":4013,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":4017,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":4021,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":4025,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":4029,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":4033,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":4038,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":4042,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":4046,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":4050,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":4054,"\u002Fmechanics":4058,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":4061,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":4066,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":4070,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":4074,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":4078,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":4082,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":4087,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":4091,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":4096,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":4100,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":4104,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":4108,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":4112,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":4117,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":4121,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":4125,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":4129,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":4134,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":4138,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":4142,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":4147,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":4151,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":4155,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":4159,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":4163,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":4168,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":4172,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":4176,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":4180,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":4184,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":4188,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":4193,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":4197,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":4201,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":4205,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":4209,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":4213,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":4217,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":4221,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":4226,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":4230,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":4234,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":4238,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":4242,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":4247,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":4251,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":4255,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":4259,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":4263,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":4268,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":4272,"\u002Felectricity-and-magnetism":4276,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":4279,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":4284,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":4288,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":4292,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":4296,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":4300,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":4305,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":4309,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":4313,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":4317,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":4321,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":4326,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":4330,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":4334,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":4339,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":4343,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4347,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4351,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4355,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4359,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4363,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4368,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4372,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4376,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4380,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4384,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4388,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4392,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4397,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4401,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4405,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4409,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4413,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4417,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4422,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4426,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4430,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4434,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4438,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4443,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4447,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4451,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4455,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4459,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4463,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4468,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4472,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4476,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4480,"\u002Flinear-algebra":4484,"\u002Ftheory-of-computation":4487,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4490,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4491,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4492,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4493,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4494,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4495,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4496,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4497,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4498,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4499,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4500,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4501,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4502,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4503,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4504,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4505,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4506,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4507,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4508,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4509,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4510,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4511,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4512,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4513,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4514,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4515,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4516,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4517,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4518,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4519,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4520,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4521,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4522,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4523,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4524,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4525,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4526,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4527,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4528,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4529,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4530,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4531,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4532,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4533,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4534,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4535,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4536,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4537,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4538,"\u002Fcomputer-architecture":4539,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4542,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4546,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4550,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4555,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4559,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4563,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4567,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4571,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4575,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4580,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4584,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4588,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4592,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4596,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4600,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4605,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4609,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4613,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4618,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4622,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4627,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4631,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4635,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4640,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4644,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4649,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4653,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4657,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4662,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4666,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4670,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4675,"\u002Fdifferential-equations":4679,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4682,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4687,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4691,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4695,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4699,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4703,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4708,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4712,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4716,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4720,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4725,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4729,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4733,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4737,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4742,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4746,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4750,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4754,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4759,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4763,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4767,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4771,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4775,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4779,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4784,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4788,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4792,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4797,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4801,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4805,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4809,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4814,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4818,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4822,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4827,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4831,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4835,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4840,"\u002Frelativity":4844,"\u002Fphysical-computing":4847,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4850,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4855,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4859,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4863,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4867,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4872,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4876,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4880,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4885,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4889,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4893,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4897,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4901,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4905,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4910,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4914,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4918,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4922,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4926,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4930,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4935,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4939,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4943,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4947,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4951,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4955,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4959,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4964,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4968,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4972,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4977,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4981,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4985,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4990,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4994,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4999,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":5003,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":5007,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":5011,"\u002Fquantum-mechanics":5015,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":5018,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":5023,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":5027,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":5031,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":5035,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":5040,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":5044,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":5048,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":5052,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":5056,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":5060,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":5065,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":5069,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":5073,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":5077,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":5081,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":5085,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":5089,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":5093,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":5097,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":5101,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":5105,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":5110,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":5114,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":5118,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":5122,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":5127,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":5131,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":5135,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":5138,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":5142,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":5147,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":5151,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":5155,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":5159,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":5164,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":5168,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":5172,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":5176,"\u002Freal-analysis":5180,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":5183,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":5187,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":5191,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":5196,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":5200,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":5204,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":5208,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":5213,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":5217,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":5221,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":5225,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":5229,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":5233,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":5238,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":5242,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":5246,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":5250,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":5255,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":5259,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":5263,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":5267,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":5272,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":5276,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":5280,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":5285,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":5289,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":5293,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":5297,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":5302,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":5306,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":5310,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":5314,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":5319,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":5323,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":5327,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":5332,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":5336,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":5340,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":5344,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":5349,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":5353,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":5357,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":5361,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":5365,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":5370,"\u002Fabstract-algebra":5374,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":5377,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":5382,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":5386,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":5390,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":5394,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":5398,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":5403,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":5407,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5411,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5415,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5419,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5423,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5427,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5432,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5436,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5440,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5444,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5449,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5453,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5457,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5462,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5466,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5470,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5474,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5478,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5482,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5487,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5491,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5495,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5500,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5504,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5508,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5512,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5517,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5521,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5525,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5530,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5534,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5538,"\u002Fatomic-physics":5542,"\u002Fdatabases":5545,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5548,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5552,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5556,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5560,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5564,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5568,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5572,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5577,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5581,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5585,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5590,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5594,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5598,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5603,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5607,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5611,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5615,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5619,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5624,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5628,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5632,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5636,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5641,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5645,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5649,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5653,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5658,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5662,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5666,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5670,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5675,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5679,"\u002Fcategory-theory":5683,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5686,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5690,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5694,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5698,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5701,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5705,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5709,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5713,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5718,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5722,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5726,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5730,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5734,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5739,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5743,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5747,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5751,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5755,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5760,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5764,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5768,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5772,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5777,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5781,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5785,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5789,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5793,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5797,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5801,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5805,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5809,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5814,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5818,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5822,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5826,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5830,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5835,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5839,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5843,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5847,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5851,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5855,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5859,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5864,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5868,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5872,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5877,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5881,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5885,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5889,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5893,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5897,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5901,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5906,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5910,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5914,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5918,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5922,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5926,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5930,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5934,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5938,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5942,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5946,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5951,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5955,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5959,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5963,"\u002Fdeep-learning":5967,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5970,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5974,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5978,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5982,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5986,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5990,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5995,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5999,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":6003,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":6007,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":6012,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":6016,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":6020,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":6024,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":6029,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":6033,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":6037,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":6041,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":6045,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":6050,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":6054,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":6058,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":6063,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":6067,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":6071,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":6076,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":6080,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":6084,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":6088,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":6093,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":6097,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":6101,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":6105,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":6109,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":6113,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":6118,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":6122,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":6126,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":6130,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":6135,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":6139,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":6143,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":6148,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":6152,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":6156,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":6160,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":6164,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":6169,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":6173,"\u002Fstatistical-mechanics":6177,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":6180,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":6185,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":6189,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":6193,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":6197,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":6202,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":6206,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":6210,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":6214,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":6219,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":6223,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":6227,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":6231,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":6236,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":6240,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":6244,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":6248,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":6253,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":6257,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":6261,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":6265,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":6270,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":6274,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":6278,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":6282,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":6287,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":6291,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":6295,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":6299,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":6303,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":6308,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":6312,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":6317,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":6321,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":6325,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":6329,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":6334,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":6338,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":6342,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6346,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":6350,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6355,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":6359,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6363,"\u002Fcondensed-matter":6367,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6370,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6374,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6379,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6383,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":6387,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6391,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6395,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":6399,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6403,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6408,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6412,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6416,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6420,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6425,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6429,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6433,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6437,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6442,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6446,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6450,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6454,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6459,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6463,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6467,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6471,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6476,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6480,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6484,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6489,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6493,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6498,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6502,"\u002Flogic":6506,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6509,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6513,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6517,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6521,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6525,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6529,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6533,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6537,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6541,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6545,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6549,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6553,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6557,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6561,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6565,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6569,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6573,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6577,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6581,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6586,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6590,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6594,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6598,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6602,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6606,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6610,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6614,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6618,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6622,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6626,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6630,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6634,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6638,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6642,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6646,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6650,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6654,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6658,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6662,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6666,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6670,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6675,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6679,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6683,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6687,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6691,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6695,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6699,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6703,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6707,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6711,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6715,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6719,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6723,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6727,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6731,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6735,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6739,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6743,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6747,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6751,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6755,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6759,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6764,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6768,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6772,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6776,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6780,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6784,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6788,"\u002Freinforcement-learning":6792,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6794,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6798,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6802,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6806,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6810,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6815,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6819,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6823,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6827,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6831,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6835,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6839,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6843,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6847,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6851,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6855,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6859,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6864,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6868,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6872,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6876,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6880,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6884,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6888,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6892,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6896,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6900,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6904,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6908,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6913,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6917,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6921,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6925,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6929,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6933,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6937,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6940,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6944,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6948,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6953,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6957,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6961,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6965,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6968,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6972,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6976,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6980,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6985,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6989,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6993,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6997,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":7001,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":7005,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":7009,"\u002Fartificial-intelligence":7013,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":7016,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":7021,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":7025,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":7029,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":7033,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":7037,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":7042,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":7046,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":7050,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":7054,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":7059,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":7063,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":7067,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":7071,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":7076,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":7080,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":7085,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":7089,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":7094,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":7098,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":7102,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":7106,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":7111,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":7115,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":7119,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":7124,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":7128,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":7132,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":7137,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":7141,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":7146,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":7150,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":7154,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":7159,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":7163,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":7167,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":7171,"\u002Fnuclear-physics":7175,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":7178,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":7182,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":7186,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":7190,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":7194,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":7198,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":7203,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":7207,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":7211,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":7215,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":7220,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":7224,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":7228,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":7232,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":7236,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":7240,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":7244,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":7247,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":7250,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":7254,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":7258,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":7262,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":7267,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":7271,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":7275,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":7279,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":7283,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":7287,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":7291,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":7295,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":7299,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":7303,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":7307,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":7311,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":7315,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":7319,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":7323,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":7327,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":7331,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":7335,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":7339,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":7343,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":7347,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":7351,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7355,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7359,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7363,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":7367,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":7371,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":7375,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":7380,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7384,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":7388,"\u002Fnatural-language-processing":7392,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":7395,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7399,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":7403,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7407,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7412,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7416,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7420,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7424,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7429,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7433,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7437,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7441,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7446,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7450,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7454,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7458,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7463,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7467,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7471,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7476,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7480,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7484,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7488,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7493,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7497,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7501,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7505,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7510,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7514,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7518,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7522,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7527,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7531,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7535,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7539,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7543,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7548,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7552,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7556,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7561,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7565,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7569,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7573,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7577,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7581,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7585,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7589,"\u002Fparticle-physics":7593,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7596,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7601,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7605,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7609,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7614,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7618,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7622,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7626,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7631,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7635,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7639,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7643,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7648,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7652,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7656,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7660,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7665,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7669,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7673,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7677,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7682,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7686,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7690,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7695,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7699,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7703,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7707,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7711,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7715,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7719,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7723,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7727,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7732,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7736,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7740,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7744,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7749,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7753,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7757,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7761,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7765,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7770,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7774,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7777,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7781,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7785,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7790,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7794,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7798,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7802,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7806,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7810,"\u002Fastrophysics-cosmology":7814,"\u002Fcolophon":7817,"\u002F":7820},{"path":3291,"title":3292,"module":5,"summary":3293},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","An algorithm is a finite, mechanical recipe that transforms inputs into outputs. We define what counts as an algorithm, how we write one down, and the three things we always ask of it: is it correct, is it fast, and can we prove it.\n",{"path":3295,"title":3296,"module":5,"summary":3297},"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques","Proof Techniques","An algorithm without a proof is a conjecture. This lesson collects the handful\nof arguments that certify the algorithms in this course — direct proof,\ncontrapositive, contradiction, ordinary and strong induction, construction, and\ndisproof by counterexample — each with a small worked\nexample and a picture. Loop invariants are a form of induction,\nrecursive correctness falls to strong induction, and the classic broken proofs\n(all horses are the same color) show where inductions go wrong.\n",{"path":3299,"title":3300,"module":5,"summary":3301},"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis","Asymptotic Analysis","We measure an algorithm's running time as a function of its input size, then strip away machine-specific constants and lower-order terms to compare algorithms cleanly. This lesson defines the RAM model and the $O$, $\\Omega$, $\\Theta$, $o$, and $\\omega$ notations, proves the polynomial theorem, and shows how to rank growth rates with the limit test, L'Hôpital, base substitution, and the logarithm identities the arguments lean on.\n",{"path":3303,"title":3304,"module":5,"summary":3305},"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis","Growth Rates and Loop Analysis","With the asymptotic notations in hand, we rank the functions that actually arise in running times — from constant to factorial — proving the orderings between rungs, then read the running time of a loop nest straight off the page. Sequential blocks add, nested loops multiply, index scaling gives logarithms; a worked trace and a tour of cache-aware and galactic algorithms close the lesson.\n",{"path":3307,"title":3308,"module":5,"summary":3309},"\u002Falgorithms\u002Ffoundations\u002Frecurrences","Recurrences and the Master Theorem","Recursive and divide-and-conquer algorithms describe their own running time with a recurrence: $T(n)$ in terms of $T$ on smaller inputs. We solve recurrences three ways — drawing the recursion tree, guessing-and-verifying by induction, and applying the Master Theorem — using merge sort as the running example, then handle unequal splits with Akra–Bazzi.\n",{"path":3311,"title":3312,"module":5,"summary":3313},"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis","Amortized Analysis","Some operations are occasionally expensive but cheap on average across any\nsequence. Amortized analysis bounds the average cost per operation over a\nworst-case sequence — not an expectation — so a rare costly step is paid for by\nthe many cheap ones around it. This lesson develops the aggregate, accounting,\nand potential methods on dynamic-array doubling, the binary counter, and a\nstack with multipop.\n",{"path":3315,"title":3316,"module":3317,"summary":3318},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort","Divide and Conquer & Mergesort","Divide & Conquer","Divide and conquer breaks a problem into smaller copies of itself, solves\nthem recursively, and stitches the answers together. We meet the paradigm\nthrough mergesort — its merge step, its loop-invariant proof, and the\nrecursion tree that pins its cost at $\\Theta(n\\log n)$ — then count inversions\nwith the same machinery and distill the whole pattern into the master theorem.\n",{"path":3320,"title":3321,"module":3317,"summary":3322},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort","Quicksort","Quicksort sorts in place by partitioning around a pivot and recursing on\neach side. We give Lomuto and Hoare partitioning with a correctness\ninvariant, see why a bad pivot costs $\\Theta(n^2)$ while a balanced one gives\n$\\Theta(n\\log n)$, and prove that randomizing the pivot makes the expected\ncost $\\Theta(n\\log n)$ on every input.\n",{"path":3324,"title":3325,"module":3317,"summary":3326},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection","Linear-Time Selection","Finding the $k$-th smallest element looks like it should require sorting, but\nit does not. Quickselect adapts quicksort's partition to recurse on just one\nside, achieving expected $O(n)$. The median-of-medians algorithm guarantees a\ngood pivot with the groups-of-five trick, pushing the worst case down to a\nprovable $O(n)$.\n",{"path":3328,"title":3329,"module":3317,"summary":3330},"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication","Fast Multiplication","Grade-school multiplication is $\\Theta(n^2)$, yet divide and conquer beats it.\nKaratsuba multiplies $n$-bit integers with three half-size products instead of\nfour, giving $\\Theta(n^{\\log_2 3})$, and Strassen multiplies matrices with\nseven block products instead of eight, giving $\\Theta(n^{\\log_2 7})$. Both\nspend cheap additions to save an expensive multiplication, and the master\ntheorem quantifies the savings.\n",{"path":3332,"title":3333,"module":3334,"summary":3335},"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort","Heaps and Heapsort","Sorting & Order Statistics","A binary heap is a tree we store flat in an array, with index arithmetic\nstanding in for pointers. We build the max-heap property bottom-up in $O(n)$\ntime, sort in place in $\\Theta(n\\log n)$ by repeatedly extracting the maximum,\nand reuse the same structure to implement a priority queue.\n",{"path":3337,"title":3338,"module":3334,"summary":3339},"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds","Lower Bounds for Comparison Sorting","Every sort we have seen runs in $\\Omega(n\\log n)$, and that is no accident.\nModeling a sort as a decision tree of comparisons, we show any such tree must\nhave $n!$ leaves, forcing height $\\ge \\log_2(n!) = \\Omega(n\\log n)$ — a bound\nno comparison sort beats in the worst case, on average, or with randomness.\n",{"path":3341,"title":3342,"module":3334,"summary":3343},"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting","Sorting in Linear Time","The $\\Omega(n\\log n)$ barrier only binds algorithms that compare. By instead\nusing keys as array indices we slip past it: counting sort runs in\n$\\Theta(n+k)$ and is stable, radix sort layers it digit by digit, and bucket\nsort averages $\\Theta(n)$ on uniform data. We see exactly when each applies.\n",{"path":3345,"title":3346,"module":3334,"summary":3347},"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting","External Sorting","When the data dwarfs main memory, the cost that matters is no longer\ncomparisons but block transfers to and from disk. External merge sort sorts\nmemory-sized runs, then folds them together with a heap-driven $k$-way merge in\n$\\Theta(\\log_k(N\u002FM))$ passes. Larger fan-out cuts passes; replacement selection\nbuilds longer runs to cut them further.\n",{"path":3349,"title":3350,"module":3351,"summary":3352},"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures","Elementary Data Structures","Data Structures","Every container is built one of two ways: **contiguous** in an array, or\n**linked** through pointers. We trade cache-friendly random access against\n$O(1)$ splicing, derive the **amortized $O(1)$** append of a doubling dynamic\narray, and assemble the two ordered access disciplines — the LIFO **stack** and\nthe FIFO **queue** (with its generalization, the **deque**) — on top of both.\n",{"path":3354,"title":3355,"module":3351,"summary":3356},"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables","Hash Tables","A hash table implements the dictionary — insert, search, delete — in expected\n$O(1)$ time by scattering keys across an array with a hash function. We build\nup from direct addressing, handle collisions by chaining and by open\naddressing, analyze the load factor $\\alpha$, and see how universal hashing\nachieves its expected-time guarantee against every input.\n",{"path":3358,"title":3359,"module":3351,"summary":3360},"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees","Binary Search Trees","A binary search tree keeps keys ordered so that every operation follows a\nsingle root-to-leaf path. We state the BST property, trace search, insert,\nsuccessor, and all three delete cases on concrete trees, prove the inorder\nwalk sorts, and note the drawback — every operation costs $O(h)$, and a\ncarelessly built tree degrades to height $h = \\Theta(n)$, motivating balance.\n",{"path":3362,"title":3363,"module":3351,"summary":3364},"\u002Falgorithms\u002Fdata-structures\u002Favl-trees","AVL Trees","An AVL tree is the first balanced BST: at every node the two subtrees' heights\ndiffer by at most $1$. A Fibonacci-style minimal-node argument forces height\n$h \\le 1.44\\log_2 n = O(\\log n)$, so search, insert, and delete are all\n$O(\\log n)$. Insertion rebalances with at most one of four rotation cases\n(LL, RR, LR, RL); deletion may rotate all the way to the root.\n",{"path":3366,"title":3367,"module":3351,"summary":3368},"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees","Balanced Search Trees","An ordinary BST can degrade to height $\\Theta(n)$; balanced search trees\nguarantee $h = O(\\log n)$ by maintaining invariants and repairing them after\nevery update. We meet rotations, the local restructuring primitive, then\nred-black trees, whose color invariants force logarithmic height, and finally\nB-trees, which trade tall-and-thin for short-and-wide to win on disk.\n",{"path":3370,"title":3371,"module":3351,"summary":3372},"\u002Falgorithms\u002Fdata-structures\u002Funion-find","Disjoint Sets (Union-Find)","The disjoint-set data structure tracks a partition of elements into groups,\nanswering \"are these two in the same group?\" and merging groups on demand. A\nforest of parent pointers, sped up by union by rank and path compression,\ndrives every operation to near-constant $O(\\alpha(n))$ amortized time — the\nstructure behind connectivity queries and Kruskal's minimum spanning tree.\n",{"path":3374,"title":3375,"module":3351,"summary":3376},"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees","Fenwick & Segment Trees","A prefix-sum array answers a range sum in $O(1)$ but pays $O(n)$ per update;\na plain array updates in $O(1)$ but pays $O(n)$ per range sum. Fenwick and\nsegment trees give us _both_ in $O(\\log n)$. The Fenwick (binary indexed) tree\nis a tiny array keyed by the low bit; the segment tree is a general balanced\ntree over canonical ranges that handles any associative aggregate and, with\nlazy propagation, range updates too.\n",{"path":3378,"title":3379,"module":3351,"summary":3380},"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures","Spatial Data Structures","A balanced BST orders keys on a line, but points in the plane have no single\nnatural order. Quadtrees subdivide space recursively into quadrants; k-d trees\nsplit on alternating coordinates at the median. Both make range and\nnearest-neighbour queries fast by carving the plane into boxes a query can\nprune away. Range trees nest a y-tree in an x-tree for fast orthogonal range\nreporting; interval trees index intervals to answer stabbing queries.\n",{"path":3382,"title":3383,"module":3351,"summary":3384},"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures","Skip Lists & Probabilistic Structures","Balanced trees achieve $O(\\log n)$ with rotations and invariants; randomization\ngives the same bound far more simply. A skip list is a layered linked list whose\nexpress lanes are chosen by coin flips, giving expected $O(\\log n)$ search and\ninsert with no rebalancing. A Bloom filter trades exactness for space: a bit\narray and a few hashes answer set membership with no false negatives and a\ntunable false-positive rate, but cannot delete.\n",{"path":3386,"title":3387,"module":3351,"summary":3388},"\u002Falgorithms\u002Fdata-structures\u002Fb-trees","B-Trees","When data lives on disk, the cost that dominates is block transfers, not\ncomparisons — and a binary tree of a billion keys is thirty reads deep. A\nB-tree of minimum degree $t$ is short and wide: $t-1$ to $2t-1$ keys per node,\nall leaves at one depth, height $O(\\log_t n)$. Insertion splits a full node on\nthe way down and pushes its median up; deletion borrows or merges to keep nodes\nfull enough. High fan-out is what minimizes disk I\u002FO.\n",{"path":3390,"title":3391,"module":3351,"summary":3392},"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms","Data-Stream Algorithms","Most of this course assumes data sits in fast memory, addressable at will.\nExternal sorting relaxed that to a re-readable disk. The streaming model goes\nfurther: items arrive one at a time, are seen once, and must be discarded, with\nonly sublinear, often polylogarithmic, memory. In exchange, the answers are\napproximate and probabilistic. We set up the model, then meet reservoir\nsampling for a uniform sample of an unknown-length stream and Morris counting\nfor an approximate tally in doubly-logarithmic space.\n",{"path":3394,"title":3395,"module":3351,"summary":3396},"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches","Streaming Sketches","Sampling and counting kept a random subset or a single approximate tally.\nSketches go further: fixed, tiny summaries that answer questions about a\nstream's frequencies. We meet the Count–Min sketch for point frequency\nestimation, Misra–Gries for heavy hitters, and HyperLogLog for distinct\ncounts, each trading a controlled error for space that never grows with the\nstream.\n",{"path":3398,"title":3399,"module":3400,"summary":3401},"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows","Two Pointers & Sliding Windows","Sequences & Strings","A family of array idioms that collapse an obvious $O(n^2)$ scan into a single\n$O(n)$ pass by maintaining an invariant as indices move. We meet two pointers\n(converging on a sorted array, and a fast\u002Fslow pair for in-place rewriting)\nand the sliding window (fixed and variable size, amortized $O(n)$). The\ncompanion lesson on prefix sums picks up where the window's positivity\nassumption fails.\n",{"path":3403,"title":3404,"module":3400,"summary":3405},"\u002Falgorithms\u002Fsequences\u002Fprefix-sums","Prefix Sums & Difference Arrays","Prefix sums precompute the running total once so that any range-sum query is a\nsingle subtraction, $P[r{+}1]-P[l]$, in $O(1)$. A hash map of prefix\nfrequencies then counts subarrays summing to $k$ in $O(n)$ — even with negative\nentries, where the sliding window fails. The difference-array dual turns $m$\nrange-adds into $O(m+n)$, and the whole idea lifts to 2-D rectangle sums by\ninclusion–exclusion.\n",{"path":3407,"title":3408,"module":3400,"summary":3409},"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks","Monotonic Stacks & Queues","A **monotonic stack** keeps its contents sorted by popping every element that\nwould break the order before each push — turning a family of \"previous\u002Fnext\ngreater (or smaller) element\" questions into a single $O(n)$ scan. We trace\nthe next-greater-element routine push by push and prove its amortized bound,\nfuse two such scans to measure the **largest rectangle in a histogram** in\nlinear time, extend the idea to a **monotonic deque** that streams the\n**sliding-window maximum** in $O(n)$, and use asymmetric tie-breaking to\ncount **subarray minimums** without double-counting duplicates.\n",{"path":3411,"title":3412,"module":3400,"summary":3413},"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer","Binary Search on the Answer","Binary search locates the boundary of a **monotone predicate** $p(x)$ in\n$O(\\log(\\text{range}))$ probes; sorted arrays are only one instance. We first\nestablish the half-open `while (lo \u003C hi)` template for $\\textsc{lower\\_bound}$\nand $\\textsc{upper\\_bound}$, then generalize to \"binary search on the answer\":\nwhenever feasibility is monotone in a numeric parameter, we binary search the\nparameter itself, calling a feasibility check at each step.\n",{"path":3415,"title":3416,"module":3400,"summary":3417},"\u002Falgorithms\u002Fsequences\u002Fstring-matching","String Matching: Naive & Rabin–Karp","Given a text $T$ of length $n$ and a pattern $P$ of length $m$, find every\noccurrence of $P$ in $T$. The naive scan costs $O(nm)$ and re-reads text it has\nalready seen. Rabin–Karp fixes the first inefficiency with a **rolling hash**:\neach length-$m$ window is summarized by one number, updated in $O(1)$ per slide,\nverified on a hash match to kill collisions, for expected $O(n+m)$. A companion\nlesson removes the re-reading entirely with KMP and the Z-function.\n",{"path":3419,"title":3420,"module":3400,"summary":3421},"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function","String Matching: KMP & the Z-Function","Two linear-time matchers that beat Rabin–Karp's expected bound with a\nworst-case guarantee and no randomness. KMP precomputes a **failure function**\n$\\pi$ so a mismatch slides the pattern by $q-\\pi[q-1]$ and the text pointer\nnever backs up, for $O(n+m)$. The **Z-function** computes the longest\nprefix-match at every position via the Z-box, giving the same bound from a\ndifferent angle; the two encodings of a string's self-overlap convert freely.\n",{"path":3423,"title":3424,"module":3400,"summary":3425},"\u002Falgorithms\u002Fsequences\u002Ftries","Tries & Prefix Trees","A **trie** stores a set of strings in a tree keyed by _characters_, so that\ninsert, search, delete, and prefix-test all run in $O(L)$ time — the length\nof the key, _independent of how many keys are stored_. Shared prefixes are\nstored once, which makes tries the natural structure for autocomplete,\nwildcard dictionaries, board word-search, and — over the alphabet $\\{0,1\\}$\n— the maximum-XOR-pair problem. Radix (Patricia) trees compress the chains.\n",{"path":3427,"title":3428,"module":3400,"summary":3429},"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick","Suffix Arrays, LCP & Aho–Corasick","A **suffix array** sorts all $n$ suffixes of a string, indexing every substring\nat once; built in $O(n\\log n)$, it locates a pattern by binary search in\n$O(m\\log n)$. Its companion **LCP array** (Kasai's $O(n)$ algorithm) counts\ndistinct substrings and finds the longest repeated substring. **Aho–Corasick**\ngeneralises KMP to a whole dictionary: a trie of patterns plus failure links\nscans the text once in $O(\\text{text} + \\text{matches})$ to report every\noccurrence of every pattern. Manacher's algorithm finds all palindromic\nsubstrings in $O(n)$.\n",{"path":3431,"title":3432,"module":3433,"summary":3434},"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal","Graph Representations and Traversal","Graphs","A graph captures _relationships_ — who connects to whom. We fix the\nvocabulary, weigh the two standard representations (adjacency list versus\nmatrix), then meet the single search skeleton behind everything that follows:\nWhatever-First-Search, and its breadth-first reading, which finds shortest\npaths by number of edges in $O(V + E)$.\n",{"path":3436,"title":3437,"module":3433,"summary":3438},"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search","Depth-First Search","Swap BFS's queue for a stack and the search plunges instead of fanning out.\nDepth-first search stamps every vertex with discovery and finish times that\nnest like parentheses, classifies each edge as tree, back, forward, or cross,\nand — through the back edge — decides in one pass whether a graph has a cycle.\nThese timestamps underpin topological sort, strong\nconnectivity, and the rest of this module.\n",{"path":3440,"title":3441,"module":3433,"summary":3442},"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc","Topological Sort and Strong Connectivity","Directed acyclic graphs model dependencies: tasks that must precede other\ntasks. A _topological order_ lays such a graph out in a line so every edge\npoints forward, and depth-first finish times yield one almost for free.\nWe then ask the harder question for graphs _with_ cycles: which vertices can\nreach each other? The answer is the strongly connected components, found by a\ntwo-pass DFS.\n",{"path":3444,"title":3445,"module":3433,"summary":3446},"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees","Minimum Spanning Trees","Given a weighted network, how do we connect everything as cheaply as possible?\nThe answer is a minimum spanning tree, and one lemma — the cut property —\njustifies _every_ correct MST algorithm. We prove the cut and cycle\nproperties by exchange arguments, use them to settle uniqueness, and meet the\noldest MST algorithm, Borůvka's, whose parallel component-merging rounds fall\nstraight out of the cut rule.\n",{"path":3448,"title":3449,"module":3433,"summary":3450},"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim","Kruskal and Prim","The two minimum-spanning-tree algorithms you will actually implement.\nKruskal grows a forest edge by edge, cheapest first, using a union-find\nstructure to reject cycle-closing edges; Prim grows one tree outward from a\nroot with a priority queue, exactly Dijkstra rekeyed by attachment cost. Both\ntraced in full on a nine-town graph, with the edge cases, the bottleneck\nproperty, and where each one wins.\n",{"path":3452,"title":3453,"module":3433,"summary":3454},"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths","Shortest Paths","Finding the cheapest route through a weighted network is one of the most-used\nalgorithms in computing, and a single operation — _relaxation_ — underlies\nevery method. We build the primitive, prove the triangle inequality and\noptimal substructure that make it work, then meet Dijkstra's algorithm: the\ngreedy solution for non-negative weights, traced vertex by vertex, with the\ncut argument that proves each extraction is final.\n",{"path":3456,"title":3457,"module":3433,"summary":3458},"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights","All-Pairs and Negative Weights","Dijkstra's greedy schedule breaks the moment an edge goes negative. We give it\nup for dynamic programming: Bellman-Ford derived as a DP over edge budgets,\nwith its negative-cycle detector, and Floyd-Warshall computing the distance\nbetween _every_ pair of vertices via a DP over which vertices a path may pass\nthrough. We close with Johnson's algorithm and the arbitrage problems that\nnegative cycles encode.\n",{"path":3460,"title":3461,"module":3433,"summary":3462},"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow","Network Flow","How much can flow through a network from source to sink? We build flow\nnetworks with capacity and conservation constraints, increase a flow by\npushing along augmenting paths in the residual graph, and see how reverse\nedges let the algorithm undo earlier routing. Ford-Fulkerson and its BFS refinement\nEdmonds-Karp find a maximum flow, traced end to end on a worked network.\n",{"path":3464,"title":3465,"module":3433,"summary":3466},"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut","Max-Flow Min-Cut and Applications","Why is the flow found when no augmenting path remains actually optimal? The\nanswer is a duality theorem: the maximum flow equals the minimum cut. We prove\nit, read the minimum cut off the final residual graph, then derive bipartite\nmatching and a catalog of modeling reductions from the flow\nabstraction — before touching the modern algorithms that supersede\nEdmonds-Karp.\n",{"path":3468,"title":3469,"module":3433,"summary":3470},"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points","Bridges & Articulation Points","A **bridge** is an edge whose removal disconnects the graph; an **articulation\npoint** is a vertex whose removal does. Both are single points of failure in a\nnetwork. A single depth-first search computes discovery times and **low-links**,\nand two local criteria — $low[v] > disc[u]$ for bridges, $low[v] \\ge disc[u]$\nfor cut vertices — find them all in $O(V+E)$.\n",{"path":3472,"title":3473,"module":3433,"summary":3474},"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor","Lowest Common Ancestor & Binary Lifting","Given a rooted tree, the lowest common ancestor of $u$ and $v$ is the deepest\nnode that is an ancestor of both. A naive walk answers one query in $O(h)$;\n**binary lifting** precomputes the $2^k$-th ancestor of every node in\n$O(n\\log n)$, then answers $k$-th-ancestor and LCA queries in $O(\\log n)$ each.\nWe derive both jumps, apply them to tree distance, and compare against the\nEuler-tour + RMQ and Tarjan offline alternatives.\n",{"path":3476,"title":3477,"module":3433,"summary":3478},"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat","2-SAT via Implication Graphs","A boolean formula whose every clause has exactly two literals can be solved in\n_linear_ time — even though its three-literal cousin is NP-complete. The idea\nis to read each clause as a pair of implications, build a directed graph on the\n$2n$ literals, and ask a question we already know how to answer: which literals\nshare a strongly connected component? The formula is satisfiable iff no variable\nlands in the same SCC as its own negation, and the SCCs' topological order\nyields a satisfying assignment for free.\n",{"path":3480,"title":3481,"module":3433,"summary":3482},"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours","Eulerian Tours","An **Eulerian tour** uses every _edge_ of a graph exactly once. We give the\nexact parity and balance conditions under which one exists (even degree\nfor undirected graphs, in-degree equal to out-degree for directed) and Hierholzer's\n$O(E)$ algorithm that constructs one by splicing closed sub-tours. We contrast\nthis sharply with the **Hamiltonian** problem (visit every _vertex_ once),\nwhich is NP-complete: visiting edges is easy, visiting vertices is hard.\n",{"path":3484,"title":3485,"module":3433,"summary":3486},"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching","Bipartite Matching","Pairing applicants to jobs, students to slots, files to disks: all are\n**maximum bipartite matching**. We solve it combinatorially with **augmenting\npaths** (Kuhn's algorithm, $O(VE)$), speed it up to $O(E\\sqrt V)$ with\n**Hopcroft–Karp**, and uncover the structure behind it — **König's theorem**\n(max matching equals min vertex cover) and **Hall's marriage theorem** (a\nperfect matching exists iff every set has enough neighbors).\n",{"path":3488,"title":3489,"module":3490,"summary":3491},"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method","The Greedy Method","Greedy Algorithms","A greedy algorithm builds a solution one locally-best choice at a time and\nnever looks back. We isolate the two properties that make this work — the\ngreedy-choice property and optimal substructure — prove the canonical\nactivity-selection algorithm correct with an exchange argument, watch greedy\nfail on the 0\u002F1 knapsack, and glimpse matroids as the theory\nthat says exactly when the greedy method is optimal.\n",{"path":3493,"title":3494,"module":3490,"summary":3495},"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals","Scheduling & Interval Partitioning","Three classic scheduling problems all yield to greedy algorithms — and all\nthree turn on a single design decision: which key to sort by. Interval\nscheduling sorts by **finish** time to pack the most compatible jobs;\ninterval partitioning sorts by **start** time and proves the rooms needed\nequal the maximum overlap **depth**; minimizing maximum lateness sorts by\n**deadline** and is justified by an adjacent-swap exchange argument.\n",{"path":3497,"title":3498,"module":3490,"summary":3499},"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes","Huffman Codes","Huffman coding builds a\nprovably optimal prefix-free binary code by repeatedly merging the two least\nfrequent symbols. We develop prefix-free codes as binary trees, give the\nalgorithm with a priority queue, build a Huffman tree from example\nfrequencies, prove optimality with the same greedy-choice-plus-substructure\nargument, and pin the running time at $O(n\\log n)$.\n",{"path":3501,"title":3502,"module":3490,"summary":3503},"\u002Falgorithms\u002Fgreedy\u002Fmatroids","Matroids & Exchange Arguments","The capstone of the greedy module: _why_ and _when_ a greedy algorithm is\nprovably optimal. We recap the two correctness templates — **greedy-stays-ahead**\nand the **exchange argument** — then meet the **matroid** $M=(S,\\mathcal{I})$, an\nabstraction whose **exchange property** is the structure greedy needs.\nThe matroid–greedy theorem says sorting by weight and taking what stays\nindependent yields a maximum-weight basis _if and only if_ the structure is a\nmatroid. Kruskal's MST is the canonical instance; 0\u002F1 knapsack and TSP are the\ncanonical failures.\n",{"path":3505,"title":3506,"module":3490,"summary":3507},"\u002Falgorithms\u002Fgreedy\u002Fstable-matching","Stable Matching (Gale–Shapley)","Two sides each rank the other; we want a matching with no **blocking pair** — no\ntwo participants who both prefer each other to their assigned partners. The\n**Gale–Shapley deferred-acceptance** algorithm has proposers propose in\npreference order while receivers tentatively hold the best offer so far. We prove\nit terminates in $\\O(n^2)$ proposals, returns a **perfect** matching, and that\nthe matching is **stable**. A sharper asymmetry follows: deferred acceptance is\n**proposer-optimal** and **receiver-pessimal**, the structural fact behind the\nresidency match and school-choice systems.\n",{"path":3509,"title":3510,"module":3511,"summary":3512},"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples","Principles of Dynamic Programming","Dynamic Programming","Dynamic programming is recursion with memory: when a recursive solution\nre-solves the same subproblems again and again, we solve each one once and\nstore the answer. We identify the two structural conditions that make this\nwork — overlapping subproblems and optimal substructure — contrast top-down\nmemoization with bottom-up tabulation, and distil the whole method into a\nfive-step recipe.\n",{"path":3514,"title":3515,"module":3511,"summary":3516},"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp","Sequence Alignment & LCS","Two strings can be compared by how much of one appears inside the\nother. The longest common subsequence (LCS) and edit distance are the two\nclassic measures, and they are the _same_ dynamic program with different\ncosts. We derive the LCS recurrence by examining the last characters, fill a\nworked DP table, reconstruct the subsequence, and then show edit distance as\nthe identical $\\Theta(mn)$ pattern.\n",{"path":3518,"title":3519,"module":3511,"summary":3520},"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence","Longest Increasing Subsequence","Given a sequence of numbers, how long is its longest strictly increasing\nsubsequence? A first dynamic program indexes subproblems by the element each\nsubsequence _ends at_, giving an $O(n^2)$ solution with parent-pointer\nreconstruction. A sharper idea, the patience-sorting _tails_ array searched by\nbinary search, drops the time to $O(n\\log n)$. We then fold in the\nvariants: non-decreasing, counting, Russian-doll envelopes, and bitonic.\n",{"path":3522,"title":3523,"module":3511,"summary":3524},"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack","Knapsack & Subset Problems","We start from $\\textsc{Subset-sum}$ — does some sublist hit a target $t$? — and its\ninclude\u002Fexclude recurrence over a boolean table $A(i, u)$, then bolt on values\nto get 0\u002F1 knapsack as the same machine with $\\lor$ promoted to $\\max$. We fill\nboth tables, recover the chosen items, and confront the surprise that the\n$\\Theta(nt)$ running time is only _pseudo-polynomial_ — exponential in the bit\nlength $b$, and unimprovable unless $\\mathrm{P}=\\mathrm{NP}$ since subset-sum is\n$\\textsc{NP-complete}$. The fractional variant reveals the sharp line between greedy\nand dynamic programming.\n",{"path":3526,"title":3527,"module":3511,"summary":3528},"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded","Coin Change & Unbounded Knapsack","The previous lesson let each item be taken at most once. Drop that cap — items\nmay be reused _any number of times_ — and the 0\u002F1 knapsack collapses from a\ntwo-dimensional table to a one-dimensional one, because there is no longer a\nprefix of \"already-used\" items to track. We meet **unbounded knapsack**, then\nits most famous instance, **coin change**: the minimum-coins recurrence\n$C[a] = 1 + \\min_c C[a-c]$, and the counting variant where the _order of the\nloops_ decides whether you count unordered combinations or ordered sequences —\nthe classic bug. Greed fails in general but works for canonical coin systems.\n",{"path":3530,"title":3531,"module":3511,"summary":3532},"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp","Interval DP","Many problems ask for the best way to combine a contiguous range of items, and\nthe answer is a dynamic program over subintervals $[i,j]$ that chooses a split\npoint $k$. We derive the pattern from matrix-chain multiplication —\nparenthesising a product to minimize scalar multiplications in $O(n^3)$ — distil\nit into a reusable template filled by increasing interval length, and then meet\nits sharpest variant: the \"last operation\" trick behind Burst Balloons and\ncutting a stick, where fixing the _last_ move (not the first) makes the two\nsides independent.\n",{"path":3534,"title":3535,"module":3511,"summary":3536},"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp","Dynamic Programming on Trees","When the subproblems of a dynamic program are _rooted subtrees_, a single\npost-order DFS solves the whole thing in $O(n)$: each node combines the\nalready-computed answers of its children. We meet the archetype — maximum-weight\nindependent set on a tree — then the \"path through a node\" pattern behind tree\ndiameter and maximum path sum, and finally **rerooting**, which computes a\nper-node answer for _every_ node as root in $O(n)$ with two passes.\n",{"path":3538,"title":3539,"module":3511,"summary":3540},"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp","Bitmask DP","When a subproblem depends not on an index or a prefix but on _which subset_ of\na small ground set has been used, we can encode that subset as the bits of an\ninteger and index a DP table by it. With $n \\le \\sim 20$ the $2^n$ subsets fit\nin a table, turning $\\Theta(n!)$ brute force into $O(2^n \\cdot \\text{poly}(n))$.\nWe meet the bit tricks, the Held–Karp TSP archetype, assignment by mask,\nsubset-sum partitioning, and submask enumeration with its $3^n$ bound.\n",{"path":3542,"title":3543,"module":3511,"summary":3544},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations","DP Optimizations","A correct DP recurrence is only half the battle; its naive evaluation is often\na factor of $n$ slower than necessary. This capstone surveys five techniques,\nmonotonic-queue, the convex hull trick, divide-and-conquer optimization,\nKnuth's optimization, and SOS DP, that each exploit _structure in the\ntransition_ (a sliding window, linear costs, monotone optimal splits, the\nquadrangle inequality, or subset lattices) to shave an $O(n)$, $O(\\log n)$, or\nworse factor off the running time.\n",{"path":3546,"title":3547,"module":3511,"summary":3548},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs","Dynamic Programming on Graphs","Many graph algorithms are dynamic programs: the subproblem is the\n_best value reachable under a restricted resource_ — intermediate vertices\nallowed, edges allowed, or a topological prefix — and edge _relaxation_ is the\nDP transition. We frame Floyd–Warshall as the archetype ($O(V^3)$ all-pairs\nshortest paths), Bellman–Ford as a DP over path length (the at-most-$K$-stops\nvariant), DAG-DP in topological order ($O(V+E)$), and Warshall's transitive\nclosure as the boolean analog.\n",{"path":3550,"title":3551,"module":3511,"summary":3552},"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp","Digit & Probability DP","Two DP patterns with unusual state. _Digit DP_ counts the\nintegers in a range $[L, R]$ that satisfy a digit constraint by walking the\ndecimal places of the bound, carrying a _tight_ flag that marks when the prefix\nstill equals the bound's. _Probability\u002FExpectation DP_ replaces \"best value\" with\n\"expected value,\" using linearity of expectation to make each state an\naverage over its weighted transitions — the natural tool for expected step\ncounts and absorbing Markov chains.\n",{"path":3554,"title":3555,"module":3556,"summary":3557},"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals","Backtracking: Subsets, Permutations & Combinations","Backtracking & Search","Backtracking builds a solution one choice at a time and abandons a partial\nsolution the moment it cannot be completed, exploring a state-space tree by\ndepth-first search. We meet the universal choose\u002Fexplore\u002Fun-choose template,\nderive the canonical enumerations — subsets ($2^n$), permutations ($n!$), and\ncombinations ($\\binom{n}{k}$) — handle duplicate elements by skipping equal\nsiblings, and see how pruning turns an exponential search into a tractable one.\n",{"path":3559,"title":3560,"module":3556,"summary":3561},"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search","Constraint Search: N-Queens & Sudoku","Many hard puzzles are **constraint satisfaction problems**: assign each\nvariable a value from its domain so that every constraint holds. Backtracking\nsolves them by assigning variables one at a time and rejecting a partial\nassignment the instant a constraint breaks. We make the rejection cheap — $O(1)$\nconflict checks for N-Queens via column and diagonal sets — and prune harder\nwith **forward checking**, **MRV** ordering, and **constraint propagation**,\nwhich is what lets an exponential search actually finish.\n",{"path":3563,"title":3564,"module":3556,"summary":3565},"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound","Branch & Bound and Meet in the Middle","Plain backtracking prunes a search tree by _feasibility_; for _optimization_\nproblems we can prune far more aggressively by _value_. **Branch and bound**\nkeeps the best complete solution found so far and discards any partial solution\nwhose optimistic bound cannot beat it. **Meet in the middle** splits the\ninstance in two, enumerates each half, and recombines by binary search — turning\n$2^n$ into $O(2^{n\u002F2}\\,n)$ and pushing exact search out to $n \\approx 40$.\n",{"path":3567,"title":3568,"module":3556,"summary":3569},"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking","Graph Backtracking: m-Coloring & Hamiltonian Paths","Two famous graph problems have no known efficient algorithm, yet yield cleanly\nto backtracking with the right pruning. **Graph $m$-coloring** assigns one of\n$m$ colors to each vertex so no edge is monochromatic; we color vertices in turn\nand reject a color the instant a neighbor already has it. **Hamiltonian\npath\u002Fcycle** asks for a walk visiting every vertex exactly once; we extend a path\ngreedily and backtrack on dead ends. Both are NP-complete, so the worst case is\nexponential — but feasibility pruning and good vertex ordering make real\ninstances tractable, and the contrast with the easy Eulerian condition shows why.\n",{"path":3571,"title":3572,"module":3573,"summary":3574},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics","Number Theory: GCD & Modular Arithmetic","Mathematical Algorithms","This lesson opens the mathematical-algorithms module with the bedrock of\ncomputational number theory. We prove Euclid's recurrence\n$\\gcd(a,b)=\\gcd(b,\\,a\\bmod b)$ and its $O(\\log\\min(a,b))$ running time, extend\nit to recover Bézout coefficients $x,y$ with $ax+by=\\gcd(a,b)$, and build\nmodular arithmetic on residue classes — including when a modular inverse\n$a^{-1}\\bmod m$ exists and how to compute it.\n",{"path":3576,"title":3577,"module":3573,"summary":3578},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality","Modular Exponentiation & Primality","Computing $a^n \\bmod m$ naively costs $n$ multiplications; **repeated squaring**\ndoes it in $O(\\log n)$ by reading the bits of the exponent. We use this routine\nto state **Fermat's little theorem** (and the modular inverse it gives), then to\ntest primality — trial division, the probabilistic **Fermat** and **Miller–Rabin**\ntests, and the deterministic witness set that settles primality for every 64-bit\nnumber.\n",{"path":3580,"title":3581,"module":3573,"summary":3582},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization","Sieves & Factorization","The previous lesson tested one number for primality; here we ask for _all_\nprimes up to $n$ at once. The **sieve of Eratosthenes** cross-cuts composites\nin $O(n\\log\\log n)$, and a **linear sieve** does it in $O(n)$ while recording\neach number's **smallest prime factor**, which then factors any $x \\le n$ in\n$O(\\log x)$. From a factorization $x = \\prod p_i^{e_i}$ the multiplicative\nfunctions $\\tau$, $\\sigma$, and Euler's totient $\\varphi$ fall out immediately.\n",{"path":3584,"title":3585,"module":3573,"summary":3586},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics","Combinatorics & Counting","Counting is the arithmetic of finite sets. We build up from permutations\n$n!$ and combinations $\\binom{n}{k}$, prove Pascal's rule by a bijection,\nand count multisets with stars and bars. The practical core is computing\n$\\binom{n}{k}\\bmod p$ in $O(1)$ from precomputed factorials and inverse\nfactorials. We close with inclusion–exclusion and the Chinese Remainder\nTheorem, both of which lean on the modular inverse from the previous lesson.\n",{"path":3588,"title":3589,"module":3573,"summary":3590},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation","Matrix Exponentiation","A linear recurrence advances by a fixed linear rule, so one step is a\n**matrix–vector** product and $n$ steps are a **matrix power**. Packaging\nFibonacci, and any $k$-term recurrence, into a transition matrix lets us jump\nto the $n$-th term in $O(k^3 \\log n)$ by **exponentiation by squaring** — the\nsame doubling trick from modular exponentiation, now over matrices.\n",{"path":3592,"title":3593,"module":3573,"summary":3594},"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform","Fast Fourier Transform","Multiplying two degree-$n$ polynomials by the schoolbook method costs\n$\\Theta(n^2)$. Evaluating them at the **$n$-th roots of unity** turns\nmultiplication into pointwise products, and the **Cooley–Tukey FFT** computes\nall those evaluations in $\\Theta(n\\log n)$ by splitting even and odd\ncoefficients. The inverse FFT interpolates back, giving $\\Theta(n\\log n)$\npolynomial and big-integer multiplication.\n",{"path":3596,"title":3597,"module":3573,"summary":3598},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent","Numerical Optimization and Gradient Descent","Most of this course chases **discrete** optima over finite structures; here the\nsearch space is **continuous** and the objective $f$ is differentiable. The\n**gradient** points uphill, so stepping against it —\n$x_{t+1} = x_t - \\eta\\,\\nabla f(x_t)$ — walks downhill. **Convexity** makes every\nlocal minimum global; for convex $L$-smooth $f$ gradient descent converges at\n$O(1\u002Ft)$, and **geometrically** under strong convexity. **Newton's method** uses\nthe Hessian for local quadratic convergence, and **bisection** is the robust\nbracketing fallback for roots.\n",{"path":3600,"title":3601,"module":3602,"summary":3603},"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives","Geometric Primitives & Orientation","Computational Geometry","Computational geometry is built on a single reliable primitive — the\n**orientation test**, a sign of a cross product that tells whether three points\nturn left, right, or lie collinear. From points-as-vectors and the dot and\ncross products we derive orientation, segment intersection, the shoelace area\nformula, and point-in-polygon tests, keeping all arithmetic **exact and\ninteger** so that no floating-point rounding can corrupt a sign.\n",{"path":3605,"title":3606,"module":3602,"summary":3607},"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull","Convex Hull","The convex hull is the smallest convex polygon enclosing a point set — the\nrubber band snapped around the nails. We build it with Andrew's monotone chain,\nsorting by $(x,y)$ and sweeping a lower and upper hull while popping any\nnon-left turn via the orientation primitive, in $O(n\\log n)$. A reduction from\nsorting shows that bound is optimal, and the hull yields diameter, smallest\nenclosing rectangle, and more through rotating calipers.\n",{"path":3609,"title":3610,"module":3602,"summary":3611},"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line","Sweep-Line Algorithms","The plane-sweep paradigm turns a static $2$-D geometry problem into a dynamic\n$1$-D ordered-set problem: a vertical line sweeps left to right, stopping at an\n$x$-sorted **event queue** while a balanced-BST **status structure** tracks the\nobjects it currently crosses, ordered by $y$. We derive Bentley–Ottmann segment\nintersection in $O((n+k)\\log n)$, recover closest-pair in $O(n\\log n)$, and\nreduce skyline, rectangle-area, and overlap problems to $\\pm1$ event sweeps.\n",{"path":3613,"title":3614,"module":3602,"summary":3615},"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity","Polygons & Proximity","Four classics that live on top of the orientation primitive and the convex\nhull. **Closest pair** falls to divide-and-conquer in $\\Theta(n\\log n)$, where a\npacking argument caps the cross-boundary combine at seven neighbours per point.\n**Point-in-polygon** is the ray-casting parity test or the winding-number count\nthat also handles self-intersecting boundaries, both with their edge caveats. The **shoelace formula**\ngives signed area as a sum of cross products, and **rotating calipers** walk the\nhull to read off diameter and width in $O(n)$.\n",{"path":3617,"title":3618,"module":3619,"summary":3620},"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions","P, NP, and Reductions","Intractability","Most problems we have met so far have fast algorithms. A vast and important\nfamily seemingly does not. This lesson builds the vocabulary for that\ndivide: decision problems, the class $\\mathsf{P}$ of problems we can solve\nquickly, the class $\\mathsf{NP}$ of problems whose solutions we can _check_\nquickly, and polynomial-time reductions, the tool that lets us compare the\ndifficulty of two problems without solving either.\n",{"path":3622,"title":3623,"module":3619,"summary":3624},"\u002Falgorithms\u002Fintractability\u002Fnp-completeness","NP-Completeness","Some problems in $\\mathsf{NP}$ are universally hardest: every other problem\nin $\\mathsf{NP}$ reduces to them. This lesson defines $\\mathsf{NP}$-hard and\n$\\mathsf{NP}$-complete, states the Cook–Levin theorem that anchors the\ntheory on **SAT**, walks the web of reductions that grows from it, and gives\nthe four-step recipe for proving a brand-new problem $\\mathsf{NP}$-complete.\n",{"path":3626,"title":3627,"module":3619,"summary":3628},"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness","Coping with NP-Hardness","An $\\mathsf{NP}$-hardness proof rules out an exact polynomial-time algorithm,\nnot the need for answers. This lesson surveys four practical responses to\nhardness: approximation algorithms with a provable ratio (worked through a\n2-approximation for vertex cover), heuristics and local search, exact\nexponential methods like branch and bound, and exploiting special structure\nin the instances you actually face.\n",{"path":3630,"title":3631,"module":3619,"summary":3632},"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms","Approximation Algorithms","When a problem is $\\mathsf{NP}$-hard we can still ask for a solution\nprovably close to optimal. This lesson makes the approximation ratio\n$\\rho$ precise, separates absolute from relative guarantees, and proves the\nratios of four classic algorithms: greedy set cover ($H_n \\approx \\ln n$),\nthe MST-doubling $2$-approximation for metric TSP, load balancing, and the\nknapsack FPTAS. It closes with the hierarchy PTAS \u002F FPTAS and the limits of\ninapproximability.\n",{"path":3634,"title":3635,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3637,"title":3638,"module":3639,"summary":3640},"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models","Functions and Mathematical Models","Limits and Continuity","A function assigns exactly one output to each input and can be presented four ways: verbally, numerically, graphically, or by a formula. The elementary families — linear, polynomial, power, rational, trigonometric, exponential — model most elementary phenomena, and transformation, combination, and composition build every other function from them.\n",{"path":3642,"title":3643,"module":3639,"summary":3644},"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function","The Limit of a Function","The tangent and velocity problems both ask for a value a ratio approaches but never reaches — the limit. Its intuitive two-sided form splits into one-sided limits that must agree; a limit fails to exist when they disagree or when the function grows without bound, the latter producing a vertical asymptote.\n",{"path":3646,"title":3647,"module":3639,"summary":3648},"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition","Limit Laws and the ε–δ Definition","The Limit Laws reduce a limit to arithmetic on simpler limits, and direct substitution settles polynomials and rational functions outright. The 0\u002F0 forms that resist substitution yield to algebra or the Squeeze Theorem, and the ε–δ definition makes \"arbitrarily close\" precise as a pair of quantified inequalities.\n",{"path":3650,"title":3651,"module":3639,"summary":3652},"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity","Continuity","A function is continuous at a point when its limit there equals its value, so the graph has no break. Continuity fails in three geometric ways; it is closed under arithmetic and composition, so the elementary families and their combinations are continuous; and on a closed interval it forces the Intermediate Value Theorem, which locates roots.\n",{"path":3654,"title":3655,"module":3656,"summary":3657},"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change","The Derivative and Rates of Change","Derivatives","A single limit with three readings: the slope of the tangent line, the instantaneous velocity of a moving object, and the rate of change of one quantity with respect to another. Built from the difference quotient, extended from a value at one point to a function of x, and undefined exactly where a corner, jump, or vertical tangent appears.\n",{"path":3659,"title":3660,"module":3656,"summary":3661},"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule","Differentiation Rules and the Chain Rule","Computing every derivative from the limit definition is tedious. A short list of rules — power, constant multiple, sum, product, quotient — differentiates any polynomial or rational function by inspection. The trigonometric derivatives follow from one limit, and the chain rule extends everything to composite functions by multiplying rates along the composition.\n",{"path":3663,"title":3664,"module":3656,"summary":3665},"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates","Implicit Differentiation and Related Rates","Not every curve is the graph of y = f(x). Implicit differentiation finds a slope from an equation in x and y directly, treating y as an unknown function and differentiating both sides. The same chain-rule idea drives related rates, where one measured rate of change forces another through a geometric constraint, and interprets the derivative as a rate across the sciences.\n",{"path":3667,"title":3668,"module":3656,"summary":3669},"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials","Linear Approximations and Differentials","A differentiable curve looks like its tangent line under enough magnification, so the tangent is a usable stand-in for the function near the point of contact. The linear approximation and its linearization, written in the language of differentials dy and dx, estimate both function values and the measurement error propagated into a computed quantity.\n",{"path":3671,"title":3672,"module":3673,"summary":3674},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem","Extrema and the Mean Value Theorem","Applications of Derivatives","Absolute and local extrema, the Extreme Value Theorem that guarantees them, and Fermat's Theorem pinning candidates to critical numbers. The Closed Interval Method turns the search for extrema into a finite checklist. Rolle's Theorem and the Mean Value Theorem then connect a function's values to its derivative, giving the tool that most of differential calculus rests on.\n",{"path":3676,"title":3677,"module":3673,"summary":3678},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph","How Derivatives Shape a Graph","The sign of the first derivative fixes where a function rises and falls, and a sign change identifies each local extremum through the First Derivative Test. The second derivative sets concavity and inflection points and gives a faster Second Derivative Test. Limits at infinity describe end behavior and the horizontal asymptotes a curve settles toward.\n",{"path":3680,"title":3681,"module":3673,"summary":3682},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization","Curve Sketching and Optimization","A checklist that synthesizes domain, symmetry, asymptotes, monotonicity, extrema, and concavity into a hand sketch of any function, plus the slant asymptote for rational functions whose degree exceeds the denominator's. The same extremum machinery, applied to a word problem, becomes the optimization template: model one quantity, reduce it to a function of a single variable, and find its absolute extremum.\n",{"path":3684,"title":3685,"module":3673,"summary":3686},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives","Newton's Method and Antiderivatives","Newton's method solves $f(x) = 0$ by repeatedly replacing the curve with its tangent line and jumping to the tangent's root, converging fast when it works and diverging when the derivative is small. Antiderivatives reverse differentiation: every antiderivative of a function differs from another by a constant, so the general antiderivative is a family of parallel curves, pinned to one by an initial condition.\n",{"path":3688,"title":3689,"module":3690,"summary":3691},"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral","Area and the Definite Integral","Integrals","The area under a curve is defined as a limit of sums of rectangle areas. The same limit — a Riemann sum taken as the mesh shrinks to zero — defines the definite integral, a single number measuring signed area, total distance, and every accumulated quantity built the same way. Its properties, comparison bounds, and reading as net area follow directly from the limit.\n",{"path":3693,"title":3694,"module":3690,"summary":3695},"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus","The Fundamental Theorem of Calculus","Differentiation and integration are inverse operations. Part 1 says the derivative of an area-accumulation function is the integrand; Part 2 says a definite integral equals the change in any antiderivative across the interval. Together they replace limits of Riemann sums with antiderivative lookups, define the indefinite integral, and give the Net Change Theorem for rates.\n",{"path":3697,"title":3698,"module":3690,"summary":3699},"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule","The Substitution Rule","Substitution runs the Chain Rule backward: spotting an inner function whose derivative also appears in the integrand lets the variable change to $u$ and collapse a composite integral to a simple one. The rule applies to indefinite and definite integrals, with two ways to handle the limits, and it yields the symmetry shortcuts that double even integrands and vanish odd ones.\n",{"path":3701,"title":3702,"module":3703,"summary":3704},"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes","Areas Between Curves and Volumes","Applications of Integration","A definite integral computes any quantity that a limit of Riemann sums approximates. Applied to geometry it gives the area between two curves and the volume of a solid: by cross-sections, by disks and washers when the region is revolved, and by cylindrical shells when inverting the boundary is awkward.\n",{"path":3706,"title":3707,"module":3703,"summary":3708},"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length","Work, Average Value, Arc Length, and Surface Area","The work done by a force that varies with position, the average value of a function and the Mean Value Theorem it satisfies, the length of a curve, and the area of a surface swept out by revolving that curve. Each is a limit of Riemann sums, hence a definite integral.\n",{"path":3710,"title":3711,"module":3703,"summary":3712},"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability","Applications to Physics, Economics, and Probability","Definite integrals in physics, economics, and statistics: the force a fluid exerts on a submerged plate, the balance point of a plane region, the money consumers save at a market price, and the probability that a continuous random variable lands in an interval, together with its mean.\n",{"path":3714,"title":3715,"module":3716,"summary":3717},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials","Inverse Functions, Logarithms, and Exponentials","Exponential, Logarithmic, and Inverse Functions","A one-to-one function has an inverse that reverses it, with a graph mirrored across y = x and a derivative given by the reciprocal-slope rule. The exponential e^x is its own derivative and the natural logarithm has derivative 1\u002Fx; logarithmic differentiation turns products, quotients, and variable powers into sums.\n",{"path":3719,"title":3720,"module":3716,"summary":3721},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions","Growth, Decay, Inverse Trigonometric, and Hyperbolic Functions","Any quantity whose rate of change is proportional to its size grows or decays exponentially, the single equation y' = ky behind populations, radioactive decay, cooling, and continuously compounded interest. The inverse trigonometric functions have algebraic derivatives, and the hyperbolic functions, built from e^x and e^{-x}, describe the hanging cable.\n",{"path":3723,"title":3724,"module":3716,"summary":3725},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule","Indeterminate Forms and l'Hospital's Rule","When a limit produces 0\u002F0 or infinity over infinity, the value is undetermined by the forms alone. l'Hospital's Rule resolves both by replacing the ratio of functions with the ratio of their derivatives. Products, differences, and powers reduce to a quotient the rule can handle, and repeated use ranks the growth of logarithms, powers, and exponentials.\n",{"path":3727,"title":3728,"module":3729,"summary":3730},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts","Integration by Parts","Techniques of Integration","The product rule for derivatives reverses into integration by parts, trading the integral of $u\\,\\d v$ for the integral of $v\\,\\d u$ whenever the second is easier. The LIATE ordering fixes which factor to differentiate. Standard cases: a polynomial against a transcendental factor, repeated parts, cyclic integrals that solve for themselves, and reduction formulas that peel an exponent down by recursion.\n",{"path":3732,"title":3733,"module":3729,"summary":3734},"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution","Trigonometric Integrals and Substitution","Two related techniques. Trigonometric integrals evaluate powers and products of sine, cosine, tangent, and secant by splitting off one factor and converting the rest with a Pythagorean identity, or by dropping even powers with half-angle formulas. Trigonometric substitution runs the idea in reverse: replace x by a sine, tangent, or secant to clear a radical, integrate, then read the answer back off a reference triangle.\n",{"path":3736,"title":3737,"module":3729,"summary":3738},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy","Partial Fractions and Integration Strategy","Any rational function integrates in closed form: factor the denominator, split the fraction into simple pieces by partial fractions, and integrate each piece as a logarithm or an arctangent. Four denominator cases exhaust the possibilities. A four-step strategy then sorts an arbitrary integrand by its shape to the technique that fits it, and a short catalog records elementary functions whose antiderivatives are not elementary.\n",{"path":3740,"title":3741,"module":3729,"summary":3742},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals","Approximate and Improper Integrals","Two definite integrals the Fundamental Theorem cannot reach. With no antiderivative available, the Midpoint, Trapezoidal, and Simpson rules approximate the integral from sample values, each carrying a provable error bound. With an infinite interval or an integrand that blows up, the improper integral is defined as a limit that either converges or diverges; the Comparison Test settles which without evaluating it.\n",{"path":3744,"title":3745,"module":3746,"summary":3747},"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus","Parametric Curves and Their Calculus","Parametric Equations and Polar Coordinates","A parametric curve gives x and y separately as functions of a third variable, recording not only a path but the direction and timing with which it is traced. Eliminating the parameter recovers a Cartesian equation; the slope, area, arc-length, and surface-area formulas run directly on the parameter, with the cycloid and astroid as worked examples.\n",{"path":3749,"title":3750,"module":3746,"summary":3751},"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates","Polar Coordinates","Polar coordinates locate a point by a distance from the pole and an angle from the polar axis, giving circles, spirals, and flower-shaped curves short equations. Conversion between the two systems is right-triangle trigonometry, and treating a polar curve as a parametric curve in the angle yields the tangent, area, and arc-length formulas.\n",{"path":3753,"title":3754,"module":3746,"summary":3755},"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections","Conic Sections","Parabolas, ellipses, and hyperbolas are the plane curves cut from a double cone. Each has a focus-based geometric definition and a standard Cartesian equation. A single number, the eccentricity, ties the three together, and placing a focus at the pole gives all of them one polar equation that describes planetary orbits.\n",{"path":3757,"title":3758,"module":3759,"summary":3760},"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences","Sequences","Infinite Sequences and Series","A sequence is a function on the positive integers, and its limit is defined almost exactly like a limit at infinity. The Limit Laws and Squeeze Theorem carry over from functions, monotonic and bounded sequences give a convergence criterion, and the Monotonic Sequence Theorem guarantees a limit exists without naming it.\n",{"path":3762,"title":3763,"module":3759,"summary":3764},"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test","Series and the Integral Test","Adding infinitely many terms is made precise as the limit of partial sums. The two series with closed-form partial sums are geometric and telescoping; the harmonic series diverges even as its terms shrink to zero. The Integral Test compares a positive series to an improper integral, settling the p-series and supplying a remainder bound for estimating sums.\n",{"path":3766,"title":3767,"module":3759,"summary":3768},"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests","The Convergence Tests","The comparison, alternating-series, ratio, and root tests decide convergence without a closed-form partial sum. Absolute convergence is stronger than conditional convergence and is preserved under rearrangement; an alternating series errs by less than its first omitted term. A test is chosen from the shape of the general term.\n",{"path":3770,"title":3771,"module":3759,"summary":3772},"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series","Power Series","A power series is a polynomial of infinite degree whose convergence set is an interval centered at $a$, with a radius the Ratio Test finds and endpoints that must be tested by hand. Inside that interval the series represents a function that can be differentiated and integrated term by term, generating new representations from the geometric series.\n",{"path":3774,"title":3775,"module":3759,"summary":3776},"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series","Taylor and Maclaurin Series","If a function equals a power series, its coefficients are forced: the nth is the nth derivative at the center over n factorial. We derive that formula, use Taylor's Inequality to prove the standard series for the exponential, sine, and cosine, record the binomial series and a reference table, and bound the error when a Taylor polynomial replaces a function.\n",{"path":3778,"title":3779,"module":3780,"summary":3781},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product","Three-Dimensional Coordinates, Vectors, and the Dot Product","Vectors and the Geometry of Space","Space needs three coordinates, so we set up the rectangular system, the distance formula, and the equation of a sphere. Vectors then package magnitude and direction into a single algebraic object with its own arithmetic. The dot product turns two vectors into a number that measures the angle between them, gives a clean test for orthogonality, and produces the projection of one vector onto another.\n",{"path":3783,"title":3784,"module":3780,"summary":3785},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes","The Cross Product, Lines, and Planes","The cross product multiplies two vectors into a third perpendicular to both, with length equal to the area of the parallelogram they span. That one construction supplies the direction of a line, the normal of a plane, and, through the scalar triple product, the volume of a parallelepiped. Lines carry a point and a direction vector; planes carry a point and a normal, which fixes the angle between planes and the distance from a point to a plane.\n",{"path":3787,"title":3788,"module":3780,"summary":3789},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces","Cylinders and Quadric Surfaces","A surface whose equation omits one variable is a cylinder: the graph of a plane curve swept along the missing axis. A second-degree equation in three variables is a quadric, and translation and rotation reduce every one to a short standard list. Traces — the curves cut by planes parallel to the coordinate planes — sort the six quadrics into ellipsoid, the two paraboloids, the cone, and the two hyperboloids.\n",{"path":3791,"title":3792,"module":3780,"summary":3793},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves","Vector Functions and Space Curves","A vector function assigns a vector to each value of a parameter, and as the parameter runs its tip traces a space curve. Taking limits, derivatives, and integrals component by component carries all of single-variable calculus into three dimensions. The derivative of a vector function is the tangent vector to its curve, and normalizing it gives the unit tangent that points the way along the path.\n",{"path":3795,"title":3796,"module":3780,"summary":3797},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion","Arc Length, Curvature, and Motion in Space","Integrating the speed of a vector function gives the length of its curve and a natural parameter, arc length, that depends only on the curve's shape. Curvature measures how fast the unit tangent turns, and together with the normal and binormal it builds the moving TNB frame. Reading the same vector function as a trajectory, its first two derivatives are velocity and acceleration, and acceleration splits cleanly into tangential and normal parts.\n",{"path":3799,"title":3800,"module":3801,"summary":3802},"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables","Functions of Several Variables, Limits, and Continuity","Partial Derivatives","A function of several variables assigns one number to each point of a region in the plane or in space. Domain, graph, level curve, and level surface describe it; limits and continuity extend to two variables, where a limit must agree along every path of approach, not just from the left and the right.\n",{"path":3804,"title":3801,"module":3801,"summary":3805},"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives","A partial derivative holds every variable but one fixed and differentiates in the ordinary sense. Geometrically it is the slope of a trace curve cut from the surface by a coordinate plane. The freeze-and-differentiate rule computes the two first partials; the four second partials follow, and the two mixed ones agree under Clairaut's Theorem when they are continuous.\n",{"path":3807,"title":3808,"module":3801,"summary":3809},"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule","Tangent Planes, Linear Approximation, and the Chain Rule","Near a point, a smooth surface looks like its tangent plane, and the plane's equation is built from the two partial derivatives. That linearization defines the total differential and the meaning of differentiability in two variables. The chain rule then propagates derivatives through composed functions, tracked by a tree diagram, and yields clean formulas for implicit differentiation.\n",{"path":3811,"title":3812,"module":3801,"summary":3813},"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient","Directional Derivatives and the Gradient","The partial derivatives measure slope along the two axes; the directional derivative measures slope along any chosen direction, and equals the gradient dotted with a unit vector. The gradient points in the direction of steepest increase, its length is the greatest rate, and it stands perpendicular to level curves and surfaces, which fixes the tangent plane to a level surface.\n",{"path":3815,"title":3816,"module":3801,"summary":3817},"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers","Optimization and Lagrange Multipliers","Extrema of a two-variable function sit at critical points where the gradient vanishes; the Second Derivatives Test sorts them into peaks, valleys, and saddles by the sign of a discriminant. Absolute extrema on a closed region also need the boundary. When the domain is itself a constraint curve, Lagrange multipliers set the two gradients parallel and solve the constrained problem.\n",{"path":3819,"title":3820,"module":3821,"summary":3822},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals","Double Integrals","Multiple Integrals and Vector Calculus","The double integral extends the definite integral to functions of two variables: a limit of Riemann sums that measures signed volume under a surface. Fubini's Theorem turns it into two ordinary integrations done one after the other, general regions of type I and type II fix the inner limits, polar coordinates absorb circular symmetry through the factor r, and the same machine computes mass, center of mass, and moments of a lamina.\n",{"path":3824,"title":3825,"module":3821,"summary":3826},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems","Triple Integrals and Coordinate Systems","The triple integral integrates a function of three variables over a solid, as a limit of Riemann sums evaluated by three nested single integrations. Cylindrical coordinates add the factor r to handle axial symmetry, spherical coordinates add rho-squared sine-phi for radial symmetry, and the general change of variables shows both volume elements are Jacobian determinants of the coordinate map. Surface area for a graph completes the measurement toolkit.\n",{"path":3828,"title":3829,"module":3821,"summary":3830},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals","Vector Fields and Line Integrals","A vector field assigns a vector to every point of space; the line integral of a field along a curve accumulates its tangential component, measuring work. Conservative fields are gradients of a potential, and for them the Fundamental Theorem for Line Integrals makes the integral depend only on the endpoints. Path independence, closed-loop integrals of zero, and the component test for a potential are three faces of the same property.\n",{"path":3832,"title":3833,"module":3821,"summary":3834},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence","Green's Theorem, Curl, and Divergence","Green's Theorem equates the line integral of a field around a positively oriented closed curve with a double integral over the enclosed region, turning a boundary computation into an area computation and vice versa. Curl measures local circulation and divergence measures local outflow; the two vector forms of Green's Theorem express the boundary integral as the integrated curl or divergence, the planar case of Stokes' and the Divergence Theorem.\n",{"path":3836,"title":3837,"module":3821,"summary":3838},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals","Parametric Surfaces and Surface Integrals","A parametric surface is the image of a two-variable vector function; its area element is the magnitude of the cross product of the two tangent vectors. The surface integral of a scalar function sums it over that area, and the flux integral of a vector field sums the field's normal component, measuring flow through the surface. Orientation by a choice of unit normal makes flux well-defined, the integral Stokes' and the Divergence Theorem operate on.\n",{"path":3840,"title":3841,"module":3821,"summary":3842},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem","Stokes' Theorem and the Divergence Theorem","Stokes' Theorem lifts Green's Theorem into space: the line integral of a field around the boundary of a surface equals the flux of its curl through the surface. The Divergence Theorem relates the outward flux across a closed surface to the triple integral of divergence over the solid it encloses. Together with the Fundamental Theorem of Calculus and its line-integral and Green counterparts, they are one theorem: the integral of a derivative over a region equals the integral of the field over its oriented boundary.\n",{"path":3844,"title":3845,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3847,"title":3848,"module":5,"summary":3849},"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions","Measurement and Dimensions","Every physical quantity is a number attached to a unit, and that pairing is what lets you check an equation before computing anything, since terms that add together must carry the same dimensions. We build the SI base units and the notion of dimension, then use dimensional analysis to test a proposed relation and form scaling groups — a method that fixes a formula's shape but never its numerical constants. The lesson also sets how precisely a result may be stated, through significant figures, propagated uncertainty, and order-of-magnitude checks that catch errors a raw calculator answer hides.\n",{"path":3851,"title":3852,"module":5,"summary":3853},"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra","Vector Algebra","Force, velocity, and displacement all carry a direction, so mechanics needs an arithmetic that respects it; adding magnitudes alone gives the wrong answer the moment two arrows point different ways. We set up vectors and their components in a chosen basis, then build the two products that carry most of the physics — the dot product, which extracts the part of one vector along another and yields work and power, and the cross product, which measures oriented area and yields torque and angular momentum. Rotating the axes changes the components while leaving the vector itself untouched, and the same component method resolves a force along whatever directions a constraint picks out.\n",{"path":3855,"title":3856,"module":3857,"summary":3858},"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion","One-Dimensional Motion","Kinematics","Motion along a line already forces the two questions the whole of kinematics repeats: how fast is the object moving now, and where will it be next? Velocity and acceleration answer the first as derivatives of position; integrating them back — the signed area under a graph — answers the second. We derive the constant-acceleration equations, mark exactly where the \"constant\" assumption is load-bearing, and see why sign, not magnitude, is what carries direction.\n",{"path":3860,"title":3861,"module":3857,"summary":3862},"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs","Motion Graphs","Draw a motion as a graph and its two most useful facts turn geometric: the slope of the position curve is the velocity, and the area under the velocity curve is the displacement. We read motion in both directions — differentiating a graph for the next rate, integrating it back to recover position — and handle the curved, piecewise, and noisy graphs that real measurements produce. Along the way we see why a velocity estimated from two positions belongs to the midpoint of their interval, not its end.\n",{"path":3864,"title":3865,"module":3857,"summary":3866},"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion","Projectile Motion","Throw an object and it seems to trace one curved path, but the motion is really two independent one-dimensional motions running at once: constant velocity across the ground and free fall in the vertical. Splitting it that way turns every projectile question — how long it stays up, how far it lands, how high it climbs, whether it clears an obstacle — into a pair of equations you already know. We derive the parabolic trajectory, work both the forward and the inverse problems, and show why the familiar $45^\\circ$ range-maximizing angle holds only when launch and landing heights match.\n",{"path":3868,"title":3869,"module":3857,"summary":3870},"\u002Fmechanics\u002Fkinematics\u002Frelative-motion","Relative Motion","A velocity is only ever measured relative to some observer, so a boat's speed through the water, over the ground, and as seen from another boat are three different vectors. Choosing the right frame — and subtracting one motion from another — collapses river crossings, crosswind headings, pursuit, and closest-approach problems into a single vector equation. We build the relative-velocity and relative-position relations for uniformly moving frames, show why acceleration is the one quantity all such observers agree on, and note where rotating frames break the simple subtraction.\n",{"path":3872,"title":3873,"module":3857,"summary":3874},"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion","Circular Motion","An object going around a circle at a steady speed is still accelerating, because its velocity is forever changing direction — the fact that governs everything from a car on a curve to a satellite in orbit. We tie the angular description (angle, angular velocity, angular acceleration) to the linear one through $v=r\\omega$, split the acceleration into an inward part that turns the velocity and a tangential part that changes its speed, and extend the inward $v^2\u002Fr$ result to any curved path through its local radius of curvature. Constant angular acceleration then mirrors straight-line motion equation for equation.\n",{"path":3876,"title":3877,"module":3878,"summary":3879},"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws","Newton's Laws","Dynamics","What makes a body change its motion, and in which frames does the answer take its simplest form? Newton's three laws settle both: inertial frames are the ones where a force-free body coasts, force is whatever changes momentum, and every interaction pushes back on its source. We write the second law as $\\sum\\vec F=\\d\\vec p\u002F\\d t$, reduce it to $m\\vec a$ at constant mass, and separate what a scale actually reads — the support force — from the weight $m\\vec g$ it is so often mistaken for.\n",{"path":3881,"title":3882,"module":3878,"summary":3883},"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams","Free-Body Diagrams","Once several forces act on a body at once, the reliable way to predict its motion is to isolate that one body and draw every external push and pull on it — nothing more, nothing less. The free-body diagram is that discipline. We fix a system boundary, resolve $\\sum\\vec F=m\\vec a$ into components along axes chosen to fit the geometry, and solve for the unknowns a problem hands us — normal forces, tensions, friction, and the acceleration a constraint permits — seeing why internal forces drop out only when the boundary encloses both bodies that share them.\n",{"path":3885,"title":3886,"module":3878,"summary":3887},"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion","Friction and Curved Motion","Real surfaces grip before they slip, fluids push back harder the faster you move through them, and anything rounding a bend must be pulled toward the inside of the curve by something. This lesson supplies the force laws for those three cases. We bound static friction by $|f_s|\\leq\\mu_sN$ and switch to kinetic friction $\\mu_kN$ once sliding starts, model drag as a speed-dependent resistance that levels off at a terminal speed, and show that circular motion demands an inward net force $mv^2\u002Fr$ furnished by real interactions — friction, a banked normal force, tension — never by an invented outward one.\n",{"path":3889,"title":3890,"module":3878,"summary":3891},"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics","Numerical Dynamics","Most force laws — quadratic drag, coupled oscillators, anything nonlinear — admit no closed-form trajectory, so we advance the motion one small time step at a time and let arithmetic do what algebra cannot. This lesson turns $\\d\\vec y\u002F\\d t=f(t,\\vec y)$ into a marching rule. We derive the Euler, Euler--Cromer, midpoint, and Verlet updates, weigh their accuracy and stability, watch a drifting energy expose a bad scheme, and use step-halving and conserved quantities to separate the error of the method from the error of the model.\n",{"path":3893,"title":3894,"module":3878,"summary":3895},"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems","Center-of-Mass Systems","A firework bursts into a dozen fragments, yet one point keeps gliding along the original parabola as though nothing had happened. That point is the centre of mass, and following it collapses a many-body tangle into a single equation of motion. We define $\\vec R=\\frac1M\\sum_i m_i\\vec r_i$ and its continuous form, show that internal forces cancel so that only external ones move it, $M\\vec A_{\\rm cm}=\\sum\\vec F_{\\rm ext}$, and put the result to work on recoil, collisions viewed from the centre-of-mass frame, and rocket propulsion, where mass leaving the boundary carries momentum with it.\n",{"path":3897,"title":3898,"module":3899,"summary":3900},"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy","Work and Kinetic Energy","Energy","A constant push along a straight path is trivial to score, but real forces vary and bend along curved trajectories, and only the component along the motion transfers any energy. Work captures exactly that transfer as the line integral $W=\\int\\vec F\\cdot\\d\\vec r$, and the work-kinetic-energy theorem turns it into a statement about speed: the net work on a particle equals the change in its $\\tfrac12 mv^2$. We build work up from the dot product to the signed area under a force curve, derive the theorem from Newton's second law, and read power as its instantaneous rate $P=\\vec F\\cdot\\vec v$.\n",{"path":3902,"title":3903,"module":3899,"summary":3904},"\u002Fmechanics\u002Fenergy\u002Fpotential-energy","Potential Energy","When a force does the same work no matter which path a particle takes, that work can be stored as a function of position alone, and solving for the motion becomes bookkeeping instead of integration. We single out the forces that qualify — the conservative ones, for which $\\oint\\vec F\\cdot\\d\\vec r=0$ — define their potential energy through $\\vec F=-\\nabla U$, and use conservation of mechanical energy to read speeds, turning points, and equilibria straight off a potential curve. Friction breaks the shortcut, so we also track where mechanical energy leaks away as heat.\n",{"path":3906,"title":3907,"module":3899,"summary":3908},"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work","Multiparticle Work","A single particle has one velocity and one kinetic energy; a system of many can spin, deform, explode, and warm up while its centre of mass glides along as if nothing happened. Splitting the motion into a centre-of-mass part and an internal part separates the energy that momentum already fixes from the energy left free for relative motion, $K=\\tfrac12MV_{\\rm cm}^2+K'$. We derive the centre-of-mass work theorem, see why an explosion or a released spring can raise total kinetic energy with no external work at all, and use the reduced-mass and centre-of-mass frames to make collisions and internal transfers clean.\n",{"path":3910,"title":3911,"module":3899,"summary":3912},"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding","Mass-Energy and Binding","Relativity puts rest itself on the energy ledger: a mass $m$ carries energy $mc^2$ even when it sits still, so weighing a system's separated pieces and weighing the assembled whole give different answers, and the gap is binding energy. We convert freely between mass units and MeV, compute the energy that holds a nucleus together, and read the binding-energy-per-nucleon curve that explains why fusing light nuclei and splitting heavy ones both release energy. Reaction $Q$ values, thresholds, and recoil then follow from the same mass-difference accounting, once the frame and mass convention are fixed.\n",{"path":3914,"title":3915,"module":3899,"summary":3916},"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization","Photons and Quantization","Light delivers its energy in indivisible lumps: a photon of frequency $f$ carries exactly $hf$, and this one fact explains why a dim blue lamp ejects electrons that an intense red one cannot. We fix a photon's energy and momentum from its wavelength, follow the quanta through emission, absorption, and the photoelectric threshold $K_{\\rm max}=hf-\\phi$, and watch energy and momentum conservation together produce the Compton wavelength shift when a photon scatters from an electron. The recurring discipline is unit and frame care, where a stray factor of $10^9$ or a forgotten rest energy quietly ruins an answer.\n",{"path":3918,"title":3919,"module":3920,"summary":3921},"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions","Momentum and Collisions","Momentum","When two objects collide, the forces between them are too brief and too tangled to integrate directly, yet the result is fixed by one conserved quantity. Linear momentum $\\vec p=m\\vec v$ turns Newton's second law into the impulse-momentum theorem $\\vec J=\\Delta\\vec p$, and for an isolated system into a conservation law that holds through any internal collision, however dissipative. We use it to separate elastic from inelastic collisions, follow the centre of mass, and read impulse as the signed area under a force-time curve — always tracking which external impulses the chosen system and interval let us drop.\n",{"path":3923,"title":3924,"module":3920,"summary":3925},"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions","Center-of-Mass Collisions","A two-body collision that looks asymmetric in the laboratory becomes almost trivial in the frame that rides along with the centre of mass, where the total momentum is zero and the two momenta stay equal and opposite. We build that frame, reduce the pair to a single relative coordinate carrying the reduced mass $\\mu$, and show that an elastic collision there only rotates one momentum vector while its length holds fixed. Transforming back to the laboratory then handles elastic and inelastic collisions, scattering angles, and reaction thresholds with the same construction — and shows why relative speed, not laboratory kinetic energy, measures what a collision can convert.\n",{"path":3927,"title":3928,"module":3920,"summary":3929},"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion","Rocket Propulsion","A rocket speeds up by throwing mass backward, so its own mass drops as it flies and $\\vec F=m\\vec a$ no longer applies to a fixed body. Tracking the momentum the exhaust carries across the vehicle boundary gives thrust $T=Ru_e$ and, for a force-free burn, the rocket equation $\\Delta v=u_e\\ln(m_i\u002Fm_f)$ — a logarithm that makes large velocity changes expensive in propellant and forces staging. We then add the forces a real ascent cannot ignore, gravity, drag, and steering, and show how thrust and mass-flow records are cross-checked to infer the exhaust speed.\n",{"path":3931,"title":3932,"module":3933,"summary":3934},"\u002Fmechanics\u002Frotation\u002Frotational-inertia","Rotational Inertia","Rotation","Push a wheel and a merry-go-round with the same force and they speed up at wildly different rates: the same mass resists rotation differently depending on where it sits relative to the axis. That single fact is the moment of inertia, $I=\\int r_\\perp^2\\,\\d m$, and this lesson builds it from the ground up. We tie angular motion to linear through $s=r\\theta$, $v=r\\omega$, and $a_t=r\\alpha$, derive $I$ for rods, disks, and spheres, and use the parallel- and perpendicular-axis theorems to move between axes — always naming the axis, because the same body has as many moments of inertia as it has lines to spin about.\n",{"path":3936,"title":3937,"module":3933,"summary":3938},"\u002Fmechanics\u002Frotation\u002Frotational-dynamics","Rotational Dynamics","A force applied to a wheel does nothing unless it acts off the axis: what turns a rigid body is torque, force times lever arm. This lesson makes that precise and turns it into the rotational Newton's second law, $\\sum\\tau=I\\alpha$ about a fixed axis, the exact analogue of $\\sum F=ma$. From there we get rotational work $W=\\int\\tau\\,\\d\\theta$ and power $P=\\tau\\omega$, size a motor to a load, and solve pulleys and Atwood machines where the pulley's own inertia can no longer be ignored — always insisting that every torque be measured about the same axis.\n",{"path":3940,"title":3941,"module":3933,"summary":3942},"\u002Fmechanics\u002Frotation\u002Frolling-motion","Rolling Motion","A rolling wheel is doing two things at once — translating and spinning — but the no-slip condition $v_{cm}=R\\omega$ locks them together, and that single constraint is what makes rolling tractable. We use it to split the kinetic energy into $\\tfrac12Mv_{cm}^2+\\tfrac12I\\omega^2$, find how fast a cylinder reaches the bottom of an incline, and show why the contact point is instantaneously at rest. The static friction that enforces rolling does no work; we track its direction from the tendency to slip, and mark exactly where the model breaks once the required friction exceeds $\\mu_sN$.\n",{"path":3944,"title":3945,"module":3933,"summary":3946},"\u002Fmechanics\u002Frotation\u002Fangular-momentum","Angular Momentum","A skater pulls in her arms and spins faster, with no torque acting: that is angular momentum conservation, and it lets us answer questions that would be hopeless force by force. We build $\\vec L=\\vec r\\times\\vec p$, show it obeys $\\vec\\tau_{ext}=\\d\\vec L\u002F\\d t$, and use its conservation under zero external torque to link before and after in collisions, reconfigurations, and coupled rotors without ever resolving the internal forces. The catch is bookkeeping: the origin, the system boundary, and the frame must be fixed first, and a change in total $\\vec L$ always points to an external impulse someone forgot.\n",{"path":3948,"title":3949,"module":3933,"summary":3950},"\u002Fmechanics\u002Frotation\u002Frolling-resistance","Rolling Resistance","Ideal rolling should coast forever, yet every real wheel slows down. The reason is that a deformable tire and road do not press through a single point: the contact patch spreads, the normal-force resultant shifts ahead of the axle, and that offset is a resisting moment even with no gross sliding. We package it as an equivalent force $F_{rr}=C_{rr}N$, tie the coefficient to load, surface, speed, and temperature, and use coast-down, towing, and traction tests to separate this contact loss from aerodynamic drag, bearing friction, and the adhesion limit where rolling gives way to skidding.\n",{"path":3952,"title":3953,"module":3933,"summary":3954},"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession","Gyroscopic Precession","A spinning top leans over but does not fall — it swings its axis in a slow horizontal circle instead. The paradox dissolves once torque is read as the rate of change of a vector: gravity's torque is perpendicular to the spin angular momentum, so it turns $\\vec L$ rather than toppling it. We derive the steady precession rate $\\Omega\\simeq Mgr\u002F(I_s\\omega_s)$ in the fast-top limit, state the assumptions it leans on — dominant spin, slow tilt, negligible bearing torque — and read nutation, support motion, and a decaying spin as the ways real gyroscopes depart from it.\n",{"path":3956,"title":3957,"module":3958,"summary":3959},"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits","Keplerian Orbits","Gravitation and Matter","Why do the planets trace ellipses rather than any other curve? Newton's inverse-square law collapses the two-body problem onto a single conic section, and the answer falls out of two conserved quantities: a central force can exert no torque, so angular momentum is fixed, and gravity is conservative, so energy is fixed. We read an orbit's size and shape straight off those invariants, recover all three of Kepler's laws, and derive escape speed, the vis-viva relation, and the timing of a pass. We also mark where the ideal ellipse breaks down — drag, oblateness, and a third body slowly move a real orbit.\n",{"path":3961,"title":3962,"module":3958,"summary":3963},"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields","Gravitational Fields","Instead of tracking the force between every pair of masses, we attach a field to the source and ask a test mass to read it off locally. That move pays off because gravity is conservative: the field is the gradient of a single scalar potential, and potentials from many sources simply add. We build the field-potential picture, use spherical symmetry and the shell theorem to get the point-mass exterior field and the zero interior field of a shell, and read tides straight out of the field's gradient. Along the way we mark exactly when the constant-$g$ and point-mass shortcuts hold and when a shape correction is needed.\n",{"path":3965,"title":3966,"module":3958,"summary":3967},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium","Static Equilibrium","What does it take for a loaded structure to stay put? A body at rest needs its forces to cancel and its turning effects to cancel — $\\sum\\vec F=0$ and $\\sum\\vec\\tau=0$ about any point — and almost all of statics is the craft of turning a physical setup into those equations. We build free-body diagrams, replace supports, cables, friction, couples, and distributed loads with their idealized reactions, and locate the centre of gravity that decides whether a body tips. We also count equations against unknowns to separate a determinate problem from one that needs the material's deformation to resolve, and read every negative or inconsistent reaction as a sign that a contact or a boundary was chosen wrong.\n",{"path":3969,"title":3970,"module":3958,"summary":3971},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics","Fluid Statics","A fluid at rest cannot support a shear, so the only stress it carries is a pressure that must grow with depth to hold up the fluid above it. That single balance, $\\d p\u002F\\d z=-\\rho g$, runs the whole subject: it sets manometer readings, the force on a dam, and — integrated over a submerged boundary — Archimedes' buoyant force $F_B=\\rho g V_{\\rm disp}$. We derive these, use them to decide when a body floats and whether it floats upright, and mark where acceleration, rotation, compressibility, or capillarity forces a richer pressure model.\n",{"path":3973,"title":3974,"module":3958,"summary":3975},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow","Fluid Flow","Two accounting rules carry most of steady flow: mass cannot pile up, so the same volume crosses every section each second, and mechanical energy is conserved along a streamline when the fluid is ideal. From those we get continuity, Bernoulli's relation between pressure, speed, and height, and the results that follow — Torricelli's efflux speed, the Venturi meter, the Pitot tube. We then let go of the ideal assumptions one at a time: viscosity adds wall shear and head loss, Reynolds number decides laminar versus turbulent, and Mach number marks where a gas stops behaving as incompressible.\n",{"path":3977,"title":3978,"module":3958,"summary":3979},"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion","Orbital Motion","A circular orbit is nothing but free fall with enough sideways speed to keep missing the ground, and setting gravity equal to the centripetal requirement fixes that speed and the period once and for all. From the same energy bookkeeping we read off escape speed, sort orbits into bound, parabolic, and hyperbolic by the sign of their specific energy, and see why a tangential burn is the efficient way to change an orbit. We build the Hohmann transfer and its launch window, work the numbers for a geostationary orbit and an escape burn, and mark where finite thrust, perturbations, and an uncertain initial state pull a real trajectory off the ideal.\n",{"path":3981,"title":3982,"module":3958,"summary":3983},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity","Stress and Elasticity","Rigid bodies are a fiction; every real material stretches, shears, or squeezes under load, and the useful question is how much. We define stress as force per area and strain as fractional deformation, then find that for small deformations the two are simply proportional — Hooke's law — with Young's, shear, and bulk moduli as the constants for stretch, twist, and volume change. From these we compute extensions, torsional twist, and stored elastic energy, and read a tensile curve for the yield, ultimate, and fracture points where linear elasticity ends. We also mark the practical limits: stress concentrations, fatigue, and the multiaxial states a single uniaxial modulus cannot capture.\n",{"path":3985,"title":3986,"module":3987,"summary":3988},"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators","Damped Oscillators","Oscillations and Waves","Every real oscillator eventually stops: friction, drag, and internal loss drain its energy, so free motion is a decay rather than a permanent swing. Adding a velocity-proportional resistance to the spring-mass equation produces one dimensionless number, $b\u002F(2\\sqrt{mk})$, that decides whether the mass rings down through many cycles, returns once without overshoot, or crawls back slowly. We solve the three regimes, tie the observed decay to the power balance $b\\dot x^2$, and turn a measured ring-down into the decay rate and quality factor of the apparatus — reading damping off the data instead of assuming it.\n",{"path":3990,"title":3991,"module":3987,"summary":3992},"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves","Travelling Waves","A wave carries a shape, not the material: each element of a rope or air column oscillates in place while the disturbance travels through it. Writing that shape as $f(x\\mp vt)$ turns \"the pattern moves\" into a statement about the cosine's argument, and a local force balance on one string segment fixes the speed at $v=\\sqrt{T\u002F\\mu}$ — restoring stiffness over inertia, with amplitude nowhere in it. We build the sinusoidal wave and its phase, derive the wave equation from Newton's second law, and follow the energy a travelling wave transports, then check speed and power against those predictions.\n",{"path":3994,"title":3995,"module":3987,"summary":3996},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition","Wave Superposition","When two waves cross the same point, what does a probe read? In a linear medium the answer is arithmetic: the displacements add, $y=y_1+y_2$, and the pulses pass through each other unchanged. That one rule produces interference — reinforcement where the signs agree, cancellation where they oppose — and it guards against a common mistake, since displacement can vanish at an instant while the energy sits in transverse motion instead. We work out the signed sum, the phase bookkeeping for equal-frequency components, and why a null in the record is not a null in the wave.\n",{"path":3998,"title":3999,"module":3987,"summary":4000},"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves","Standing Waves","Clamp a string at both ends and only certain frequencies survive: the ends must be nodes, and that single geometric demand quantizes the wave into a discrete set of modes $f_n=nv\u002F(2L)$. The travelling wave becomes a fixed pattern of nodes and antinodes — standing, not moving — because equal waves running in opposite directions superpose. We build the standing wave from its counter-propagating pieces, read the harmonic sequence off the boundary conditions (half-wavelengths for a fixed-fixed string, odd quarter-wavelengths for a closed pipe), and test the ideal model against node scans and resonance peaks.\n",{"path":4002,"title":4003,"module":3987,"summary":4004},"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves","Sound Waves","Sound is a pressure wave so small that a loud tone displaces air molecules by less than the width of an atom, yet a microphone reads it easily — because pressure, not displacement, is what the ear and the instrument sense. The acoustic impedance $Z=\\rho c$ ties pressure, density, and particle velocity together, fixes the intensity a wave carries, and sets the reference for the decibel, a logarithm that tames a $10^{12}$ range in power. We derive the sound speed from the gas's stiffness, convert between pressure and intensity levels, and treat the measurement itself — calibration, geometry, background, averaging — as part of the physics.\n",{"path":4006,"title":4007,"module":3987,"summary":4008},"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect","Doppler Effect","A passing siren drops in pitch not because the source changes but because motion repacks the wavefronts: an approaching source crowds its crests, a receding one stretches them, and a moving listener samples them at a different rate. For mechanical waves every velocity is measured against the medium, and one signed ratio $f_r=f_s(v-u_r)\u002F(v-u_s)$ captures both effects at once. We separate source motion, which sets crest spacing, from receiver motion, which sets arrival rate, invert the shift to recover radial velocity, and mark where the model breaks — supersonic sources, moving air, and reflected paths that carry two shifts, not one.\n",{"path":4010,"title":4011,"module":3987,"summary":4012},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets","Wave Packets","No real signal is a single frequency: a disturbance that starts and stops is built from a band of wave numbers, and the width of that band is what makes it local. We ask how such a packet moves — carrier crests at the phase velocity $v_\\mathrm p=\\omega\u002Fk$, the envelope at the group velocity $v_\\mathrm g=\\d\\omega\u002F\\d k$ — and why the two differ once a medium is dispersive. Curvature $\\d^2\\omega\u002F\\d k^2$ spreads and chirps the packet as it travels, and the Fourier reciprocity that ties bandwidth to duration explains why a finite record, aliasing, or a coarse probe can imitate that spreading unless the sampling limits are respected.\n",{"path":4014,"title":4015,"module":3987,"summary":4016},"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling","Beats and Coupling","Add two tones a few hertz apart and the sum swells and fades at their difference frequency — a beat — though neither source is changing. We work out that envelope, then ask the mechanical version of the same question: join two oscillators and a single resonance splits into normal modes, with energy sloshing between the coordinates at their frequency difference. The lesson identifies when a slow amplitude envelope signals genuine coupling rather than two independent sources, drift, or deliberate modulation, reading it from envelope timing, spectral sidebands, and the mode shapes.\n",{"path":4018,"title":4019,"module":3987,"summary":4020},"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion","Simple Harmonic Motion","Any system pushed back toward equilibrium by a force proportional to its displacement obeys one equation, $\\ddot x+\\omega_0^2x=0$, and so moves sinusoidally at $\\omega_0=\\sqrt{k\u002Fm}$ whatever the amplitude. We derive that motion, follow its energy $E=mv^2\u002F2+kx^2\u002F2$ trading between kinetic and potential form at constant total, and read the elliptical phase-space orbit Hooke's law implies. Period, amplitude, velocity, and acceleration then supply redundant checks: an amplitude-dependent period or a curved force residual is the signature that the linear model has failed, and mass-loading and offset tests separate a calibration error from a real frequency shift.\n",{"path":4022,"title":4023,"module":3987,"summary":4024},"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion","Pendulum Motion","A pendulum keeps time only because, for small swings, gravity supplies a restoring torque proportional to the angle — and $T=2\\pi\\sqrt{L\u002Fg}$ then follows without the mass appearing at all. We derive that result, mark exactly which assumptions carry it (small angle, negligible pivot loss, a rigid support), then relax them: finite amplitude lengthens the period through an elliptic integral, and an extended body replaces $L$ with the ratio of its moment of inertia to its center-of-mass distance. How the period drifts with amplitude or pivot position is what diagnoses the geometric, damping, and distributed-mass corrections.\n",{"path":4026,"title":4027,"module":3987,"summary":4028},"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators","Driven Oscillators","Drive a damped oscillator at a frequency you control and it eventually forgets its own: $m\\ddot x+b\\dot x+kx=F_0\\cos\\omega t$ settles into a steady response whose amplitude and phase depend sharply on how close the drive sits to resonance. We solve for that response, show how damping alone fixes the resonance width, the peak power, and the settling time, and treat base excitation as the same problem with a different input. The steady-state formulas hold only for constant $m$, $b$, and $k$; level-dependent peaks or hysteresis between up- and down-sweeps are how nonlinearity or an extra mode announces itself.\n",{"path":4030,"title":4031,"module":3987,"summary":4032},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries","Wave Boundaries","A pulse traveling along a string does something abrupt where the string's properties change: part reflects, part transmits, and which is which is set by the impedance mismatch alone. We impose continuity of displacement and transverse force at the join to get the reflection and transmission coefficients in terms of $Z=\\sqrt{T\\mu}$, fix their signs and the polarity flip, and balance the energy. The clean result assumes linear, nondispersive segments meeting at a localized join; pulse polarity, return timing, and energy ratios are the measurements that expose a real connector's mass, loss, or distributed transition.\n",{"path":4034,"title":4035,"module":4036,"summary":4037},"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases","Kinetic Theory of Ideal Gases","Thermodynamics","A gas has no springs and no gears, yet it pushes on its container with a definite pressure and stores energy in a lawful way. Kinetic theory explains both from the motion of the molecules alone: pressure is the accumulated recoil of countless elastic impacts, and temperature is the average translational kinetic energy each molecule carries. We derive $pV=\\tfrac13Nm\\overline{v^2}$ from momentum transfer, read off $\\overline{K}_{\\rm tr}=\\tfrac32kT$, and use the Maxwell–Boltzmann distribution to separate the most probable, mean, and rms speeds — each the right average for a different question — while marking where the dilute, classical assumptions stop holding.\n",{"path":4039,"title":4040,"module":4036,"summary":4041},"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics","First Law of Thermodynamics","Heat a gas and it may warm, expand, or both; compress it and the same energy can reappear as a temperature rise. The first law settles the bookkeeping: internal energy is a state property whose change equals the heat added plus the work done on the system, $\\Delta E_{\\rm int}=Q_{\\rm in}+W_{\\rm on}$. We fix a system boundary and one sign convention, compute boundary work as $\\int p\\,\\d V$ along a path, and use calorimetry to measure heat and heat capacities. The recurring point is that heat and work are path-dependent transfers while their sum is not, so an energy ledger closes only once every boundary crossing is named.\n",{"path":4043,"title":4044,"module":4036,"summary":4045},"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law","Entropy and the Second Law","The first law lets energy flow either way; it never says which way heat actually goes. The second law supplies the missing arrow. Entropy, defined through the reversible transfer $\\d S=\\delta Q_{\\rm rev}\u002FT$, can only increase in an isolated system, and that single inequality fixes the direction of heat flow and caps every engine, refrigerator, and heat pump at its Carnot value. We build entropy ledgers for reservoirs and working substances, separate the entropy carried by heat from the entropy generated by irreversibility, and read the sign of the total as a hard check on any proposed thermal machine.\n",{"path":4047,"title":4048,"module":4036,"summary":4049},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes","Thermal Processes","Heat rarely sits still: it stretches solids, pushes real gases off their ideal isotherms, and leaks across walls by conduction, convection, and radiation. Each behavior becomes a number a designer can use. Thermal expansion sets the gaps in a bridge and the stress in a clamped rod; the van der Waals equation and a phase diagram fix when $pV=nRT$ or a latent-heat term applies; Fourier's law, Newton cooling, and Stefan–Boltzmann radiation give the rate of heat flow. We assemble these into thermal-resistance networks and transient time constants, then mark where contact resistance, phase change, or a hidden thermal bridge breaks the simple model.\n",{"path":4051,"title":4052,"module":4036,"summary":4053},"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes","Phase Changes","Add heat to ice and its temperature climbs — until it reaches $0\\ ^\\circ\\mathrm C$, where the thermometer stalls while the ice melts. That plateau is the whole subject: at a phase boundary the energy rearranges molecules, $Q=mL$, instead of raising temperature, which resumes only once one phase is gone. We stage a heating path into sensible-heat legs ($Q=mc\\Delta T$) and latent plateaus, use the Clausius–Clapeyron relation to track how a boiling point moves with pressure, and solve calorimetry by testing each coexistence endpoint — so a melt fraction that lands outside $[0,1]$ flags a wrong final-state guess rather than a real state.\n",{"path":4055,"title":4056,"module":4036,"summary":4057},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines","Thermal Machines","An engine, a refrigerator, and a heat pump are one machine read three ways: each shuttles heat between a hot and a cold reservoir while trading work at the boundary, and only the flow you call useful separates them. A heat engine turns part of $Q_h$ into work, $W=Q_h-Q_c$; a refrigerator spends work to pull $Q_c$ from the cold side; a heat pump counts the warm-side delivery instead. We measure each with its own ratio — efficiency or coefficient of performance — bound them all by the Carnot limit that reservoir temperatures alone set, and track how finite temperature differences, throttling, and friction generate entropy and pull real machines below that bound.\n",{"path":4059,"title":4060,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":4062,"title":4063,"module":4064,"summary":4065},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors","Charge and Conductors","Electric Fields","Rub two objects together and one pulls electrons from the other; nothing is created, only moved. We define what electric charge is — conserved, additive, and quantized in units of $e$ — and why a conductor's mobile carriers rearrange until its interior field vanishes and its surface sits at one potential. We follow charge through contact, induction, and grounding, treat the field-free cavity that turns a conductor into a shield, and mark where finite conductivity and leakage set the limits of the electrostatic picture.\n",{"path":4067,"title":4068,"module":4064,"summary":4069},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law","Coulomb's Law","Two charges at rest push or pull along the line joining them, and the whole of electrostatics is assembled by adding up such pairs. We measure that force — its inverse-square falloff, its linear dependence on each charge, the sign that says attract or repel — and write it as a vector so direction survives superposition. We work the magnitude and component forms on real numbers, check them against limiting cases and dimensions, and fix the point-charge approximation to source sizes small against every separation.\n",{"path":4071,"title":4072,"module":4064,"summary":4073},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force","Electric Field and Force","Rather than ask how one charge reaches across empty space to another, we credit the source with a field that fills the space and let a second charge respond to whatever field sits at its own location. Electric field is force per unit positive test charge, $\\vec E=kq\\hat r\u002Fr^2$ for a point source, and source fields add before any receiving charge is placed. We compute those fields and the force $\\vec F=q\\vec E$ they exert, then follow a charge along its parabolic path through a uniform field and into nonuniform fields where the dynamics turn position-dependent.\n",{"path":4075,"title":4076,"module":4064,"summary":4077},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps","Electric Field Maps","A field is a vector at every point of space, and the quickest way to grasp one is to draw it. We build the two standard pictures — continuous field lines tangent to $\\vec E$, and scaled vector arrows — and read direction, magnitude, and the location of nulls straight off them. We fix what a line drawing can and cannot say: density encodes magnitude only under a stated seeding rule, and integral curves never cross at a regular point. From there we work the topology near sources, sinks, and conductor surfaces, and state the step-size and interpolation checks a numerical map must pass.\n",{"path":4079,"title":4080,"module":4064,"summary":4081},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles","Electric Dipoles","Most neutral matter carries no net charge yet still responds to an electric field, because its positive and negative charge sit slightly apart. That separation is a dipole, moment $\\vec p=q\\vec d$ pointing from the negative to the positive charge, and it is the leading term in how any neutral distribution looks from far away. We derive the torque $\\vec p\\times\\vec E$ and energy $-\\vec p\\cdot\\vec E$ a uniform field imposes, the net force a field gradient adds, and the axial and equatorial $1\u002Fr^3$ fields the pair produces, then measure how far out the point-dipole approximation still holds.\n",{"path":4083,"title":4084,"module":4085,"summary":4086},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields","Continuous Charge Fields","Continuous Charge Distributions","A charged rod, ring, or disk is not a point, yet its field is still nothing but Coulomb's law added up over the charge it carries. We replace the discrete sum by an integral, with $\\d q=\\lambda\\d\\ell$, $\\sigma\\d A$, or $\\rho\\d V$, so the real work becomes geometry: writing the vector from each source element to the field point, and letting symmetry cancel the components that must cancel before any integral is attempted. We carry the line, ring, and disk fields through in full, then check each result against its near field, its far field, and its dimensions.\n",{"path":4088,"title":4089,"module":4085,"summary":4090},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors","Gauss's Law and Conductors","Adding up Coulomb's law over a whole distribution is laborious; Gauss's law trades that sum for a single statement, that the flux of $\\vec E$ out of any closed surface counts the charge inside, $\\oint\\vec E\\cdot\\d\\vec A=Q_{\\rm enc}\u002F\\varepsilon_0$. The law is always true, but it hands over the field only when the source is symmetric enough to pull $E$ outside the integral. We apply it to spheres, lines, and sheets, then turn it on conductors, where the zero interior field drives every excess charge to the surface and fixes the normal-field jump $\\sigma\u002F\\varepsilon_0$, the charge induced on a cavity wall, and electrostatic shielding.\n",{"path":4092,"title":4093,"module":4094,"summary":4095},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential","Point-Charge Potential","Electric Potential","The electrostatic force is conservative, so the work it does between two points\ndepends only on the endpoints. That lets us trade the vector field for a single\nscalar attached to each point, the electric potential, the potential energy a unit\ncharge would have there. We build potential from the work integral, fix the usual\nreference at infinity, and add point sources as scalars, $V=k\\sum_i q_i\u002Fr_i$,\navoiding the vector bookkeeping the field demands. Signed charges, the reference\nchoice, equipotential motion, and far-field expansions each give an independent\ncheck on a result.\n",{"path":4097,"title":4098,"module":4094,"summary":4099},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials","Potential Gradients and Equipotentials","Given the potential everywhere, how do we recover the field? The field is the\nnegative gradient, $\\vec E=-\\nabla V$: it points down the steepest local drop in\npotential, and its magnitude is set by how fast $V$ changes, not by the shape of a\ncontour. We read off components with directional derivatives, reconstruct fields\nfrom measured potential grids using centered differences, and use closed-loop\nintegrals and grid refinement to test whether a reconstructed field is physically\nconsistent.\n",{"path":4101,"title":4102,"module":4094,"summary":4103},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure","Electrostatic Energy and Pressure","Assembling a charge configuration takes work, and that work is stored, but where\nis it kept and how much is there? We total it two ways: as a sum over the charges,\n$U=\\tfrac12\\sum_i q_iV_i$, and as an integral over the field itself,\n$u_E=\\tfrac12\\varepsilon_0E^2$, energy the field carries in every region it fills.\nDifferentiating the stored energy at fixed charge or at fixed voltage recovers the\nmechanical force on a conductor, and at a charged surface the same field scale\nappears as an outward electrostatic pressure. We work the parallel-plate case in\nfull and mark where curvature and fringing make the pressure nonuniform.\n",{"path":4105,"title":4106,"module":4094,"summary":4107},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems","Laplace Boundary Problems","Often the charges are not given, only the conductors and the voltages held on\nthem, and the potential in the empty space between has to be found. There $V$ obeys\nLaplace's equation $\\nabla^2V=0$, and the boundary data alone determine a unique solution.\nWe solve it two ways: separation of variables into boundary-matched modes, whose\nhigher spatial frequencies die away with depth into the domain, and finite-difference\nrelaxation for boundaries no analytic mode fits. Residual norms, boundary error, and\nflux balance tell us when the computed potential and its field can be trusted.\n",{"path":4109,"title":4110,"module":4094,"summary":4111},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials","Continuous Charge Potentials","When charge is spread over a line, a surface, or a volume, the sum over point\nsources becomes an integral, $V(\\vec r)=k\\int \\d q\u002F|\\vec r-\\vec r'|$. Because\npotential is a scalar, this integral sidesteps the component algebra the field\nwould force, until the field is actually wanted through $\\vec E=-\\nabla V$. We set\nup the right density element for each geometry, choose a workable reference, handle\nthe integrable singularities that arise when the observation point sits on the\ncharge, and check every result against symmetry, dimensions, and the far-field\nmultipole limit.\n",{"path":4113,"title":4114,"module":4115,"summary":4116},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals","Capacitance Fundamentals","Capacitance","How much charge must you separate onto two conductors to hold a given voltage between\nthem? That ratio, $C=Q\u002F\\Delta V$, is fixed by the conductor geometry and the medium,\nnot by how much charge is presently stored. We compute it from the field for the\nparallel-plate, isolated-sphere, concentric-sphere, and coaxial geometries, trace how\nsurface charge and boundary conditions set each result, and see where fringing,\nguarding, and stray coupling separate the ideal formula from what a bridge measures.\n",{"path":4118,"title":4119,"module":4115,"summary":4120},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks","Capacitor Networks","Wire several capacitors together and the source sees one equivalent capacitance — but\nwhich? The answer comes not from how the symbols are drawn but from which conductors\nshare a node: parallel branches hold a common voltage and add, $C_{\\rm eq}=\\sum_iC_i$,\nwhile series branches share a common charge and add reciprocally. We derive both rules\nfrom charge conservation on the floating internal node, then extend the node-charge\nmethod to unequal, precharged, and stray-coupled branches and carry a worked reduction\nthrough to the charge and voltage on every element.\n",{"path":4122,"title":4123,"module":4115,"summary":4124},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force","Capacitor Energy and Force","Charging a capacitor takes work, because every increment of charge is pushed through\nthe voltage the earlier charge already established. We total that work three\nequivalent ways, $U=Q^2\u002F(2C)=Q\\Delta V\u002F2=C(\\Delta V)^2\u002F2$, locate it in the field as\na density $u=\\tfrac12\\epsilon_0E^2$, then let the plates move. Differentiating the\nstored energy at fixed charge, or the coenergy at fixed voltage, gives the mechanical\nforce; the two boundaries differ only by the work the source supplies. We work the\nparallel-plate attraction and its electrostatic pressure in full, and follow the same\ngradient into pull-in, tilt, comb drives, and traceable force calibration.\n",{"path":4126,"title":4127,"module":4115,"summary":4128},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown","Dielectric Polarization and Breakdown","Slide a dielectric between the plates and the capacitance rises — but why, and how\nhard can you drive it before the insulator fails? Bound charge answers the first:\npolarization $\\vec P$ sets up surface and volume charge that partly cancels the\napplied field, so $\\vec D=\\varepsilon_0\\vec E+\\vec P$ separates what the circuit\ncontrols from what the material contributes. We follow the field across layered\ndielectrics and interfaces, tie permittivity and loss to their frequency dependence,\nand treat dielectric strength as a measured, geometry-dependent limit rather than one\nmaterial number.\n",{"path":4130,"title":4131,"module":4132,"summary":4133},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance","Current and Resistance","Direct-Current Circuits","What does it mean, physically, for charge to flow, and what sets how hard a wire resists that flow? Current counts charge crossing a surface, $I=\\int\\vec J\\cdot\\d\\vec A$, and traces back to a slow drift of many carriers, $\\vec J=nq\\vec v_d$. We establish when the linear law $V=IR$ actually holds, how resistivity and geometry combine into bulk resistance, why real sources sag under load through their internal resistance, and how the three power forms $P=IV=I^2R=V^2\u002FR$ tie electrical work to heating and component ratings.\n",{"path":4135,"title":4136,"module":4132,"summary":4137},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis","Kirchhoff Network Analysis","Once a circuit has more than one loop, no amount of series-parallel folding will reduce it — you need the two conservation laws written as equations. Kirchhoff's junction law is charge conservation at a node; his loop law is energy conservation around a closed path. We turn a labelled network into a linear system in node voltages or mesh currents, fix the sign conventions so a negative answer just means a reversed arrow, and use power balance as an independent check that the algebra describes the circuit that was actually built.\n",{"path":4139,"title":4140,"module":4132,"summary":4141},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients","RC Transients","How does a circuit get from one steady state to the next when a capacitor refuses to change its voltage all at once? Because a jump would demand infinite current, an RC circuit slides between states exponentially, with a single time constant $\\tau=RC$ that sets the whole schedule: charging fills as $1-e^{-t\u002F\\tau}$, discharge empties as $e^{-t\u002F\\tau}$. We solve the first-order loop equation, read the response off three numbers — the switch-instant voltage, the final dc voltage, and the Thevenin resistance the capacitor sees — and mark where source and probe resistance shift $\\tau$ or where a second storage element hides a mode a one-$\\tau$ fit misses.\n",{"path":4143,"title":4144,"module":4145,"summary":4146},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories","Magnetic Trajectories","Magnetic Field","A charged particle in a magnetic field never speeds up or slows down, yet its path curves relentlessly. We work out why: the magnetic force is always perpendicular to velocity, so it does no work and bends the transverse motion into a circle of radius $r=mv_\\perp\u002F(|q|B)$ while leaving the parallel motion untouched, producing a helix. We derive the cyclotron frequency, show why it is independent of speed until relativity intervenes, and turn the geometry around: a measured curvature reads back a particle's momentum, which is how tracking detectors weigh what they cannot see.\n",{"path":4148,"title":4149,"module":4145,"summary":4150},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect","Hall Effect","Current tells you charge is moving, but not whether the movers are positive or negative, nor how many there are. A magnetic field settles both questions. Push current through a strip in a transverse field and the carriers pile up on one edge until a transverse electric field just balances the magnetic deflection; the sign of the resulting Hall voltage names the carrier's charge and its size counts the carriers per volume. We derive the balance $q\\vec E+q\\vec v_d\\times\\vec B=0$, read off $V_H=IB\u002F(nqt)$, and see why field-and-current reversal is what separates the real Hall signal from the offsets that mimic it.\n",{"path":4152,"title":4153,"module":4145,"summary":4154},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors","Magnetic Force on Conductors","A magnet pushes on a current-carrying wire even though the wire is electrically neutral. The reason is that each moving carrier feels the Lorentz force, and those microscopic pushes add up to a force the wire's supports must hold. We sum them into $\\d\\vec F=I\\,\\d\\vec\\ell\\times\\vec B$, collapse it to $\\vec F=I\\vec L\\times\\vec B$ for a straight segment in a uniform field, and see exactly when that shortcut fails and the full path integral is needed. The same law runs backward as a measurement: a force-versus-current slope weighs a magnetic field against a known length.\n",{"path":4156,"title":4157,"module":4145,"summary":4158},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles","Magnetic Dipoles","A compass needle turns to point north; a current loop in a field does the same thing, and for the same reason. Both are magnetic dipoles, and a uniform field cannot push a dipole anywhere, only twist it. We package a loop's response into one vector, the magnetic moment $\\vec\\mu=IA\\hat n$, from which torque $\\vec\\tau=\\vec\\mu\\times\\vec B$ and orientation energy $U=-\\vec\\mu\\cdot\\vec B$ both follow. Stable alignment sits at the energy minimum, a field gradient is what it takes to produce a net force $\\vec F=\\nabla(\\vec\\mu\\cdot\\vec B)$, and the same moment reappears whenever anything from an electron to a planet acts magnetic.\n",{"path":4160,"title":4161,"module":4145,"summary":4162},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry","Mass Spectrometry","To weigh a single atom you cannot use a scale, so you use a magnetic field instead. A charged ion of unknown mass bends in a field by an amount that depends on its momentum and charge, so if every ion enters with the same velocity, its landing position reads off its mass-to-charge ratio directly. We build the instrument in two stages: crossed electric and magnetic fields that pass only ions with $v=E\u002FB$, and a magnetic sector that bends the survivors along $r=mv\u002F(|q|B)$. Then we ask what blurs a spectral line and how reference ions turn a position into a calibrated mass.\n",{"path":4164,"title":4165,"module":4166,"summary":4167},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields","Moving-Charge Fields","Magnetic Sources","Every magnetic field comes from charge in motion, and the simplest source is a single point charge drifting past. We work out the field it produces — normal to both the velocity and the line of sight, falling off as the inverse square — and read off why it vanishes straight ahead of the charge and peaks broadside. Summing many such charges is the bridge to steady currents, valid while speeds stay far below $c$ and the motion changes little during the time its field takes to propagate outward.\n",{"path":4169,"title":4170,"module":4166,"summary":4171},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law","Biot–Savart Law","A steady current is a continuous stream of current elements, and the Biot–Savart law hands each one a magnetic contribution — a right-hand cross product that falls off as the inverse square of distance. Summing the contributions along a conductor is a vector line integral, which we carry out for the straight wire to get the endpoint-angle formula. The infinite-wire field $B=\\mu_0 I\u002F2\\pi s$ falls out as the limit where both ends recede, and we mark how fast a finite wire departs from it and when a thin-filament model is safe.\n",{"path":4173,"title":4174,"module":4166,"summary":4175},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops","Circular Current Loops","A ring of current is the simplest source with a well-defined magnetic axis, and it is the building block of every coil and electromagnet. Symmetry kills the transverse Biot–Savart contributions along that axis and leaves a single clean integral; we evaluate it to get $B_z=\\mu_0 I R^2\u002F[2(R^2+z^2)^{3\u002F2}]$, read off the centre field $\\mu_0 I\u002F2R$, and watch it fall into the $1\u002Fz^3$ tail of a magnetic dipole far away. Stacking turns just adds their axial contributions, which is what makes a solenoid out of a pile of loops.\n",{"path":4177,"title":4178,"module":4166,"summary":4179},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law","Ampère’s Law","When a current arrangement is symmetric enough, the Biot–Savart integral is overkill: Ampère's law, $\\oint_C\\vec B\\cdot\\d\\vec\\ell=\\mu_0 I_{\\rm enc}$, gets the field from a single line of reasoning about how much current a loop encloses. We see why the law holds for any steady current, then use cylindrical, planar, and toroidal symmetry to turn the circulation into simple algebra — the field inside and outside a wire, an infinite sheet, a solenoid, and a toroid. We also mark the catch: without symmetry the law still holds but no longer hands you the field pointwise.\n",{"path":4181,"title":4182,"module":4166,"summary":4183},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism","Gauss’s Law for Magnetism","Electric field lines start and end on charges; magnetic field lines do neither, because no one has ever found an isolated magnetic pole. That single experimental fact is Gauss's law for magnetism: the flux of $\\vec B$ through any closed surface is zero, $\\oint\\vec B\\cdot\\d\\vec A=0$, or in differential form $\\nabla\\cdot\\vec B=0$. We work through what it says — every field line that enters a closed surface must leave it, so field lines close on themselves — and, just as important, what it does not say, since flux through an open surface is generally nonzero.\n",{"path":4185,"title":4186,"module":4166,"summary":4187},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials","Magnetic Materials","Put matter in a magnetic field and its atoms respond, each acting as a tiny current loop; the aligned moments per unit volume are the magnetization $\\vec M$, whose bound currents add to the field. Separating what we control (the free current) from what the material supplies leads to $\\vec H$ and the relation $\\vec B=\\mu_0(\\vec H+\\vec M)$. We sort materials into diamagnets, paramagnets, and ferromagnets by how $\\vec M$ answers, follow a ferromagnet around its hysteresis loop, and see why the loop's area is the energy dissipated per cycle and why a sample's shape changes the field it actually feels.\n",{"path":4189,"title":4190,"module":4191,"summary":4192},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux","Magnetic Flux","Electromagnetic Induction","A magnetic field threading a loop collapses to one signed number, the flux, and every induced voltage in this module turns out to be a rate of change of that number — so defining the flux and its sign comes first. We define it as the surface integral of $\\vec B$ over an oriented surface, reduce it to $BA\\cos\\theta$ for a uniform field on a flat loop, and carry the flux linkage $N\\Phi_B$ of a coil. The chosen normal fixes the sign; reversing it flips the sign without touching the field. Nonuniform fields and curved surfaces force the integral, so we also build the numerical estimate and the checks that separate a reliable value from a nominal field-times-area product.\n",{"path":4194,"title":4195,"module":4191,"summary":4196},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law","Faraday's Law","Move a magnet toward a coil, or ramp the current in a nearby circuit, and a voltage appears with no battery in sight. Faraday's law names the cause: the emf around a loop equals minus the rate of change of the magnetic flux through it, so any change of field, area, orientation, or position that alters the flux drives an emf. We separate the emf, which lives around the boundary whether or not current can flow, from the current that follows only when the path is closed; fix the single sign convention that ties flux to loop orientation; and read the emf off rotating coils and off flux sampled at discrete times.\n",{"path":4198,"title":4199,"module":4191,"summary":4200},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law","Lenz's Law","The minus sign in Faraday's law is not decoration: it decides which way the induced current flows, and it always chooses the direction that fights the change that produced it. Lenz's law reads that sign off energy conservation — a current that aided the change would be free energy — and turns it into a repeatable procedure. We fix a surface normal and a positive loop direction so the sign is calculable, then work through approaching magnets, expanding loops, coupled coils, and rotating generators, using mechanical work and Joule heating as an independent check on every direction we draw.\n",{"path":4202,"title":4203,"module":4191,"summary":4204},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf","Motional EMF","Push a wire through a magnetic field and its free charges feel a sideways magnetic force that piles them up at the ends — a battery made of motion. Motional emf is that effect: the work per unit charge a moving conductor supplies is the line integral of $\\vec v\\times\\vec B$ along it, which for a rod moving perpendicular to both its length and the field collapses to $B\\ell v$. We chase where the energy comes from — the hand or motor fighting the magnetic drag, never the magnetic force itself — solve the sliding-rail circuit from both flux and carrier forces, and carry the idea into rotating rods, homopolar disks, generators, and the back emf of a motor.\n",{"path":4206,"title":4207,"module":4191,"summary":4208},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents","Eddy Currents","A wire carries current along one path; a solid block of metal offers a continuum of them, and any changing flux threading that block sets charge circulating in closed loops it chooses for itself. We ask what those eddy currents do — where they heat, where they drag, and how Lenz's law fixes their direction — and why the same circulation is a feature in an induction furnace and a loss to be suppressed in a transformer core. From a representative-loop estimate we get the scaling (heating grows with the square of frequency and flux rate) and the two design levers, lamination and resistivity, that break the paths a solid conductor would otherwise hand the current.\n",{"path":4210,"title":4211,"module":4191,"summary":4212},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance","Self-Inductance","A coil resists changes to its own current. Drive current through it and the flux it produces threads its own turns; change that current and Faraday's law turns the coil against the source with a back emf $\\mathcal E_L=-L\\,\\d I\u002F\\d t$. We define self-inductance as the flux linkage per ampere fixed by winding and core geometry, derive the long-solenoid value $L=\\mu_0 N^2A\u002F\\ell$, and follow the consequence that dominates circuits: because a finite voltage can only sustain a finite $\\d I\u002F\\d t$, an inductor's current cannot jump — which is why opening a switch on a live coil throws a spark.\n",{"path":4214,"title":4215,"module":4191,"summary":4216},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy","Magnetic Energy","Building current in a coil means working against its back emf, and that work does not vanish — it sits in the magnetic field as recoverable energy $U_B=\\tfrac12LI^2$, spread through space at density $u_B=B^2\u002F(2\\mu_0)$. We derive both forms, show they agree for a solenoid, and read a force out of the same energy: an armature is pulled toward higher inductance, and $B^2\u002F(2\\mu_0)$ doubles as a magnetic pressure. The lesson closes on the accounting a real switching event demands, where recoverable energy, copper heating, core loss, and clamp dissipation must balance a single ledger.\n",{"path":4218,"title":4219,"module":4191,"summary":4220},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits","RL Circuits","Put a resistor and an inductor in series and the current cannot switch on or off at will: it climbs to $V_0\u002FR$ and falls away exponentially on a single time scale $\\tau=L\u002FR$ set by how much flux the coil hoards against how fast the resistor bleeds it. We solve the turn-on and turn-off, then confront the practical sting — because the coil's current refuses to stop instantly, breaking its path throws up a large voltage, which is why real inductive circuits carry freewheel diodes and clamps that trade voltage stress against how quickly the current dies.\n",{"path":4222,"title":4223,"module":4224,"summary":4225},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals","AC Fundamentals","Alternating Current","A wall socket delivers a voltage that averages to zero over each cycle, yet it still heats a filament and runs a motor. The resolution is that dissipation follows the mean of the square, not the mean, so we define the root-mean-square value that makes an alternating source the equal of a DC one for resistive heating. We show a sinusoid's RMS is its peak divided by $\\sqrt2$, work out the average power an ideal resistor draws when its current stays in phase with the applied voltage, and separate the peak, average, and RMS descriptions that a single number cannot combine.\n",{"path":4227,"title":4228,"module":4224,"summary":4229},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance","Reactance","A resistor obeys Ohm's law instant by instant, but a capacitor responds to how fast its voltage changes and an inductor to how fast its current changes. Under a steady sinusoid that rate-dependence collapses to a fixed quarter-cycle phase shift and a frequency-dependent amplitude ratio, the reactance. We derive $X_C=1\u002F(\\omega C)$ and $X_L=\\omega L$, adopt phasors to turn the defining derivatives into multiplication by $j\\omega$ so a single complex impedance carries amplitude and phase together, and track the energy an ideal reactance stores and returns without dissipating it. Real windings and dielectrics add loss, leakage, and self-resonance that bound where the ideal formulas hold.\n",{"path":4231,"title":4232,"module":4224,"summary":4233},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance","RLC Resonance","Put a resistor, inductor, and capacitor in one loop and their reactances work against each other: inductive reactance grows with frequency while capacitive reactance shrinks, and at one frequency they cancel exactly. There the branch looks purely resistive, the current peaks, and the inductor and capacitor voltages can swing far above the source. We locate that resonance at $\\omega_0=1\u002F\\sqrt{LC}$, measure how sharp the peak is with the quality factor $Q=\\omega_0L\u002FR$, tie its half-power bandwidth $R\u002FL$ to the ringdown of the unforced circuit, and read the same poles off as bandpass and peaked filters at the R, L, or C terminals.\n",{"path":4235,"title":4236,"module":4224,"summary":4237},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power","AC Power","Multiply an AC load's RMS voltage by its RMS current and you get an answer in volt-amperes that the wiring must carry, but not in general the watts the load consumes. The phase between voltage and current splits that product into a part that does net work and a part that merely sloshes energy back and forth. We derive the average power $P=V_{\\rm rms}I_{\\rm rms}\\cos\\phi$, package amplitude and phase into complex power $S=P+jQ$ so that real, reactive, and apparent power form one right triangle, and see why a harmonic-rich current forces the time-domain definition $P=\\langle vi\\rangle$ in place of a single phase angle.\n",{"path":4239,"title":4240,"module":4224,"summary":4241},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers","Transformers","Two coils sharing an iron core exchange no charge, yet a changing current in one drives a voltage in the other, and the ratio of their turns sets how voltage and current trade off between the windings. That lets a transformer step a voltage up or down, isolate two circuits, and make a load look larger or smaller to the source by the square of the turns ratio. We build the ideal ratio element from Faraday's law and the dot convention, derive the reflected-impedance rule, then add the winding resistance, leakage, magnetizing current, and core loss that turn the ideal ratios into real regulation, efficiency, and a bounded voltage-frequency range.\n",{"path":4243,"title":4244,"module":4245,"summary":4246},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current","Displacement Current","Maxwell’s Equations and Electromagnetic Waves","Ampère's law asks for the current through a surface bounded by a loop, but a charging capacitor breaks it: slide the surface off the wire and into the gap and the enclosed conduction current drops to zero, while the magnetic field around the loop plainly does not. Maxwell's repair is to count a changing electric flux as itself a source of magnetic circulation. We derive the displacement-current term $\\varepsilon_0\\,\\d\\Phi_E\u002F\\d t$, show that charge continuity demands it, compute the magnetic field it produces inside a charging capacitor, and see how it closes the Ampère–Maxwell law so that electric and magnetic fields can sustain one another as a wave.\n",{"path":4248,"title":4249,"module":4245,"summary":4250},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves","Electromagnetic Waves","Once a changing electric flux can drive a magnetic field, the two curl laws feed each other: a disturbance in one regenerates the other, and the pair walks off through empty space with no medium holding it up. We take the curl of Faraday's law, land on a wave equation whose speed is fixed entirely by $\\mu_0$ and $\\varepsilon_0$, and find that $c=1\u002F\\sqrt{\\mu_0\\varepsilon_0}$ falls out of purely electric and magnetic constants. The plane-wave solution then fixes the geometry — $\\vec E$, $\\vec B$, and the propagation direction mutually perpendicular, oscillating in phase, with amplitudes locked at $E=cB$ — a set of independent predictions any real measurement must meet at once.\n",{"path":4252,"title":4253,"module":4245,"summary":4254},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum","Electromagnetic Momentum","A light beam carries no mass, yet it pushes: shine it on a surface and the surface feels a force. We trace that force back to the fields, which store energy with density $\\varepsilon_0E^2$ and carry it along the Poynting vector $\\vec S=\\vec E\\times\\vec B\u002F\\mu_0$. Because that energy also carries momentum $U\u002Fc$, an absorbed beam presses with $I\u002Fc$ and a mirror with $2I\u002Fc$. We derive the Poynting theorem as local energy conservation, tie intensity to field amplitude, and work the momentum balance carefully enough that oblique incidence, partial reflection, and finite beams all drop out of one accounting.\n",{"path":4256,"title":4257,"module":4245,"summary":4258},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation","Dipole Radiation","Only accelerating charge radiates, and the simplest accelerator is a charge sloshing back and forth: an oscillating electric dipole. We work out the field it throws off, keeping the part that survives to large distance — the $1\u002Fr$ radiation field whose intensity goes as $\\sin^2\\theta\u002Fr^2$, zero along the dipole axis and strongest broadside. From it follow the $\\omega^4$ scaling of total radiated power, radiation resistance as the feed's view of that escaping power, and, through reciprocity, the fact that a good transmitter receives well in the same directions. The near-zone terms that fall off faster carry no net power, and we mark carefully where each description is allowed to be used.\n",{"path":4260,"title":4261,"module":4245,"summary":4262},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization","Polarization","A plane wave still leaves one thing free: which way its electric field points as it oscillates. That freedom is polarization, set entirely by the relative amplitude and phase of the two transverse field components — in phase gives a line, equal amplitudes a quarter cycle apart give a circle, everything else an ellipse. We work out how a linear analyzer reads a state through Malus's law $I=I_0\\cos^2\\theta$, why that scan alone cannot tell circular light from unpolarized, and how a quarter-wave plate plus a few analyzer settings recover the full Stokes vector and the degree of polarization.\n",{"path":4264,"title":4265,"module":4266,"summary":4267},"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction","Reflection and Refraction","Geometrical Optics","Light meeting a boundary between two transparent media splits into a reflected ray and a bent transmitted one, and predicting where those rays go is the whole starting point of geometrical optics. Fixing one convention — every angle measured from the surface normal — we get reflection's equal angles and derive Snell's law $n_1\\sin\\theta_1=n_2\\sin\\theta_2$ from wavefront timing. That single relation, applied once or twice, yields the critical angle and total internal reflection, prism deviation, the lateral shift through a window, apparent depth, and a fiber's acceptance cone; a wavelength-dependent index then adds dispersion. We mark throughout where the ray picture is trustworthy: feature sizes large against the wavelength and clean interface geometry.\n",{"path":4269,"title":4270,"module":4266,"summary":4271},"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses","Thin Lenses","A lens gathers the light spreading from one point back onto another, and a single paraxial relation $1\u002Fs+1\u002Fs'=1\u002Ff$ predicts where that image lands and how large it is. We collapse two refractions into one bending plane, read image position and orientation off the three principal rays, and trace focal length back to glass and curvature through the lensmaker equation. Sign conventions carry the physics here — they separate real from virtual images and upright from inverted — so we drill them before chaining lenses in sequence and in contact. The lesson ends on how focal length is actually measured on a bench, and where finite thickness, aperture, and dispersion break the thin-lens picture.\n",{"path":4273,"title":4274,"module":4266,"summary":4275},"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors","Spherical Mirrors","Curve a mirror and it stops merely reflecting an image and starts forming one: the same $1\u002Fs+1\u002Fs'=1\u002Ff$ that governs lenses reappears, now with $f=R\u002F2$ and reflected rays and object sharing one side of the glass. We derive the mirror equation from the reflection geometry of a single paraxial ray, then let signed distances do the sorting — real inverted images on the near branch, virtual upright ones behind the surface — and check the concave, convex, and plane-mirror limits against each other. The second half turns to how focal length is actually measured on a bench, by finite conjugates, distant targets, return imaging, and sagitta, and to the aperture and off-axis aberrations the single paraxial focus cannot capture.\n",{"path":4277,"title":4278,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":4280,"title":4281,"module":4282,"summary":4283},"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms","Systems of Linear Equations and Row Reduction","Linear Equations in Linear Algebra","A linear system is a finite set of linear equations in shared variables. Elementary row operations rewrite it without changing its solution set, and reducing the augmented matrix to echelon form decides both existence and uniqueness. Pivot positions say whether the solution set is empty, a single point, or infinite.\n",{"path":4285,"title":4286,"module":4282,"summary":4287},"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations","Vector Equations and the Matrix Equation Ax = b","The same linear system reads three equivalent ways: a system of equations, a vector equation asking whether b is a linear combination of fixed vectors, and a matrix equation Ax = b. Ax is the linear combination of A's columns weighted by x, so consistency for a given b means b lies in the span of the columns, and consistency for every b means the columns span all of R^m.\n",{"path":4289,"title":4290,"module":4282,"summary":4291},"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications","Solution Sets and Applied Linear Systems","A homogeneous system Ax = 0 has a solution set that is a span through the origin; a consistent Ax = b has that same span translated by any one particular solution. Parametric vector form writes both explicitly. The structure shows up in applied systems with many solutions: equilibrium prices, balanced chemical reactions, network flows, weight-loss diets, and migration models.\n",{"path":4293,"title":4294,"module":4282,"summary":4295},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence","Linear Independence","A set of vectors is linearly independent when the only linear combination equal to zero is the trivial one; otherwise a dependence relation writes one vector in terms of the others. For the columns of A the question becomes whether Ax = 0 has only the trivial solution — a pivot in every column. Counting pivots settles independence, and any set with more vectors than entries is automatically dependent.\n",{"path":4297,"title":4298,"module":4282,"summary":4299},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations","Linear Transformations and Their Matrices","Reading A as an action rather than an array, x maps to Ax is a transformation from R^n to R^m. The ones that preserve addition and scalar multiplication are the linear transformations, and every one is x maps to Ax for a unique standard matrix whose columns are the images of the standard basis vectors. Onto and one-to-one translate into the span and independence of those columns.\n",{"path":4301,"title":4302,"module":4303,"summary":4304},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations","Matrix Operations","Matrix Algebra","Matrices add and scale entrywise, but their product is defined so that multiplication corresponds to composition of linear maps: the columns of AB are A applied to the columns of B. From that requirement follow the row-column rule, the algebra of products (associative and distributive but not commutative), powers, and the transpose.\n",{"path":4306,"title":4307,"module":4303,"summary":4308},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility","The Inverse and the Invertible Matrix Theorem","The inverse of a square matrix is the matrix analogue of a reciprocal, defined by AA⁻¹ = I. A closed form settles the 2×2 case; the Gauss–Jordan algorithm row reduces [A | I] to [I | A⁻¹] in general; and elementary matrices record single row operations. The Invertible Matrix Theorem collects a dozen equivalent conditions for invertibility into one statement.\n",{"path":4310,"title":4311,"module":4303,"summary":4312},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu","Block Matrices and the LU Factorization","Partitioning a matrix into blocks lets sums, products, and inverses be computed block by block, as if the submatrices were scalars. Block structure also underlies the LU factorization A = LU, which splits solving Ax = b into two fast triangular solves and repays the cost whenever many systems share one coefficient matrix.\n",{"path":4314,"title":4315,"module":4303,"summary":4316},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank","Subspaces of Rⁿ, Dimension, and Rank","A subspace is a set closed under addition and scalar multiplication. Every matrix carries two: the column space of all attainable outputs Ax, and the null space of all solutions of Ax = 0. A basis measures each with a minimal spanning set, dimension counts it, and the Rank Theorem ties pivots and free variables together as rank + nullity = n.\n",{"path":4318,"title":4319,"module":4303,"summary":4320},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics","Applications: Leontief Economics and Computer Graphics","The Leontief input–output model balances an economy through (I − C)x = d and expands the inverse as a geometric series in the consumption matrix. Computer graphics moves figures with matrix products, using homogeneous coordinates so that translation and perspective projection become matrix multiplications too.\n",{"path":4322,"title":4323,"module":4324,"summary":4325},"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors","Introduction to Determinants","Determinants","The determinant of a square matrix is defined recursively by cofactor expansion: an n-by-n determinant is a signed sum of (n-1)-by-(n-1) determinants built from the first row. The expansion can equally run along any row or down any column, and a triangular matrix has determinant equal to the product of its diagonal.\n",{"path":4327,"title":4328,"module":4324,"summary":4329},"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants","Properties of Determinants","Row operations act on the determinant in three predictable ways, and this turns row reduction into a fast algorithm: the determinant is the product of the pivots times a sign for the interchanges. The same properties yield the invertibility test det A is nonzero, the transpose identity, and the multiplicative law det(AB) equals det A times det B.\n",{"path":4331,"title":4332,"module":4324,"summary":4333},"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area","Cramer's Rule, Volume, and Linear Transformations","Cramer's rule writes each unknown of an invertible system as a ratio of determinants, and the same idea gives a closed formula for the inverse through the adjugate. Geometrically the absolute determinant is the area of the parallelogram or the volume of the parallelepiped spanned by the columns, so a linear map scales every region's measure by that factor.\n",{"path":4335,"title":4336,"module":4337,"summary":4338},"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces","Vector Spaces and Subspaces","Vector Spaces","A vector space is any set closed under addition and scalar multiplication that obeys ten algebraic axioms. The same axioms that govern arrows in the plane govern polynomials, functions, matrices, and infinite signals, so one theory covers them all. A subspace is a subset that is a vector space in its own right, tested by three conditions, and the span of any set of vectors is the smallest subspace containing them.\n",{"path":4340,"title":4341,"module":4337,"summary":4342},"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces","Null Spaces, Column Spaces, and Linear Transformations","Two subspaces sit inside every matrix. The null space collects all solutions of $Ax = 0$ and lives in the domain; the column space collects every attainable $Ax$ and lives in the codomain. One is defined implicitly by a condition, the other explicitly by a spanning set, and the same pair appears for an abstract linear transformation as its kernel and range.\n",{"path":4344,"title":4345,"module":4337,"summary":4346},"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets","Linearly Independent Sets and Bases","A basis is a spanning set with no redundancy: linearly independent and still large enough to reach every vector. The spanning-set theorem shows any spanning set can be trimmed to a basis by discarding dependent vectors, and the pivot columns of a matrix give a basis for its column space. Independence and spanning are defined for abstract spaces exactly as in $\\mathbb{R}^n$.\n",{"path":4348,"title":4349,"module":4337,"summary":4350},"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems","Coordinate Systems","Fixing a basis assigns every vector a unique list of coordinates, turning an abstract space into $\\mathbb{R}^n$. The coordinate mapping is a one-to-one linear transformation onto $\\mathbb{R}^n$ — an isomorphism — so any $n$-dimensional space is indistinguishable from $\\mathbb{R}^n$ as far as vector-space computations go. In $\\mathbb{R}^n$ the change-of-coordinates matrix $P_B$ and its inverse convert between basis coordinates and standard coordinates.\n",{"path":4352,"title":4353,"module":4337,"summary":4354},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank","The Dimension of a Vector Space and Rank","Every basis of a space has the same number of vectors, and that number is the dimension. Rank is the dimension of the column space, equal to the dimension of the row space and to the number of pivots. The Rank Theorem, rank plus nullity equals the number of columns, ties the four fundamental subspaces of a matrix together and adds six lines to the Invertible Matrix Theorem.\n",{"path":4356,"title":4357,"module":4337,"summary":4358},"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis","Change of Basis","Two bases give the same vector two different coordinate vectors, and a single invertible matrix converts between them. Its columns are the coordinate vectors of the old basis expressed in the new one, and its inverse reverses the conversion. In $\\mathbb{R}^n$ the change-of-coordinates matrix between two bases is found by one row reduction.\n",{"path":4360,"title":4361,"module":4337,"summary":4362},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov","Applications: Difference Equations and Markov Chains","The solutions of an nth-order linear difference equation form an $n$-dimensional vector space, so finding $n$ independent solutions gives them all. A Markov chain evolves a probability distribution by repeated multiplication by a stochastic matrix, and a regular chain converges to a unique steady-state vector fixed by that matrix. Both applications turn a dynamic process into a subspace or a fixed-point question.\n",{"path":4364,"title":4365,"module":4366,"summary":4367},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues","Eigenvectors and Eigenvalues","Eigenvalues and Eigenvectors","An eigenvector of a square matrix is a nonzero vector the matrix only stretches; its eigenvalue is the stretch factor. The eigenspace of an eigenvalue is the null space of A minus lambda times the identity, the eigenvalues of a triangular matrix are its diagonal entries, and eigenvectors for distinct eigenvalues are linearly independent.\n",{"path":4369,"title":4370,"module":4366,"summary":4371},"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation","The Characteristic Equation","The eigenvalues of a matrix are the roots of its characteristic polynomial det(A minus lambda I). This degree-n polynomial carries an algebraic multiplicity at each repeated root, a nonzero determinant is equivalent to zero not being an eigenvalue, and similar matrices share a characteristic polynomial and hence the same eigenvalues.\n",{"path":4373,"title":4374,"module":4366,"summary":4375},"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization","Diagonalization","A matrix is diagonalizable when it factors as A equals P D P inverse with D diagonal, which happens exactly when it has n linearly independent eigenvectors. The factorization computes matrix powers cheaply, distinct eigenvalues guarantee it, and a repeated eigenvalue permits it only when its eigenspace dimension equals its multiplicity.\n",{"path":4377,"title":4378,"module":4366,"summary":4379},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations","Eigenvectors and Linear Transformations","Every linear transformation between finite-dimensional spaces has a matrix relative to chosen bases, built from the coordinate vectors of the images of the basis vectors. For a map from a space to itself, an eigenvector basis makes that matrix diagonal, and that change of basis is diagonalization; the matrices similar to A are the representations of the map in every basis.\n",{"path":4381,"title":4382,"module":4366,"summary":4383},"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues","Complex Eigenvalues","A real matrix with no real eigenvalues still has complex ones, occurring in conjugate pairs. A real 2-by-2 matrix with eigenvalue a plus b i is similar to a rotation-scaling matrix, whose rotation angle is the argument of the eigenvalue and whose scale factor is its modulus; the modulus decides whether the trajectories close up, spiral in, or spiral out.\n",{"path":4385,"title":4386,"module":4366,"summary":4387},"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems","Discrete and Continuous Dynamical Systems","Eigenvalues govern the long-term behavior of a system that evolves by x becomes A x or by x prime equals A x. An eigenvector basis decouples both kinds of system into independent scalar equations; the eigenvalues then classify the origin as attractor, repeller, saddle, or spiral, and the dominant eigenpair fixes the growth rate and limiting direction.\n",{"path":4389,"title":4390,"module":4366,"summary":4391},"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method","Iterative Estimates for Eigenvalues","When only a numerical eigenvalue is needed, iteration is preferred over the characteristic polynomial. The power method repeatedly multiplies by A to converge on the dominant eigenvalue and its eigenvector; the Rayleigh quotient sharpens the estimate for symmetric matrices; and the inverse power method targets any eigenvalue near a known guess.\n",{"path":4393,"title":4394,"module":4395,"summary":4396},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality","Inner Product, Length, and Orthogonality","Orthogonality and Least Squares","The dot product turns the algebra of vectors in R^n into geometry: length, distance, and perpendicularity. The inner product yields the norm, the Pythagorean theorem, and the orthogonal complement, and the null space of a matrix is the orthogonal complement of its row space.\n",{"path":4398,"title":4399,"module":4395,"summary":4400},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections","Orthogonal Sets and Orthogonal Projections","An orthogonal basis makes coordinates trivial: each weight is a single dot product, no linear system required. Orthogonal and orthonormal bases give a direct projection formula onto a line and onto a subspace, the orthogonal decomposition and best-approximation theorems, and the matrix form U U-transpose of a projection.\n",{"path":4402,"title":4403,"module":4395,"summary":4404},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr","The Gram-Schmidt Process and QR Factorization","Gram-Schmidt turns any basis into an orthogonal one by repeatedly subtracting off projections onto the span already built. Normalizing the result and recording the coefficients factors the matrix as A = QR, with Q orthonormal and R upper triangular, the factorization behind stable least-squares and eigenvalue algorithms.\n",{"path":4406,"title":4407,"module":4395,"summary":4408},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems","Least-Squares Problems","When Ax = b has no solution, the least-squares solution makes Ax as close to b as possible. The closest Ax is the projection of b onto the column space, and the vector that produces it solves the normal equations A-transpose A x = A-transpose b. Uniqueness, the residual error, and the stabler QR route follow.\n",{"path":4410,"title":4411,"module":4395,"summary":4412},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications","Applications to Linear Models","Curve fitting is a least-squares problem in statistical notation. The least-squares line, polynomial fits, and multiple regression all reduce to X beta = y with a design matrix X built from the data, solved by the same normal equations.\n",{"path":4414,"title":4415,"module":4395,"summary":4416},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces","Inner Product Spaces","Promoting the four properties of the dot product to axioms defines an inner product on any vector space, including spaces of functions. Length, distance, orthogonality, Gram-Schmidt, and best approximation all carry over, along with the Cauchy-Schwarz and triangle inequalities and the integral inner product behind Fourier approximation.\n",{"path":4418,"title":4419,"module":4420,"summary":4421},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices","Diagonalization of Symmetric Matrices","Symmetric Matrices, Quadratic Forms, and the SVD","A symmetric matrix is one that equals its own transpose. Every such matrix can be diagonalized by an orthogonal change of basis, A = PDPᵀ, with real eigenvalues and perpendicular eigenvectors. This is the Spectral Theorem, and it rewrites A as a weighted sum of rank-one projections onto its eigenvectors.\n",{"path":4423,"title":4424,"module":4420,"summary":4425},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms","Quadratic Forms","A quadratic form xᵀAx is the second-degree analogue of a linear map, attached to a symmetric matrix A. Orthogonal diagonalization changes variables to the eigenbasis, removing all cross-terms and rotating the form into standard position. The signs of the eigenvalues then classify it as definite or indefinite.\n",{"path":4427,"title":4428,"module":4420,"summary":4429},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization","Constrained Optimization","Maximizing a quadratic form xᵀAx over the unit sphere has an exact answer: the maximum is the largest eigenvalue of A, attained at its eigenvector, and the minimum is the smallest eigenvalue. Adding orthogonality constraints peels off the eigenvalues in order, characterizing the whole spectrum by optimization.\n",{"path":4431,"title":4432,"module":4420,"summary":4433},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition","The Singular Value Decomposition","The singular value decomposition factors any m×n matrix as A = UΣVᵀ, with orthogonal U and V and a nonnegative diagonal Σ of singular values. The singular values are the square roots of the eigenvalues of AᵀA, and they describe the matrix geometrically as a rotation, an axiswise stretch, and another rotation, exposing rank, the four fundamental subspaces, and a best low-rank approximation.\n",{"path":4435,"title":4436,"module":4420,"summary":4437},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging","Applications: Image Processing and Statistics","Principal component analysis diagonalizes the covariance matrix of a data set, producing uncorrelated variables ordered by variance. The leading components capture most of the variation, which reduces dimension, compresses images through low-rank SVD approximation, and connects directly to the singular values of the data matrix.\n",{"path":4439,"title":4440,"module":4441,"summary":4442},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation","Numerical Thinking and Matrix Computation","Numerical Linear Algebra","Numerical analysis builds efficient discrete algorithms for continuous problems, and its cost is dominated as much by memory traffic as by arithmetic. Block matrix calculus, flop counts, and the BLAS efficiency ratio fix the cost model; triangular and unitary matrices are the two computational building blocks every factorization rests on.\n",{"path":4444,"title":4445,"module":4441,"summary":4446},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky","LU and Cholesky Factorization in Practice","Gaussian elimination, read as a factorization A = LU, turns a linear system into two triangular solves. A single near-zero pivot wrecks it, so partial pivoting reorders rows to pick the largest available pivot and makes the method work for every invertible matrix. For symmetric positive-definite systems, Cholesky halves the cost and needs no pivoting.\n",{"path":4448,"title":4449,"module":4441,"summary":4450},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point","Conditioning and Floating-Point Arithmetic","A problem's condition number measures how much its answer moves when its data is perturbed, independent of any algorithm. Subtraction is ill-conditioned under cancellation, and for a linear system the amplifier is the matrix condition number κ(A). Floating-point arithmetic supplies the perturbation: every real number is rounded to within a relative machine precision, so even perfect computation inherits an error of order κ times the unit roundoff.\n",{"path":4452,"title":4453,"module":4441,"summary":4454},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis","Numerical Stability and Backward Error Analysis","An algorithm is backward stable when its computed answer is the exact answer to a slightly perturbed problem. Combined with the condition number this gives the governing rule of thumb: forward error is at most condition times stability. Three cancellation case studies make the point, then the residual-based backward error applies it to Ax = b and shows why partial pivoting keeps Gaussian elimination stable.\n",{"path":4456,"title":4457,"module":4441,"summary":4458},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares","QR, Householder, and Numerical Least Squares","The least-squares problem reduces to the normal equations, but forming AᵀA squares the condition number and can wreck accuracy. The stable route computes a QR factorization directly on A and solves Rx = Qᵀb. Householder reflectors build that QR one column at a time using length-preserving reflections, the unconditionally backward-stable building block behind every serious least-squares solver.\n",{"path":4460,"title":4461,"module":4441,"summary":4462},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd","Numerical Eigenvalue Problems and the SVD","Eigenvalues cannot be found by a formula for large matrices, so they are found by iteration. Power and inverse iteration converge to one eigenvector at a rate set by the eigenvalue gap; the QR algorithm sweeps a matrix to Schur form and, with a good shift and a Hessenberg reduction, computes the whole spectrum in cubic time. Singular values follow from the same machinery applied without ever forming AᵀA.\n",{"path":4464,"title":4465,"module":4466,"summary":4467},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations","Affine Combinations","Geometry of Vector Spaces","An affine combination is a linear combination whose weights sum to one. The affine hull of a set is the smallest flat containing it: a point, a line, a plane, or a translated subspace. Homogeneous coordinates turn every affine combination into an ordinary linear combination one dimension up.\n",{"path":4469,"title":4470,"module":4466,"summary":4471},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates","Affine Independence and Barycentric Coordinates","Affine independence is linear independence for the translated or lifted points, and it guarantees each point of an affine hull a unique weight vector. Those weights are barycentric coordinates: centers of mass, ratios of triangle areas, and the interpolation rule behind smooth shading in computer graphics.\n",{"path":4473,"title":4474,"module":4466,"summary":4475},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets","Convex Combinations and Convex Sets","A convex combination is an affine combination with nonnegative weights, and the convex hull of a set is the smallest convex set containing it. Convex sets are closed under intersection, and Carathéodory's theorem bounds how many points a convex combination in $\\mathbb{R}^n$ ever needs: at most $n+1$.\n",{"path":4477,"title":4478,"module":4466,"summary":4479},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes","Hyperplanes and Polytopes","A hyperplane is a level set of a linear functional, the set where an inner product equals a constant. Hyperplanes separate disjoint convex sets and support them at their boundaries. Polytopes are convex hulls of finite point sets; their vertices are the extreme points, and a linear functional attains its extremes there.\n",{"path":4481,"title":4482,"module":4466,"summary":4483},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces","Curves and Surfaces","Bézier curves are affine combinations of control points with polynomial weights, so they lie in the convex hull of those points and bend toward them. The de Casteljau algorithm evaluates them by repeated interpolation, a matrix form factors them for computation, and matching endpoints and tangents joins segments into smooth curves and surfaces.\n",{"path":4485,"title":4486,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4488,"title":4489,"module":306,"summary":306},"\u002Ftheory-of-computation","Theory of Computation",{"path":11,"title":10,"module":5,"summary":13},{"path":16,"title":15,"module":5,"summary":19},{"path":22,"title":21,"module":5,"summary":25},{"path":28,"title":27,"module":5,"summary":31},{"path":34,"title":33,"module":5,"summary":37},{"path":44,"title":43,"module":39,"summary":46},{"path":49,"title":48,"module":39,"summary":51},{"path":54,"title":53,"module":39,"summary":56},{"path":59,"title":58,"module":39,"summary":61},{"path":64,"title":63,"module":39,"summary":66},{"path":69,"title":68,"module":39,"summary":72},{"path":75,"title":74,"module":39,"summary":78},{"path":85,"title":84,"module":80,"summary":87},{"path":90,"title":89,"module":80,"summary":92},{"path":95,"title":94,"module":80,"summary":97},{"path":100,"title":99,"module":80,"summary":102},{"path":105,"title":104,"module":80,"summary":107},{"path":114,"title":113,"module":109,"summary":116},{"path":119,"title":118,"module":109,"summary":121},{"path":124,"title":123,"module":109,"summary":126},{"path":129,"title":128,"module":109,"summary":131},{"path":134,"title":133,"module":109,"summary":136},{"path":143,"title":142,"module":138,"summary":145},{"path":148,"title":147,"module":138,"summary":150},{"path":153,"title":152,"module":138,"summary":155},{"path":158,"title":157,"module":138,"summary":160},{"path":163,"title":162,"module":138,"summary":165},{"path":172,"title":171,"module":167,"summary":174},{"path":177,"title":176,"module":167,"summary":179},{"path":182,"title":181,"module":167,"summary":184},{"path":187,"title":186,"module":167,"summary":189},{"path":192,"title":191,"module":167,"summary":194},{"path":201,"title":200,"module":196,"summary":203},{"path":206,"title":205,"module":196,"summary":208},{"path":211,"title":210,"module":196,"summary":213},{"path":216,"title":215,"module":196,"summary":218},{"path":221,"title":220,"module":196,"summary":223},{"path":231,"title":230,"module":225,"summary":233},{"path":236,"title":235,"module":225,"summary":238},{"path":241,"title":240,"module":225,"summary":243},{"path":251,"title":250,"module":245,"summary":253},{"path":256,"title":255,"module":245,"summary":258},{"path":266,"title":265,"module":260,"summary":268},{"path":271,"title":270,"module":260,"summary":273},{"path":276,"title":275,"module":260,"summary":278},{"path":281,"title":280,"module":260,"summary":283},{"path":286,"title":285,"module":260,"summary":288},{"path":296,"title":295,"module":290,"summary":298},{"path":301,"title":300,"module":290,"summary":303},{"path":4540,"title":4541,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4543,"title":4544,"module":5,"summary":4545},"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields","Models, Direction Fields, and Solution Curves","A differential equation relates an unknown function to its own rates of change. Three first-order models — a falling body, a cooling object, a population under predation — share the form dy\u002Fdt = ay - b; the slope field fixes their equilibria and long-run behavior before any formula is found. Solving the linear case gives the general solution, its integral curves, and the particular solution selected by an initial condition.\n",{"path":4547,"title":4548,"module":5,"summary":4549},"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology","Classifying Equations: Order, Linearity, ODE vs. PDE","Every solution method targets a specific class of equation, so the first question about any differential equation is which classes it belongs to. Four independent axes sort them: ordinary versus partial, order, linear versus nonlinear, and homogeneous versus nonhomogeneous. Systems, verification of a solution by substitution, and the split between initial and boundary value problems complete the vocabulary.\n",{"path":4551,"title":4552,"module":4553,"summary":4554},"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors","Linear Equations and Integrating Factors","First-Order Equations","A first-order linear equation has the unknown and its derivative to the first power only. Multiplying by an integrating factor collapses the left side into a single derivative, and one integration gives the general solution in closed form. The solution exists wherever the coefficients are continuous, and for a constant coefficient it splits into a decaying transient and a steady state set by the forcing.\n",{"path":4556,"title":4557,"module":4553,"summary":4558},"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact","Separable and Exact Equations","Two nonlinear first-order classes solve by direct integration. A separable equation splits so that each variable can be integrated on its own side, giving an implicit relation. An exact equation is the total differential of a hidden potential function, recognized by a symmetry test on its coefficients; when the test fails, an integrating factor can sometimes restore exactness. A change of variable brings homogeneous equations into the separable class.\n",{"path":4560,"title":4561,"module":4553,"summary":4562},"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order","Modeling with First-Order Equations","A rate law is a differential equation. Each first-order model starts from one governing principle: conservation of mass for a mixing tank, proportional change for interest and radioactive decay, Newton's law of cooling, a force balance for a body falling against drag, and Kirchhoff's law for a series circuit. Setting the derivative to zero recovers the steady state, and the transient records how the initial condition relaxes toward it.\n",{"path":4564,"title":4565,"module":4553,"summary":4566},"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics","Autonomous Equations, Phase Lines, and Population Dynamics","An autonomous equation y' = f(y) can be analyzed qualitatively without being solved. Its constant solutions are the zeros of f, and the sign of f between them fixes whether nearby solutions rise or fall, which the phase line records as a column of arrows. The logistic and threshold models, constant- and effort-proportional harvesting, and the properties nonlinear equations lose all follow from this reading.\n",{"path":4568,"title":4569,"module":4553,"summary":4570},"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler","Existence, Uniqueness, and Euler's Method","Existence and uniqueness can be settled before any attempt to solve. The existence-uniqueness theorem gives sufficient conditions on f, and a standard example shows what fails when they do not hold. Picard's successive approximations build the solution as the limit of an iteration, and Euler's method turns the same tangent-line idea into a numerical procedure for the equations no formula reaches.\n",{"path":4572,"title":4573,"module":4553,"summary":4574},"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations","First-Order Difference Equations","A difference equation advances a sequence one index at a time by a rule y_{n+1} = f(y_n). The linear case y_{n+1} = rho*y_n + b solves in closed form and converges to its equilibrium exactly when the ratio has magnitude below one, which underlies compound-interest and loan calculations. The logistic difference equation shows the nonlinear counterpart: an exchange of stability, a cascade of period doublings, and the onset of chaos.\n",{"path":4576,"title":4577,"module":4578,"summary":4579},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients","Homogeneous Equations, the Wronskian, and Real Roots","Second-Order Linear Equations","A second-order linear homogeneous equation with constant coefficients is solved by guessing an exponential and reducing to the quadratic characteristic equation. Two solutions span every solution exactly when their Wronskian is nonzero; that condition, superposition, and Abel's formula give the full structure of the general solution for the case of two distinct real roots.\n",{"path":4581,"title":4582,"module":4578,"summary":4583},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots","Complex Roots, Repeated Roots, and Reduction of Order","When the characteristic equation has complex conjugate roots, Euler's formula converts the complex exponentials into a real fundamental set of decaying or growing oscillations. When it has a repeated root, one exponential is lost and reduction of order recovers the missing second solution as $t\\,e^{rt}$. The same substitution $y = v(t)y_1(t)$ finds a second solution from any known one.\n",{"path":4585,"title":4586,"module":4578,"summary":4587},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients","Nonhomogeneous Equations: Undetermined Coefficients","The general solution of a nonhomogeneous linear equation is a complementary solution plus any one particular solution. When the forcing term is a polynomial, exponential, sine, or cosine, a particular solution can be found by assuming a trial form of the same shape with unknown coefficients and solving for them. The one complication is resonance, handled by multiplying the trial by a power of $t$.\n",{"path":4589,"title":4590,"module":4578,"summary":4591},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters","Variation of Parameters","Variation of parameters finds a particular solution of any nonhomogeneous linear equation from a fundamental set of the homogeneous one. Replacing the constants in the complementary solution by functions and imposing one convenient constraint reduces the problem to a two-by-two linear system whose solution is expressed through the Wronskian, giving an integral formula that works for forcing terms undetermined coefficients cannot touch.\n",{"path":4593,"title":4594,"module":4578,"summary":4595},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations","Mechanical and Electrical Vibrations","A spring-mass-damper obeys a second-order linear equation, and so does a series RLC circuit, with the same mathematics governing both. Free undamped motion is a pure sinusoid; damping adds a decaying envelope with three regimes; periodic forcing produces a transient that dies out and a steady-state oscillation whose amplitude peaks sharply near the natural frequency, the phenomenon of resonance.\n",{"path":4597,"title":4598,"module":4578,"summary":4599},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear","Higher-Order Linear Equations","The second-order theory extends directly to order $n$: the solution space is $n$-dimensional, spanned by any $n$ solutions with nonzero Wronskian. For constant coefficients the characteristic polynomial has degree $n$, and its roots (counted with multiplicity, real and complex) build the basis by the same rules as before. Coupled oscillators are the natural application that raises the order.\n",{"path":4601,"title":4602,"module":4603,"summary":4604},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points","Power Series Solutions Near Ordinary Points","Series Solutions and Special Functions","A linear equation with variable coefficients has no characteristic equation. A power series substituted into the equation matches coefficients to a recurrence relation, which near an ordinary point yields two independent analytic solutions. The radius of convergence is at least the distance from the expansion point to the nearest singular point in the complex plane.\n",{"path":4606,"title":4607,"module":4603,"summary":4608},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius","Euler Equations, Regular Singular Points, and Frobenius","The Euler equation x^2 y'' + a x y' + b y = 0 is solved outright by y = x^r, and its three root cases fix the behavior at any regular singular point. The Frobenius method multiplies x^r by a power series; the indicial equation chooses the exponents, and equal or integer-separated roots force a logarithm in the second solution. Gauss's hypergeometric equation is the archetype containing most classical functions as special cases.\n",{"path":4610,"title":4611,"module":4603,"summary":4612},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions","Bessel's Equation, Legendre Polynomials, and Special Functions","Bessel's equation puts the Frobenius machinery through all three of its cases and produces the functions J and Y that govern anything vibrating or diffusing with circular symmetry. The gamma function extends the factorial so that Bessel functions of every order make sense; Legendre's equation, run through the hypergeometric form, yields the polynomials that play the same role in spherical geometry. Orthogonality ties both families to the eigenfunction expansions of Sturm–Liouville theory.\n",{"path":4614,"title":4615,"module":4616,"summary":4617},"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps","The Laplace Transform: Definition, Properties, and Solving IVPs","The Laplace Transform","The Laplace transform sends a function of time to a function of a complex frequency by integrating it against the kernel e^{-st}. Differentiation in t becomes multiplication by s, so a linear constant-coefficient initial value problem turns into an algebraic equation. Existence rests on piecewise continuity and exponential order; the derivative rule folds in the initial data; and inversion runs through a transform table and partial fractions.\n",{"path":4619,"title":4620,"module":4616,"summary":4621},"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution","Step Functions, Discontinuous Forcing, Impulses, and Convolution","The Heaviside step function and the second shifting theorem transform switches and discontinuous forcing into exponential factors on the transform. The Dirac delta idealizes an instantaneous impulse and transforms to a pure exponential. The convolution theorem inverts a product of transforms, writes the forced response as the impulse response convolved with the input, and solves Abel's tautochrone by transform.\n",{"path":4623,"title":4624,"module":4625,"summary":4626},"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review","Matrices, Linear Systems, and the Eigenvalue Toolkit","Systems of First-Order Linear Equations","Any nth-order linear equation, and any coupled collection of them, rewrites as a single first-order system x' = P(t)x + g(t). The matrix and vector algebra behind that form, the eigenvalue problem det(A - λI) = 0 that drives every solution method, and the fundamental theory — superposition, the Wronskian, Abel's theorem — together establish that n independent solutions span all solutions.\n",{"path":4628,"title":4629,"module":4625,"summary":4630},"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits","Homogeneous Constant-Coefficient Systems and Phase Portraits","For x' = Ax with A constant, the trial x = ξe^{rt} turns the differential equation into the eigenvalue problem Aξ = rξ. The eigenvalues fix the geometry of the phase plane: real opposite signs give a saddle, real same sign a node, complex a spiral, purely imaginary a center. Worked in the plane, these cases form the eigenvalue-type classification of equilibria.\n",{"path":4632,"title":4633,"module":4625,"summary":4634},"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices","Repeated Eigenvalues, Fundamental Matrices, and Nonhomogeneous Systems","When a repeated eigenvalue supplies too few eigenvectors, a generalized eigenvector supplies the missing solution as ξte^{ρt} + ηe^{ρt}, giving an improper node. A fundamental set packaged as a matrix Φ(t) yields the matrix exponential e^{At}, the propagator mapping initial states to later ones. Variation of parameters solves the nonhomogeneous system x' = Ax + g(t).\n",{"path":4636,"title":4637,"module":4638,"summary":4639},"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta","Euler, Improved Euler, and Runge–Kutta","Numerical Methods","Most initial value problems have no closed-form solution, so the solution is approximated on a grid. Euler's method steps along the tangent line, the improved Euler method averages two slopes, and the classical Runge–Kutta method averages four. Each added stage raises the order of accuracy at the cost of more evaluations per step, measured by how the local and global truncation errors scale with the step size.\n",{"path":4641,"title":4642,"module":4638,"summary":4643},"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability","Multistep Methods, Systems, and Stability","One-step methods discard everything but the last point. Multistep methods fit a polynomial to several past values and integrate it forward: the explicit Adams–Bashforth formulas, the implicit and more accurate Adams–Moulton formulas, and predictor–corrector pairs that combine them. The same rules extend verbatim to systems in vector form. A separate concern is stability: round-off can dominate truncation, and stiff equations force a tiny step for stability even when accuracy would allow a large one.\n",{"path":4645,"title":4646,"module":4647,"summary":4648},"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability","The Phase Plane, Critical Points, and Stability","Nonlinear Systems and Stability","Most nonlinear systems cannot be solved in closed form, so they are studied geometrically. The phase plane turns an autonomous planar system into a family of trajectories; the five archetypes of critical point follow from the eigenvalues of the coefficient matrix; the trace-determinant plane reads off type and stability directly; and epsilon-delta definitions make stability, asymptotic stability, and instability precise.\n",{"path":4650,"title":4651,"module":4647,"summary":4652},"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov","Locally Linear Systems and Liapunov's Method","Near a critical point a nonlinear system looks linear, and the linear part is the Jacobian. The linearization fixes the type and stability of the nonlinear critical point in every case except a center or a repeated eigenvalue. Liapunov's direct method settles those cases and bounds the basin of attraction by constructing an energy-like function, without solving the system.\n",{"path":4654,"title":4655,"module":4647,"summary":4656},"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles","Population Models, Limit Cycles, and Chaos","The phase-plane methods apply directly to interacting-population models. Competing species either coexist or drive one another to extinction, decided by a single inequality among the interaction constants; the Lotka-Volterra predator-prey system produces closed population cycles. Limit cycles and the Poincaré-Bendixson theorem, the van der Pol oscillator, and the Lorenz equations with their strange attractor carry the theory into chaos.\n",{"path":4658,"title":4659,"module":4660,"summary":4661},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series","Fourier Series and Convergence","PDEs, Fourier Series, and Boundary Value Problems","A two-point boundary value problem has nontrivial solutions only at a discrete set of eigenvalues, the same trichotomy that governs a singular linear system. For y'' + lambda y = 0 with zero endpoints the eigenfunctions are sines and cosines, and their orthogonality gives the Euler-Fourier coefficient formulas. The convergence theorem fixes when the series returns the function, the Gibbs phenomenon measures the overshoot at a jump, and even\u002Fodd symmetry produces half-range sine and cosine series.\n",{"path":4663,"title":4664,"module":4660,"summary":4665},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations","Separation of Variables: Heat, Wave, and Laplace Equations","Separation of variables replaces a partial differential equation by a pair of ordinary ones joined through a shared separation constant. Applied to the heat equation it produces the eigenvalue problem X'' + lambda X = 0, and the solution assembles as a Fourier series in the eigenfunctions. The same steps solve the wave equation, whose modes are standing waves, and Laplace's equation, the steady-state limit posed on a region rather than an interval.\n",{"path":4667,"title":4668,"module":4660,"summary":4669},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville","Sturm-Liouville Theory","The eigenvalue problem behind separation of variables generalizes to the self-adjoint Sturm-Liouville form. Lagrange's identity makes the operator symmetric, and from that one fact follow real eigenvalues, orthogonal eigenfunctions, and eigenfunction expansions that behave like Fourier series. Singular problems admit Bessel and Legendre functions, and Sturm's separation and comparison theorems describe how the eigenfunctions oscillate.\n",{"path":4671,"title":4672,"module":4673,"summary":4674},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations","The Calculus of Variations","Historical Notes and the Calculus of Variations","Ordinary calculus finds the point where a function is stationary; the calculus of variations finds the whole curve where an integral is stationary. Euler's differential equation is the necessary condition for an extremal, and it becomes integrable in three cases, solving the shortest-path, minimal-surface, and brachistochrone problems. Lagrange multipliers extend the method to isoperimetric constraints, and Hamilton's principle recovers Newton's law from a single stationary integral.\n",{"path":4676,"title":4677,"module":4673,"summary":4678},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes","Great Problems and the People Who Solved Them","Differential equations grew out of specific problems, not a plan: the invention of calculus by Newton and Leibniz, the Bernoulli brachistochrone challenge, Euler's flood of methods, Lagrange's analytical mechanics, Gauss and Riemann's rigor, Laplace's celestial mechanics, and Poincaré's qualitative theory. Each method descends from a named problem, and reading the subject forward from those problems explains why its parts fit together.\n",{"path":4680,"title":4681,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4683,"title":4684,"module":4685,"summary":4686},"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates","The Postulates of Special Relativity","Foundations of Relativity","Newton's laws are the same in every inertial frame, but Maxwell's are not: the equations of electromagnetism single out one speed, c, and the nineteenth century read that as the speed of light relative to a medium, the ether. The Michelson-Morley experiment looked for Earth's motion through that medium and found nothing. Einstein's two postulates replace the ether, and their first consequence is that simultaneity is frame-dependent.\n",{"path":4688,"title":4689,"module":4685,"summary":4690},"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime","The Lorentz Transformation and Spacetime","Requiring that a light sphere stay a light sphere in every inertial frame fixes the coordinate change between frames uniquely: the Lorentz transformation, with its factor gamma. Differentiating it gives relativistic velocity addition, which caps composed speeds at c. Plotting the same events on skewed spacetime axes turns the algebra into geometry, with calibration hyperbolae, an invariant interval, and a light cone that sorts events into past, future, and elsewhere.\n",{"path":4692,"title":4693,"module":4685,"summary":4694},"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction","Time Dilation, Length Contraction, and Paradoxes","A light clock and the constancy of c give the two headline effects directly: a moving clock runs slow by gamma, and a moving rod is short by the same factor. Cosmic-ray muons reaching sea level are the standing experimental proof. The relativistic Doppler effect adds the time-dilation factor to the classical shift, and the twin and pole-barn paradoxes dissolve once the relativity of simultaneity is taken seriously.\n",{"path":4696,"title":4697,"module":4685,"summary":4698},"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy","Relativistic Momentum and Energy","Conserving momentum in every inertial frame forces the redefinition p = gamma m u, which diverges as the speed approaches c. Integrating the corresponding force gives the total energy E = gamma m c-squared, whose rest term m c-squared is Einstein's mass-energy equivalence. Energy and momentum join into a four-vector whose invariant length is the rest energy, giving E-squared = (pc)-squared + (m c-squared)-squared, massless particles, and nuclear binding energy.\n",{"path":4700,"title":4701,"module":4685,"summary":4702},"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity","A Taste of General Relativity","Einstein's happiest thought was that a freely falling observer feels no gravity: a uniform gravitational field is locally indistinguishable from an accelerating frame. That equivalence principle predicts that light bends near a mass, that clocks run slow deep in a gravitational well, that Mercury's orbit precesses, and that radar echoes are delayed. Every prediction has been confirmed, and pushing the redshift to its limit gives the black hole.\n",{"path":4704,"title":4705,"module":4706,"summary":4707},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval","Minkowski Spacetime and the Interval","Spacetime and the Lorentz Group","The Lorentz transformation of the foundations module is repackaged as the geometry of a four-dimensional space whose invariant is not a distance but the spacetime interval. Events, worldlines, and the metric signature define a causal structure that every observer shares. Proper time is the length of a timelike worldline, and the twin paradox becomes the statement that a straight worldline accumulates the most proper time.\n",{"path":4709,"title":4710,"module":4706,"summary":4711},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation","Four-Vectors and Index Notation","The index calculus that the rest of the course runs on. Contravariant and covariant components, the Minkowski metric as the machine that raises and lowers indices, and the Einstein summation convention are assembled into scalar products that are the same in every frame. The four-velocity and four-acceleration follow, together with the identity that the four-velocity has constant invariant length.\n",{"path":4713,"title":4714,"module":4706,"summary":4715},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity","The Lorentz Group and Rapidity","The Lorentz transformations are the linear maps that preserve the Minkowski metric, and they form the group O(1,3). Boosts are hyperbolic rotations parametrized by rapidity, which adds along a line where velocity does not. The boost and rotation generators fix the group's local structure; its four disconnected components are set by two signs; and two non-collinear boosts compose into a boost plus a rotation, the Wigner rotation behind Thomas precession.\n",{"path":4717,"title":4718,"module":4706,"summary":4719},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance","Doppler, Aberration, and Appearance","Light carries a null four-momentum, and boosting it produces every optical effect of relativity at once. The covariant Doppler formula follows from the transformation of frequency, aberration from the transformation of direction, and the headlight effect from the resulting concentration of light forward. The Terrell-Penrose result shows that a fast object photographs as rotated, not contracted.\n",{"path":4721,"title":4722,"module":4723,"summary":4724},"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion","Four-Momentum, Four-Force, and Accelerated Motion","Relativistic Dynamics","The four-momentum packages energy and momentum into a single vector whose invariant length is the rest mass. Its proper-time derivative is the four-force, always orthogonal to the four-velocity, and a constant orthogonal four-force produces hyperbolic motion. Constant proper acceleration gives rapidity linear in proper time, the relativistic rocket equation, and the Rindler horizon behind an eternally accelerating observer.\n",{"path":4726,"title":4727,"module":4723,"summary":4728},"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics","Particle Decays and Two-Body Kinematics","Conservation of four-momentum fixes the kinematics of a decay from the masses alone. In the center-of-momentum frame a parent breaks into two daughters with equal and opposite momenta and energies set by the Kallen triangle function. Boosting to the lab opens the decay into a cone, and the invariant mass built from the daughters reconstructs the parent as a peak. Worked cases: the two-photon decay of the neutral pion and a heavy two-body hadronic decay.\n",{"path":4730,"title":4731,"module":4723,"summary":4732},"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame","Relativistic Collisions and Threshold Energies","Two-body collisions run on the same conserved four-momentum as decays. The invariant s sets the total energy available in the center-of-momentum frame and therefore the threshold for producing new particles. Fixed-target energy grows only as the square root of beam energy while a collider grows linearly, which is why colliders reach high energy. Compton scattering follows as a worked photon-electron collision giving the wavelength shift.\n",{"path":4734,"title":4735,"module":4723,"summary":4736},"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants","Mandelstam Variables and Lorentz Invariants","For a two-to-two process the three Mandelstam invariants s, t, and u encode all the kinematics in frame-independent form. They obey a single linear constraint, the sum of the four squared masses, so only two are independent. s is the center-of-momentum energy squared, t and u are momentum transfers tied to the scattering angle, and crossing symmetry relates one amplitude across three channels through these variables.\n",{"path":4738,"title":4739,"module":4740,"summary":4741},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential","The Four-Current and Four-Potential","Covariant Electromagnetism","Charge density and current combine into a single four-vector whose divergence is charge conservation. The scalar and vector potentials combine likewise into the four-potential, whose gauge freedom fixes to the Lorenz condition, reducing Maxwell's equations for the potentials to a single wave equation sourced by the four-current.\n",{"path":4743,"title":4744,"module":4740,"summary":4745},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor","The Electromagnetic Field Tensor","The antisymmetric derivative of the four-potential is the field-strength tensor F, gauge invariant by construction, with the electric and magnetic fields as its components. Its dual exchanges E and B, and its two contractions form the Lorentz invariants that classify a field as electric, magnetic, or radiative in every frame.\n",{"path":4747,"title":4748,"module":4740,"summary":4749},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields","How E and B Transform","Transforming the field tensor under a boost gives explicit rules for the electric and magnetic fields: components along the motion are unchanged, transverse components mix and pick up a gamma. The field of a uniformly moving charge compresses transversely, and the force between a current and a moving charge shows that magnetism is the relativistic shadow of electrostatics.\n",{"path":4751,"title":4752,"module":4740,"summary":4753},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor","Covariant Maxwell and the Stress–Energy Tensor","Maxwell's four equations collapse into two tensor equations, one sourced by the four-current and one an identity on the field strength, with charge conservation automatic. The Lorentz force becomes a four-vector law, and the field's energy, momentum, and stress assemble into a symmetric, conserved stress–energy tensor — the object that will source gravity.\n",{"path":4755,"title":4756,"module":4757,"summary":4758},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized","The Equivalence Principle","Curved Spacetime","The equality of gravitational and inertial mass promotes to a physical principle in three graded strengths — weak, Einstein, and strong. A freely falling laboratory is locally indistinguishable from an inertial frame, but the qualifier \"locally\" is essential: the size of the patch over which gravity vanishes is set by the tidal field, which no change of frame can remove. Tidal forces are the true, coordinate-independent signature of gravity, and they are what curvature will measure.\n",{"path":4760,"title":4761,"module":4757,"summary":4762},"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric","Manifolds, Vectors, and the Metric","A manifold is a space that looks locally like flat space, described by overlapping coordinate charts. Tangent vectors are directional derivatives with the coordinate basis vectors as partial-derivative operators; one-forms live in the dual space; and the metric tensor turns a coordinate line element into an invariant length. The 2-sphere and Rindler metrics serve as worked examples, including the coordinate singularities that are artefacts of the chart, not of the geometry.\n",{"path":4764,"title":4765,"module":4757,"summary":4766},"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols","Parallel Transport and the Covariant Derivative","The ordinary derivative of a vector field is not a tensor, because it subtracts vectors living in different tangent spaces. A connection supplies the missing comparison: the covariant derivative adds Christoffel-symbol correction terms that cancel the coordinate artefacts. Requiring the connection to be torsion-free and to preserve the metric fixes the Christoffel symbols uniquely in terms of derivatives of the metric, giving the Levi-Civita connection that general relativity uses.\n",{"path":4768,"title":4769,"module":4757,"summary":4770},"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation","Geodesics and the Newtonian Limit","Free fall is geodesic motion: a freely falling particle follows the straightest possible worldline, obtained either by parallel-transporting its own tangent vector or by extremizing proper time. Both routes give the geodesic equation. Affine parameters, and conserved quantities from symmetries via Killing vectors, make it solvable. In the weak-field slow-motion limit the geodesic equation reproduces Newton's law of gravity, fixing the time-time metric component as the Newtonian potential.\n",{"path":4772,"title":4773,"module":4757,"summary":4774},"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation","Curvature and the Riemann Tensor","Curvature is the failure of parallel transport to commute: carrying a vector around an infinitesimal loop returns it rotated, and the rotation per unit area is the Riemann tensor. Its symmetries cut the components to twenty in four dimensions. Geodesic deviation makes it the equation of tidal forces, and its contractions — the Ricci tensor, the Ricci scalar, and the divergence-free Einstein tensor — assemble the objects the field equation is built from.\n",{"path":4776,"title":4777,"module":4757,"summary":4778},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations","The Einstein Field Equations","The field equation is assembled from a short list of requirements: a symmetric, divergence-free, second-order geometric tensor set proportional to the stress–energy tensor, with the coefficient fixed by the Newtonian limit. The cosmological constant is the one extra term the requirements allow. The Einstein–Hilbert action gives the same equation from a variational principle, and the coupled system closes the logic of the module: matter curves spacetime, and spacetime tells matter how to move.\n",{"path":4780,"title":4781,"module":4782,"summary":4783},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric","The Schwarzschild Metric","The Schwarzschild Solution","The first exact solution of Einstein's equation follows from two assumptions, staticity and spherical symmetry, imposed on the vacuum outside a mass. Solving the vacuum field equations fixes two metric functions and produces the Schwarzschild geometry, whose one length scale is the Schwarzschild radius $r_s = 2GM\u002Fc^2$. Birkhoff's theorem shows this is the only spherical vacuum, and the far field reduces to Newtonian gravity.\n",{"path":4785,"title":4786,"module":4782,"summary":4787},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild","Orbits in the Schwarzschild Geometry","The two Killing symmetries of the Schwarzschild metric give a conserved energy and angular momentum per unit mass, reducing geodesic motion to a one-dimensional problem in an effective potential. The potential carries an extra attractive $1\u002Fr^3$ term absent from Newton's, which caps the centrifugal barrier, produces an innermost stable circular orbit at $6GM\u002Fc^2$, and makes bound orbits precess instead of closing.\n",{"path":4789,"title":4790,"module":4782,"summary":4791},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics","Null Geodesics and the Photon Sphere","Light follows null geodesics, governed by a photon effective potential with a single unstable maximum at $3GM\u002Fc^2$, the photon sphere. The impact parameter sorts rays into those that escape with a deflection and those captured, with the critical value $b_c = 3\\sqrt{3}\\,GM\u002Fc^2$ dividing them. A grazing ray bends by $4GM\u002F(c^2 b)$, twice the naive Newtonian value, and the critical impact parameter sets the edge of a black hole's shadow.\n",{"path":4793,"title":4794,"module":4795,"summary":4796},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury","The Perihelion Precession of Mercury","Tests of General Relativity","A single extra term in the Schwarzschild orbit equation, cubic in the inverse radius, keeps a bound orbit from closing. The perturbation advances the perihelion by 6πGM\u002F(c²a(1−e²)) per revolution, which for Mercury is 43 arcseconds per century — exactly the anomaly left after Newtonian planetary perturbations are subtracted. A note on frame dragging closes the lesson.\n",{"path":4798,"title":4799,"module":4795,"summary":4800},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing","Light Deflection and Gravitational Lensing","A light ray grazing the Sun bends by 4GM\u002F(c²b), exactly twice the value a Newtonian corpuscle would give; the extra factor is the curvature of space. The 1919 eclipse confirmed it. The same bending focuses light from distant sources into Einstein rings, multiple images, and microlensing brightenings, making lensing a direct probe of mass, including mass that emits no light.\n",{"path":4802,"title":4803,"module":4795,"summary":4804},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay","Gravitational Redshift and the Shapiro Delay","A clock deeper in a gravitational well ticks slower, and a photon climbing out loses frequency by the ratio of the metric's time-time components. Pound and Rebka measured the 2.5×10⁻¹⁵ shift over a 22.5-metre tower. Radar signals grazing the Sun return late by about 250 microseconds, the Shapiro delay. Both probe the time part of the metric directly.\n",{"path":4806,"title":4807,"module":4795,"summary":4808},"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps","Relativity and the Global Positioning System","A GPS satellite clock runs slow by 7 microseconds a day from its orbital speed and fast by 46 from its higher gravitational potential, a net gain of about 38 microseconds a day. Left uncorrected, the timing error would grow into kilometres of position error within a day and exceed navigation tolerance within minutes. The satellites carry a pre-launch frequency offset to cancel it.\n",{"path":4810,"title":4811,"module":4812,"summary":4813},"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities","Horizons and Coordinate Singularities","Black Holes","The Schwarzschild radius is a coordinate singularity, not a curvature singularity: the metric blows up there only because the static coordinates fail, while the geometry stays finite. Eddington–Finkelstein and Kruskal– Szekeres coordinates cross the horizon smoothly and show the light cones tipping toward the center. A freely falling observer reaches the true singularity at r=0 in finite proper time, while a distant observer sees the infall freeze and redden at the horizon.\n",{"path":4815,"title":4816,"module":4812,"summary":4817},"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes","Rotating and Charged Black Holes","A stationary black hole is fixed by three numbers: mass, angular momentum, and charge. The Reissner–Nordström metric adds charge and splits the horizon in two; the Kerr metric adds rotation, drags inertial frames, and wraps the horizon in an ergosphere where nothing can stay still. Inside the ergosphere the Penrose process extracts rotational energy, and the no-hair theorem states that no other detail of the collapsed matter survives.\n",{"path":4819,"title":4820,"module":4812,"summary":4821},"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics","Black-Hole Thermodynamics","The four laws of black-hole mechanics mirror the four laws of thermodynamics term for term, with horizon area playing the role of entropy and surface gravity the role of temperature. Hawking's calculation makes the analogy literal: a black hole radiates at a temperature set by its surface gravity, carries a real entropy proportional to its horizon area, and slowly evaporates. The thermal spectrum raises the information paradox.\n",{"path":4823,"title":4824,"module":4825,"summary":4826},"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions","Linearized Gravity and Wave Solutions","Gravitational Waves","Weak gravity is a small perturbation of flat spacetime, and the linearized Einstein equation in the Lorenz gauge is an ordinary wave equation propagating at the speed of light. The trace-reversed perturbation carries the dynamics, residual gauge freedom fixes the transverse-traceless form, and the two physical polarizations deform a ring of freely falling masses into oscillating ellipses whose fractional size change is the strain.\n",{"path":4828,"title":4829,"module":4825,"summary":4830},"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula","The Quadrupole Formula","The retarded solution of the linearized field equation gives the field of a moving source, and conservation of mass and momentum forbids monopole and dipole radiation, leaving the mass quadrupole as the leading emitter. The quadrupole formula fixes the strain and the radiated luminosity, and applied to a compact binary it predicts the inspiral chirp of rising frequency and amplitude. The Hulse-Taylor pulsar's orbital decay confirmed it to a fraction of a percent.\n",{"path":4832,"title":4833,"module":4825,"summary":4834},"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events","LIGO and the First Detections","A gravitational wave is measured as a differential length change of the two arms of a kilometre-scale Michelson interferometer, a strain of order ten to the minus twenty-one that moves the mirrors by a fraction of a proton radius. GW150914 recorded the inspiral, merger, and ringdown of two black holes, fixing their masses and the energy radiated, and GW170817 with its coincident gamma-ray burst and kilonova opened multimessenger astronomy.\n",{"path":4836,"title":4837,"module":4838,"summary":4839},"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric","The Cosmological Principle and the FLRW Metric","A Bridge to Cosmology","Homogeneity and isotropy restrict the spacetime of the universe to a single family of metrics: a flat cosmic-time slicing of spatial sections of constant curvature, scaled by a time-dependent factor a(t). This lesson builds the Friedmann–Lemaître–Robertson–Walker metric from those symmetries, separates comoving from proper distance, and derives cosmological redshift as the stretching of wavelengths with the scale factor.\n",{"path":4841,"title":4842,"module":4838,"summary":4843},"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics","The Friedmann Equations and Cosmic Dynamics","The Einstein equation applied to the FLRW metric with a perfect-fluid source yields the two Friedmann equations and the conservation law that ties them together. This lesson derives them, defines the critical density and the density parameters that fix the spatial geometry, works out how matter, radiation, and a cosmological constant dilute and drive the expansion, and hands off to a dedicated cosmology subject.\n",{"path":4845,"title":4846,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4848,"title":4849,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4851,"title":4852,"module":4853,"summary":4854},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum","Blackbody Radiation and the Planck Quantum","Origins of the Quantum","Millikan's oil-drop experiment fixed the electron charge as an indivisible unit, and the spectrum of thermal radiation forced a second, deeper quantum. Classical physics predicts an infinite energy density at short wavelengths; Planck removed the divergence by allowing a cavity oscillator to hold only energies that are integer multiples of hf, the first appearance of the quantum of action.\n",{"path":4856,"title":4857,"module":4853,"summary":4858},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon","The Photoelectric Effect and the Photon","Light shone on a clean metal ejects electrons, but the details defied the wave theory: the electrons' maximum energy depends on the light's frequency, not its brightness, and there is a sharp threshold frequency below which nothing happens. Einstein resolved every anomaly by treating light as a stream of energy quanta hf, each absorbed whole by one electron, and Millikan's measurement of the stopping-potential slope confirmed h to a decade before anyone expected.\n",{"path":4860,"title":4861,"module":4853,"summary":4862},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect","X-Rays and the Compton Effect","X-rays are short-wavelength electromagnetic waves produced when fast electrons are braked in a target, and their diffraction by crystals lets Bragg's law measure atomic spacings. Compton then scattered X-rays off electrons and found the wavelength shifted by an amount that only a photon carrying momentum hf\u002Fc could explain, closing the case for the particle nature of light.\n",{"path":4864,"title":4865,"module":4853,"summary":4866},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld","The Old Quantum Theory: Bohr, Sommerfeld, and Correspondence","Between Bohr's 1913 atom and Schrödinger's 1926 equation, physics ran on a provisional recipe: keep classical orbits, but admit only those whose action integral is a whole multiple of Planck's constant. This lesson develops the Wilson-Sommerfeld phase-integral rule, applies it to the oscillator and to the elliptical Kepler orbits of hydrogen, derives Sommerfeld's relativistic fine structure and the quantization of orbit orientation, and shows how the correspondence principle fixed intensities and selection rules. The systematic failures — helium, line intensities, the anomalous Zeeman effect — mark exactly where a theory of orbits had to give way to a theory of waves.\n",{"path":4868,"title":4869,"module":4870,"summary":4871},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction","De Broglie Waves and Electron Diffraction","The Wave Nature of Matter","In 1924 de Broglie proposed that every particle carries a wave of wavelength h\u002Fp. The hypothesis explains Bohr's quantized orbits as standing waves, and Davisson and Germer, then G. P. Thomson, confirmed it by diffracting electrons from crystals exactly as X-rays diffract. We derive the electron wavelength, work the Bragg analysis of the data, and give the relativistic form.\n",{"path":4873,"title":4874,"module":4870,"summary":4875},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation","Wave Packets and the Probabilistic Wave Function","A single de Broglie wave fills all space, but a particle is localized. Adding many waves of nearby wavelength builds a wave packet that is confined and moves at the group velocity, which equals the particle velocity. Born's rule reads the squared amplitude of the wave function as a probability density, the meaning confirmed by electron interference building up one detection at a time.\n",{"path":4877,"title":4878,"module":4870,"summary":4879},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle","The Uncertainty Principle and Wave-Particle Duality","The packet relations delta-k delta-x about 1 become Heisenberg's principle once momentum is hbar times wave number: position and momentum cannot both be sharp, nor energy and time. The gamma-ray microscope shows the limit is physical, not technical. It fixes the zero-point energy of a confined particle, the size of the hydrogen atom, and the natural width of spectral lines, and it frames the wave-particle duality of all matter and radiation.\n",{"path":4881,"title":4882,"module":4883,"summary":4884},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension","The Schrödinger Equation in One Dimension","Wave Mechanics in One Dimension","The wave equation for matter cannot be derived; it is postulated and judged by experiment. We build the time-dependent Schrödinger equation from the de Broglie relations, read Born's probability rule off the complex wave function, and separate the time and space dependence to get the time-independent equation whose bound-state solutions are the stationary states. The five acceptability conditions on the wave function are what force energy to be quantized.\n",{"path":4886,"title":4887,"module":4883,"summary":4888},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics","The Free Particle and Wave-Packet Dynamics","The free particle has no bound states: its stationary solutions are non-normalizable plane waves forming a continuum. Physical states are wave packets built by superposing them, and the superposition is a Fourier transform. We delta-normalize the plane waves, assemble a Gaussian packet, solve for its exact time evolution, and read off the two facts that reconcile the wave picture with mechanics: the packet moves at the group velocity ħk\u002Fm, the classical velocity, and it spreads because its component momenta travel at different speeds.\n",{"path":4890,"title":4891,"module":4883,"summary":4892},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells","Particle in Infinite and Finite Square Wells","The infinite square well is the simplest bound-state problem: two boundary conditions quantize the energy into a ladder E_n = n² E_1, and the eigenfunctions are the standing waves of a string fixed at both ends. Relaxing the walls to a finite depth lets the wave function leak into the classically forbidden region, keeps the number of bound states finite, and turns the eigenvalue condition into a transcendental equation solved graphically.\n",{"path":4894,"title":4895,"module":4883,"summary":4896},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator","Operators, Expectation Values, and the Harmonic Oscillator","Measurable quantities are extracted from the wave function as expectation values, and each observable is represented by an operator that acts between Ψ* and Ψ — position by multiplication, momentum by a derivative, energy by the Hamiltonian. Applied to the harmonic oscillator, the machinery yields evenly spaced levels E_n = (n+½)ℏω, Gaussian- times-Hermite eigenfunctions of definite parity, and the selection rule Δn = ±1.\n",{"path":4898,"title":4899,"module":4883,"summary":4900},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential","The Dirac-Delta Potential: A Single Bound State and Scattering","A potential concentrated at a single point is solvable in closed form and isolates the physics of matching a wave function across a discontinuity. Integrating the Schrödinger equation across the spike gives a jump condition on the derivative; the attractive delta well then supports exactly one bound state, of energy set by the strength alone, while the same spike scatters an incoming beam with a transmission that rises from zero to one. The attractive well and the repulsive barrier scatter identically yet only the well binds.\n",{"path":4902,"title":4903,"module":4883,"summary":4904},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling","Barrier Penetration and Quantum Tunneling","Unbound states scatter rather than bind. A particle meeting a step is partly reflected even when it has more than enough energy to pass, and a particle meeting a barrier taller than its energy has a nonzero chance of appearing on the far side. Matching the wave function across the boundaries gives the reflection and transmission coefficients and the exponential tunneling probability that explains alpha decay, the scanning tunneling microscope, and the ammonia clock.\n",{"path":4906,"title":4907,"module":4908,"summary":4909},"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation","Hilbert Space and Dirac Bra–Ket Notation","The Formalism of Quantum Mechanics","Wave mechanics is one representation of a deeper structure: quantum states are vectors in a complex inner-product space, and observables act on them as linear operators. We build that space from the axioms, introduce Dirac's kets and bras as vectors and the linear functionals that measure them, and identify the wavefunction as the components of an abstract state in the position basis. The resolution of the identity is the single algebraic tool that ties every basis, expansion, and matrix element together.\n",{"path":4911,"title":4912,"module":4908,"summary":4913},"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues","Observables, Hermitian Operators, and the Spectral Theorem","Every measurable quantity is represented by a Hermitian operator, and the reason is forced: a measurement needs real eigenvalues, orthogonal eigenvectors, and a complete eigenbasis, and Hermiticity delivers precisely those. We derive those properties from self-adjointness, state the spectral theorem, handle degeneracy, and show that two observables share an eigenbasis precisely when they commute — the algebraic condition behind compatible and incompatible measurements.\n",{"path":4915,"title":4916,"module":4908,"summary":4917},"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement","The Postulates and Quantum Measurement","With states as vectors and observables as Hermitian operators, the physical content of quantum mechanics reduces to a short list of postulates. We state them precisely, derive the Born probability rule for discrete and continuous spectra, work out projective collapse and its idempotence, compute expectation values and their variance, and state the measurement problem cleanly — the one place the postulates split unitary evolution from measurement without explaining the seam.\n",{"path":4919,"title":4920,"module":4908,"summary":4921},"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra","Position, Momentum, and Continuous Spectra","Position and momentum are the observables with no normalizable eigenstates: their spectra are continuous, their eigenkets are delta-normalized, and the two are Fourier conjugates. We derive the canonical commutator from the momentum operator, build the continuous-basis machinery (Dirac deltas replacing Kronecker deltas), show the position and momentum wavefunctions are a Fourier-transform pair, and compute expectation values in either representation.\n",{"path":4923,"title":4924,"module":4908,"summary":4925},"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle","Commutators and the Generalized Uncertainty Principle","The commutator of two observables measures the obstruction to sharing an eigenbasis, and it bounds how sharply both can be known at once. We derive the generalized uncertainty relation from the Schwarz inequality, recover the position–momentum bound as a special case, characterize the minimum-uncertainty states that saturate it as Gaussians, and give the energy–time relation its correct reading as a lifetime bound rather than a commutator relation.\n",{"path":4927,"title":4928,"module":4908,"summary":4929},"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures","Time Evolution, Propagators, and the Heisenberg Picture","Time evolution is generated by the Hamiltonian and implemented by a unitary operator that preserves probability. We build that operator, expand a state in stationary states to see why probability densities freeze while phases wind, introduce the propagator, transfer the time dependence onto operators in the Heisenberg picture, and derive Ehrenfest's theorem — which recovers classical equations of motion for expectation values and identifies conserved quantities as observables commuting with the Hamiltonian.\n",{"path":4931,"title":4932,"module":4933,"summary":4934},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states","Ladder Operators and the Number States","The Oscillator Algebraically, and Symmetry","The harmonic oscillator can be solved without touching a differential equation. Factoring the Hamiltonian into a lowering operator and its adjoint turns the spectrum into pure algebra: the commutator relation fixes the ladder, the vacuum condition fixes the ground state, and the energies fall out as equally spaced rungs. The same operators give the matrix elements of position and momentum for free.\n",{"path":4936,"title":4937,"module":4933,"summary":4938},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states","Coherent and Squeezed States","A single number state never moves — its position expectation is pinned at the origin. The superposition that oscillates like a classical particle is the eigenstate of the annihilation operator: the coherent state. It is a displaced vacuum, carries Poissonian photon statistics, saturates the uncertainty bound, and traces a rigid Gaussian orbit in phase space. Squeezing deforms that circle, trading precision in one quadrature for noise in the other.\n",{"path":4940,"title":4941,"module":4933,"summary":4942},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws","Symmetries, Generators, and Conservation Laws","Every continuous symmetry of a quantum system is a unitary operator built by exponentiating a Hermitian generator: momentum generates translations, angular momentum generates rotations, the Hamiltonian generates time evolution. When a generator commutes with the Hamiltonian, the transformation leaves the dynamics unchanged and the generator is conserved — the quantum form of Noether's theorem — and any symmetry that mixes states within a level forces degeneracy.\n",{"path":4944,"title":4945,"module":4933,"summary":4946},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries","Parity, Time Reversal, and Discrete Symmetries","Parity and time reversal are symmetries no continuous generator can reach. Parity is a unitary involution whose eigenvalues label states even or odd, fixing the dipole selection rules. Time reversal is antiunitary: it conjugates i, flips momenta and spins, and for half-integer spin squares to minus one, which by Kramers' theorem makes every level of a time-reversal-invariant Hamiltonian at least doubly degenerate.\n",{"path":4948,"title":4949,"module":3945,"summary":4950},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics","Orbital Angular Momentum and Spherical Harmonics","Orbital angular momentum is the operator triple built from position and momentum. Its components fail to commute, so no state carries sharp values of more than one of them, but each commutes with the total square. Solving the common eigenvalue problem in spherical coordinates quantizes both the magnitude and the projection and produces the spherical harmonics, the angular part of every central-force wavefunction.\n",{"path":4952,"title":4953,"module":3945,"summary":4954},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra","The Angular-Momentum Algebra and Ladder Operators","The eigenvalues of angular momentum follow from the commutation relations alone, with no reference to coordinates or wavefunctions. Raising and lowering operators built from the components generate finite multiplets, force the total quantum number to be a non-negative integer or half-integer, and fix the matrix elements of every component. The half-integer values excluded by orbital motion appear here, and they are what spin realizes.\n",{"path":4956,"title":4957,"module":3945,"summary":4958},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan","Addition of Angular Momenta and Clebsch–Gordan Coefficients","Two angular momenta combine into a total whose allowed magnitudes run from the difference to the sum of the parts in integer steps. The change from the uncoupled product basis to the coupled total-angular-momentum basis is carried out with the lowering operator and orthogonality, and its matrix of overlaps is the table of Clebsch–Gordan coefficients. Two spin-halves split into a triplet and a singlet, the prototype for every composite spin.\n",{"path":4960,"title":4961,"module":4962,"summary":4963},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions","The Schrödinger Equation in Three Dimensions","Central Potentials","A central potential depends only on the distance from a force center, so the three-dimensional Schrödinger equation separates in spherical coordinates. The angular factor is a spherical harmonic; the radial factor obeys a one-dimensional equation with an effective potential whose centrifugal barrier depends on the angular-momentum quantum number. The free particle and the spherical box fix the two limiting cases through the spherical Bessel functions.\n",{"path":4965,"title":4966,"module":4962,"summary":4967},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom","The Hydrogen Atom","The Coulomb potential turns the radial equation into one whose bound states exist only for a discrete set of energies. A power-series solution truncated to keep the wavefunction normalizable forces the principal quantum number, and the energy comes out proportional to minus one over its square, recovering the Rydberg spectrum. The bound states are the associated Laguerre functions times spherical harmonics, and their energy depends on the principal number alone, giving an n-squared degeneracy larger than rotational symmetry can explain.\n",{"path":4969,"title":4970,"module":4962,"summary":4971},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry","The Isotropic Oscillator and Hidden Symmetry","The three-dimensional isotropic harmonic oscillator solves in both Cartesian and spherical bases, and the two solutions must agree on the degeneracy of every level. That agreement, and the accidental degeneracy of hydrogen, both come from a symmetry larger than rotation: the oscillator carries an SU(3) invariance built from a conserved quadrupole tensor, and the Coulomb problem carries an SO(4) invariance built from the conserved Runge–Lenz vector. These hidden symmetries pin the degeneracies that rotational invariance alone leaves unexplained.\n",{"path":4973,"title":4974,"module":4975,"summary":4976},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach","Spin-½, the Pauli Matrices, and Stern–Gerlach","Spin","A silver atom passing through an inhomogeneous magnetic field splits into two beams, not a smear. That single fact fixes the internal angular momentum of the electron to a two-valued quantity with no spatial wavefunction. We build the two-dimensional spin space, the Pauli matrices and their algebra, the spinor for measurement along an arbitrary axis, and the sequential Stern–Gerlach filters that expose measurement disturbance.\n",{"path":4978,"title":4979,"module":4975,"summary":4980},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance","Spin in a Magnetic Field: Precession and Resonance","A spin coupled to a magnetic field is the simplest nontrivial quantum dynamics. A static field makes the spin expectation precess on a cone at the Larmor frequency while the energy levels split linearly. Adding a weak oscillating field and passing to the rotating frame produces Rabi oscillations and a resonance lineshape — the physics of NMR and ESR, and the driven qubit.\n",{"path":4982,"title":4983,"module":4975,"summary":4984},"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere","Two-Level Systems and the Bloch Sphere","Every two-state quantum system is a spin-½ in disguise. Its Hamiltonian is an effective magnetic field, its pure states are points on the Bloch sphere, and its unitary evolution is a rigid rotation of that sphere. The same structure produces avoided level crossings, the ammonia inversion doublet and its maser, and the qubit.\n",{"path":4986,"title":4987,"module":4988,"summary":4989},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry","Identical Particles and Exchange Symmetry","Identical Particles","Two electrons carry no label that distinguishes one from the other, and that bare fact reshapes the state space. The exchange operator that swaps particle labels commutes with any Hamiltonian built from identical particles, so its eigenvalue is conserved, and nature admits only its two extremes: totally symmetric states for bosons and totally antisymmetric states for fermions. The antisymmetry forces a statistical correlation, the exchange \"force,\" that keeps fermions apart and draws bosons together even with no interaction between them.\n",{"path":4991,"title":4992,"module":4988,"summary":4993},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table","The Pauli Principle, Atoms, and the Periodic Table","Antisymmetry packaged as a Slater determinant turns the exclusion principle into an operating rule for building atoms. Helium shows the machinery in full: the electron-electron repulsion splits into a direct Coulomb integral and an exchange integral, and the exchange term alone pushes the spin-triplet (orthohelium) below the spin-singlet (parahelium) with no magnetic interaction in sight. Screening, the aufbau order, and Hund's rules then assemble the whole periodic table from the same antisymmetry.\n",{"path":4995,"title":4996,"module":4997,"summary":4998},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory","Time-Independent Perturbation Theory","Approximation Methods for Bound States","Almost no realistic Hamiltonian can be solved exactly. Perturbation theory treats a hard Hamiltonian as a solvable one plus a small correction and expands the eigenvalues and eigenstates in powers of that correction. We derive the first- and second-order energy shifts and the first-order state correction for a nondegenerate level, expose the small-denominator failure that degeneracy forces, and fix it by diagonalizing the perturbation inside the degenerate subspace to find the \"good\" zeroth-order states.\n",{"path":5000,"title":5001,"module":4997,"summary":5002},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom","Fine Structure and the Real Hydrogen Atom","The Bohr spectrum is only the leading term. Two relativistic corrections of order alpha-squared — the relativistic kinetic-energy correction and spin–orbit coupling, joined by the Darwin term for s states — split the hydrogen levels into fine structure that depends on the total angular momentum j. We derive each shift as a first-order perturbation, combine them into a formula depending only on n and j, and continue down the energy ladder to the Lamb shift and the hyperfine 21 cm line.\n",{"path":5004,"title":5005,"module":4997,"summary":5006},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects","The Zeeman and Stark Effects","An atom in an external field is a perturbation problem whose good basis depends on which interaction wins. A magnetic field competes with the internal spin–orbit coupling: the weak-field limit gives the anomalous Zeeman splitting set by the Landé g-factor, the strong-field limit gives the Paschen–Back pattern in the uncoupled basis, and the intermediate regime is a matrix diagonalization. An electric field gives a quadratic shift for the nondegenerate ground state and a linear splitting for the degenerate n = 2 level.\n",{"path":5008,"title":5009,"module":4997,"summary":5010},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method","The Variational Method","The expectation of the Hamiltonian in any trial state is an upper bound on the true ground-state energy. Minimizing that expectation over a parametrized family of trial functions turns the ground-state problem into ordinary calculus and needs no small parameter. We prove the bound, apply it to the helium atom with a screened effective charge, use a two-center trial to predict binding in the hydrogen molecular ion, and extend the method to excited states through orthogonality.\n",{"path":5012,"title":5013,"module":4997,"summary":5014},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation","The WKB Approximation","When the potential varies slowly on the scale of the de Broglie wavelength, the wavefunction is locally a plane wave with a position-dependent wavelength. This semiclassical picture builds the wavefunction from the classical momentum, breaks down at the turning points where the momentum vanishes, and is repaired there by connection formulas. The result recovers the Bohr–Sommerfeld quantization rule with its half-integer correction and gives the exponential tunneling rate through a smooth barrier, the Gamow factor.\n",{"path":5016,"title":5017,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":5019,"title":5020,"module":5021,"summary":5022},"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions","Sets, Logic, and Functions","Foundations and the Real Number System","The working language of analysis: quantifiers and the proof patterns (contrapositive, contradiction, induction), sets and their operations, relations and equivalence classes, and functions with their images, injections, surjections, and bijections. Cardinality is measured by bijection, and Cantor's theorem that no set surjects onto its power set forces uncountable sets to exist.\n",{"path":5024,"title":5025,"module":5021,"summary":5026},"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness","Ordered Fields and the Completeness Axiom","The real numbers are the unique ordered field with the least-upper-bound property. The field and order axioms, the exact failure of the rationals (no supremum for the set of rationals below √2), and completeness as the defining axiom of ℝ lead to the first consequences: the existence of √2, the Archimedean property, and the density of ℚ in ℝ.\n",{"path":5028,"title":5029,"module":5021,"summary":5030},"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds","Absolute Value, Bounded Sets, and Inequalities","The absolute value turns the order on ℝ into a notion of distance, with the triangle inequality as the estimate underlying most later proofs. Covered: its algebra, the triangle and reverse-triangle inequalities, and the extension of the sup\u002Finf vocabulary from sets to bounded functions.\n",{"path":5032,"title":5033,"module":5021,"summary":5034},"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability","Intervals, Uncountability, and Decimals","Intervals are classified, and ℝ is proved uncountable two ways: a nested-interval construction and the decimal diagonal argument. Decimal expansions are built as suprema of truncations, which pins the source of their non-uniqueness (the 0.4999… equals 0.5000… identity) and the identification of the rationals with the eventually-repeating expansions. The middle-thirds Cantor set is an uncountable set of measure zero.\n",{"path":5036,"title":5037,"module":5038,"summary":5039},"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits","Sequences and Their Limits","Sequences and Series","A sequence is a function on the natural numbers; it converges to a limit when its terms eventually stay within any prescribed tolerance of that number. The epsilon-M definition fixes the order of the quantifiers, and from it the limit is unique, every convergent sequence is bounded, and only the tail matters. Divergence to plus or minus infinity records terms that outgrow every bound.\n",{"path":5041,"title":5042,"module":5038,"summary":5043},"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone","Limit Laws and Monotone Convergence","Limits commute with sums, products, quotients, roots, and absolute values and preserve non-strict inequalities, so a limit can be assembled from the limits of its parts without returning to epsilon and M. The squeeze lemma transfers a limit through two envelopes; the monotone convergence theorem produces a limit from boundedness alone; and the ratio test settles the geometric and factorial standard limits.\n",{"path":5045,"title":5046,"module":5038,"summary":5047},"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass","Subsequences, Limit Superior, and Bolzano–Weierstrass","A bounded sequence need not converge, but it always has convergent subsequences, and its terms cluster between two extreme values. The limit superior and inferior are the limits of the tail suprema and infima; they always exist for a bounded sequence, coincide exactly when it converges, and are its largest and smallest subsequential limits. Bolzano–Weierstrass extracts a convergent subsequence from boundedness alone.\n",{"path":5049,"title":5050,"module":5038,"summary":5051},"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness","Cauchy Sequences and the Completeness of the Reals","The Cauchy criterion tests convergence without knowing the limit: a sequence converges exactly when its terms eventually all lie within any tolerance of one another. Cauchy sequences are bounded, in the reals Cauchy and convergent are equivalent, and this completeness property is interchangeable with the least-upper-bound axiom — the single feature that separates the real line from the rationals.\n",{"path":5053,"title":5054,"module":5038,"summary":5055},"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence","Series and Convergence Tests","A series converges when its sequence of partial sums does, so every fact about sequences transfers. Geometric and telescoping series sum in closed form; the n-th term test rejects series whose terms miss zero, though the harmonic series shows the converse fails; and the comparison test against the geometric and p-series benchmarks settles most nonnegative-term series.\n",{"path":5057,"title":5058,"module":5038,"summary":5059},"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement","Absolute Convergence, the Ratio and Root Tests, and Rearrangements","Absolute convergence is the strong form of convergence that permits free manipulation; conditional convergence is fragile. Absolute convergence implies convergence, and the ratio and root tests detect it by comparison with the geometric series. The alternating series test supplies conditionally convergent series, Riemann's theorem rearranges any of them to any sum, and Mertens' theorem multiplies series when at least one converges absolutely.\n",{"path":5061,"title":5062,"module":5063,"summary":5064},"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms","Metric Spaces, Norms, and Examples","Metric Spaces and Topology","A metric is a function $d(x,y)$ obeying four axioms: nonnegativity, identity of indiscernibles, symmetry, and the triangle inequality. The Euclidean, taxicab, sup, discrete, and great-circle metrics all qualify, as does the sup metric on $C[a,b]$. Every norm induces a metric, and strongly equivalent metrics share the same open sets.\n",{"path":5066,"title":5067,"module":5063,"summary":5068},"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets","Open and Closed Sets, Interior, Closure","Open sets are those in which every point has room to move; closed sets are their complements. From the single ball construction come the topology axioms (arbitrary unions, finite intersections), the interior, closure, and boundary of a set, and the fact that openness is always relative to the ambient space.\n",{"path":5070,"title":5071,"module":5063,"summary":5072},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness","Convergence, Cauchy Sequences, and Completeness","The $\\varepsilon$-$N$ definition of a limit transfers verbatim to any metric space once $|x-y|$ is replaced by $d(x,y)$. Convergent sequences characterize closed sets and closures; Cauchy sequences and completeness capture spaces with no missing limits, with $\\mathbb{R}^n$ and $C[a,b]$ complete and $\\mathbb{Q}$ and $(0,1]$ not.\n",{"path":5074,"title":5075,"module":5063,"summary":5076},"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness","Compactness","A set is compact if every open cover has a finite subcover. In a metric space this is equivalent to sequential compactness and to being complete and totally bounded. Compact sets are closed and bounded; the Heine–Borel theorem gives the converse in $\\mathbb{R}^n$ but nowhere else in general.\n",{"path":5078,"title":5079,"module":5063,"summary":5080},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness","Connectedness","A space is connected when it cannot be split into two nonempty open pieces. The connected subsets of $\\mathbb{R}$ are precisely the intervals, path- connectedness gives a constructive sufficient condition, and connectedness is a topological invariant preserved by continuous maps, the fact behind the intermediate value theorem.\n",{"path":5082,"title":5083,"module":3639,"summary":5084},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions","Limits of Functions","The limit of a function at a point is an epsilon–delta condition pinning one value L as the target of f(x) as x approaches c, mirroring the sequence definition with distance replacing index. It is stated only at cluster points of the domain, is unique when it exists, and reduces to sequential limits through the Heine criterion. The algebra of limits and one-sided limits follow from that reduction.\n",{"path":5086,"title":5087,"module":3639,"summary":5088},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions","Continuous Functions","A function is continuous at c when its limit there equals its own value, lim f(x) = f(c). The epsilon–delta and sequential forms agree; sums, products, quotients, and compositions of continuous functions are continuous; and the failures split into jump, Dirichlet, popcorn, and removable types. The topological reading is that preimages of open sets are open.\n",{"path":5090,"title":5091,"module":3639,"summary":5092},"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt","Extreme and Intermediate Value Theorems","On a closed bounded interval a continuous function attains an absolute maximum and minimum (the extreme value theorem, compactness preserved by continuity) and takes every value between its endpoint values (the intermediate value theorem, connectedness preserved). Both proofs run through Bolzano–Weierstrass and bisection, and yield root-finding, existence of k-th roots, and fixed-point theorems.\n",{"path":5094,"title":5095,"module":3639,"summary":5096},"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity","Uniform Continuity","Uniform continuity strengthens continuity by demanding one delta that works at every point of the domain, not a delta re-chosen at each point. It separates x^2 on a compact interval from x^2 on the whole line and from 1\u002Fx near zero; continuity on a closed bounded interval is automatically uniform; uniformly continuous functions preserve Cauchy sequences and extend to endpoints; and Lipschitz continuity is the strongest of the three, through its secant-slope bound.\n",{"path":5098,"title":5099,"module":3639,"summary":5100},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces","Continuity on Metric Spaces","The epsilon–delta definition used only distances, so continuity transfers to maps between metric spaces by replacing absolute values with the two metrics. In this generality continuity still admits a sequential form, preserves compactness and connectedness, is uniform on a compact domain, and reads topologically as preimages of open sets being open, the formulation that defines homeomorphisms.\n",{"path":5102,"title":5103,"module":3639,"summary":5104},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone","Limits at Infinity and Monotone Functions","Treating infinity as a cluster point extends the epsilon–delta limit to x approaching plus or minus infinity, giving horizontal asymptotes and infinite limits. For monotone functions the one-sided limits always exist as suprema and infima, the discontinuities are jumps and at most countably many, the continuity is equivalent to the image being an interval, and a strictly monotone function always has a continuous inverse.\n",{"path":5106,"title":5107,"module":5108,"summary":5109},"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative","The Derivative","Differentiation","The derivative is the limit of the difference quotient, the slope the secant lines approach as the second point slides into the first. Differentiability forces continuity; linearity and the product, quotient, and chain rules follow from the definition; and a continuous function can fail to be differentiable, as the absolute value does at the origin.\n",{"path":5111,"title":5112,"module":5108,"summary":5113},"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem","The Mean Value Theorem","A relative extremum in the interior forces the derivative to vanish; Rolle's theorem and the mean value theorem turn that local fact into global control. The sign of the derivative fixes monotonicity, a bounded derivative yields a Lipschitz bound, and Darboux's theorem shows derivatives have the intermediate value property even where they are discontinuous.\n",{"path":5115,"title":5116,"module":5108,"summary":5117},"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem","Taylor's Theorem","Taylor's theorem generalizes the mean value theorem: an n-times differentiable function is matched near a point by a degree-n polynomial, with a Lagrange remainder that names the error exactly through one higher derivative. Iterating the mean value theorem proves it; the second-derivative test is the order-one case; and a smooth non-analytic bump separates a Taylor series from the function it fails to represent.\n",{"path":5119,"title":5120,"module":5108,"summary":5121},"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d","The Inverse Function Theorem in One Variable","A nonzero derivative certifies a local inverse and fixes its slope. A strictly monotone differentiable function has a differentiable inverse whose derivative is the reciprocal of the original; the inverse function theorem removes the monotonicity hypothesis, and the reciprocal formula constructs nth roots and the logarithm's derivative, failing exactly where the derivative vanishes.\n",{"path":5123,"title":5124,"module":5125,"summary":5126},"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral","Partitions, Darboux Sums, and Integrability","The Riemann Integral","The Riemann integral is defined by trapping the area under a bounded function between under- and over-estimates. Partitions cut the domain into strips; lower and upper Darboux sums bracket the area; refining a partition tightens the bracket. A function is integrable exactly when the bracket can be made arbitrarily thin, and the tagged Riemann-sum limit gives the same number.\n",{"path":5128,"title":5129,"module":5125,"summary":5130},"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes","Which Functions Are Integrable","The Cauchy criterion certifies whole classes of functions as integrable. Continuous functions are integrable because uniform continuity makes every oscillation cap small; monotone functions are integrable because their caps telescope to a single total jump; bounded functions with finitely many discontinuities are integrable by isolating the bad points. The Dirichlet function fails, and the Lebesgue criterion names the exact boundary.\n",{"path":5132,"title":5133,"module":5125,"summary":5134},"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral","Properties of the Integral","The integral is a linear, order-preserving, additive operator on the integrable functions. It splits across subintervals, respects inequalities, bounds the size of a function by the integral of its absolute value, and preserves products. The mean value theorem for integrals identifies the integral with an attained average height on a fixed rectangle.\n",{"path":5136,"title":3694,"module":5125,"summary":5137},"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem","The fundamental theorem ties the integral to the derivative in two forms. The evaluation form computes a definite integral from any antiderivative; the differentiation form shows the area function has derivative equal to the integrand at points of continuity. Together they make differentiation and integration inverse operations, and yield integration by parts and change of variables.\n",{"path":5139,"title":5140,"module":5125,"summary":5141},"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper","The Logarithm, Exponential, and Improper Integrals","The integral defines transcendental functions. The logarithm is the area under 1\u002Ft, the exponential is its inverse, and their calculus properties follow from the fundamental theorem. Improper integrals extend integration to unbounded intervals and unbounded integrands as limits of proper integrals, with a p-test, a comparison test, absolute versus conditional convergence, and the integral test linking integrals to series.\n",{"path":5143,"title":5144,"module":5145,"summary":5146},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence","Pointwise and Uniform Convergence","Sequences and Series of Functions","A sequence of functions has two natural notions of limit. Pointwise convergence fixes each input and takes the limit of numbers; uniform convergence demands one rate that works for every input at once. The uniform norm turns the second into a statement about a single sequence of numbers, and the uniform Cauchy criterion and the Weierstrass M-test let us certify it.\n",{"path":5148,"title":5149,"module":5145,"summary":5150},"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits","Interchange of Limits: Continuity, Integration, Differentiation","Passing to a limit inside a continuity statement, an integral, or a derivative is an interchange of two limits, and the two limits do not always commute. Uniform convergence licenses the first two swaps: the uniform limit of continuous functions is continuous, and the limit of the integrals is the integral of the limit. Differentiation needs uniform convergence of the derivatives, and counterexamples show why each hypothesis is required.\n",{"path":5152,"title":5153,"module":5145,"summary":5154},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass","Power Series and the Weierstrass Approximation Theorem","A power series converges uniformly on every closed subinterval inside its radius of convergence, together with all of its derivatives. That makes it continuous, differentiable, and integrable term by term, so a power series defines an infinitely differentiable function. The Weierstrass approximation theorem then shows that polynomials come uniformly close to any continuous function on a closed bounded interval.\n",{"path":5156,"title":5157,"module":5145,"summary":5158},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode","Picard's Existence and Uniqueness Theorem","The Banach fixed-point theorem says a contraction of a complete metric space has exactly one fixed point, found by iterating from any start. Applied to the space of continuous functions with the uniform norm, it proves Picard's theorem: a first-order differential equation with a Lipschitz right-hand side has a unique local solution. Picard iteration constructs that solution explicitly, and worked examples show the Lipschitz condition is not optional.\n",{"path":5160,"title":5161,"module":5162,"summary":5163},"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn","The Derivative of a Map ℝⁿ → ℝᵐ","Functions of Several Variables (Introduction)","The derivative of a map between Euclidean spaces is the linear transformation of vanishing relative error, unique when it exists and represented in coordinates by the Jacobian matrix of partial derivatives. Differentiability forces continuity through a local Lipschitz bound. Existence of the partial derivatives alone does not suffice; continuity of the partials does.\n",{"path":5165,"title":5166,"module":5162,"summary":5167},"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule","Directional Derivatives, the Gradient, and the Chain Rule","The directional derivative measures the rate of change of a scalar field along a chosen heading and equals the derivative applied to that direction. The gradient collects these into a vector that points along steepest ascent and sits orthogonal to level sets. The chain rule composes derivatives by multiplying Jacobians, and a mean value theorem holds for scalar fields but fails for vector-valued maps.\n",{"path":5169,"title":5170,"module":5162,"summary":5171},"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema","Higher Derivatives, Taylor's Theorem, and Extrema","Iterating the derivative gives a symmetric second derivative, the Hessian, whose mixed partials agree when they are continuous. Taylor's theorem expands a smooth map to any order with a Lagrange-type remainder, and at a critical point the definiteness of the Hessian decides between a local minimum, a local maximum, and a saddle.\n",{"path":5173,"title":5174,"module":5162,"summary":5175},"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems","The Inverse and Implicit Function Theorems","A nonlinear map with a nonsingular Jacobian is locally invertible, with the inverse's derivative given by the inverse matrix. The contraction mapping principle supplies the local inverse; the implicit function theorem then solves a system for some variables in terms of the rest whenever the relevant Jacobian block is invertible. Worked coordinate changes show both theorems in use.\n",{"path":5177,"title":5178,"module":5162,"summary":5179},"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals","Multiple Integrals","The Riemann integral of a bounded function over a closed rectangle in Euclidean space is built from Darboux upper and lower sums on a grid of subrectangles, with the same squeeze criterion that governs the one-variable integral. Continuous integrands are integrable, and a set of content zero can be ignored. Fubini's theorem evaluates a multiple integral as an iterated one in either order, and the indicator trick extends the theory to regions bounded by curves.\n",{"path":5181,"title":5182,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":5184,"title":5185,"module":5,"summary":5186},"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations","Sets, Functions, and Equivalence Relations","Algebra is built on three prior notions: the set, the map between sets, and the equivalence relation that reorganizes a set into disjoint classes. Sets, maps (injective, surjective, bijective), fibers and preimages, and the correspondence between equivalence relations and partitions — the one structural fact reused in every later quotient construction.\n",{"path":5188,"title":5189,"module":5,"summary":5190},"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic","The Integers and Modular Arithmetic","The integers carry the template every ring later imitates: well-ordering drives induction, induction drives the division algorithm, and division drives the Euclidean algorithm, gcd, Bézout's identity, and unique factorization into primes. Quotienting by congruence mod n builds the first finite arithmetic, Z\u002FnZ, whose invertible elements form the group of units.\n",{"path":5192,"title":5193,"module":5194,"summary":5195},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples","Group Axioms and First Examples","Groups and Symmetry","A group is a set with one associative operation that has an identity and inverses. We state the axioms, prove that the identity, inverses, and cancellation behave as expected, define the order of a group and of an element, and catalogue the running examples: the integers, the additive group of residues mod n, and the multiplicative group of units mod n.\n",{"path":5197,"title":5198,"module":5194,"summary":5199},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups","Dihedral and Symmetric Groups","The dihedral group D_{2n} is the symmetries of a regular n-gon, generated by a rotation r and a reflection s subject to three relations. The symmetric group S_n is all permutations of n objects, written in cycle notation. Orders, generators and relations, cycle decomposition, the order of a permutation from its cycle type, and the parity that splits S_n in half.\n",{"path":5201,"title":5202,"module":5194,"summary":5203},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups","Matrix and Quaternion Groups","Invertible matrices over a field form the general linear group GL_n(F), with the determinant-one matrices as the subgroup SL_n(F). Over a finite field the order of GL_n(F) has a clean product formula. The quaternion group Q_8 is a second small nonabelian group, distinct from the dihedral group of the same order; its multiplication and subgroup structure sharpen the contrast between the two.\n",{"path":5205,"title":5206,"module":5194,"summary":5207},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions","Homomorphisms, Isomorphisms, and Actions","A homomorphism is a map between groups that respects the operation; an isomorphism is a bijective one, making two groups the same up to relabeling. The kernel and image measure how far a homomorphism is from injective and surjective. A group action realizes a group as permutations of a set, and actions correspond exactly to homomorphisms into a symmetric group, with orbits and stabilizers as the first tools for counting.\n",{"path":5209,"title":5210,"module":5211,"summary":5212},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures","Subgroups and Their Substructures","Subgroups and Quotients","A subgroup is a subset that is a group under the inherited operation. One test decides it: nonempty and closed under the map $(x,y) \\mapsto xy^{-1}$. From an arbitrary subset $A$ we build the centralizer, normalizer, and center, and from an action the stabilizer and kernel, all of them subgroups nested in a fixed chain inside $G$.\n",{"path":5214,"title":5215,"module":5211,"summary":5216},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups","Cyclic Groups","A cyclic group is generated by one element. Two facts organize the whole theory: the order of an element equals the order of the subgroup it generates, and cyclic groups of equal order are isomorphic, so $\\mathbb{Z}$ and $\\mathbb{Z}\u002Fn\\mathbb{Z}$ are the only ones. From there the generators ($\\varphi(n)$ of them), the subgroups (one per divisor of $n$), and a fast exponentiation algorithm all follow.\n",{"path":5218,"title":5219,"module":5211,"summary":5220},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices","Generation and the Lattice of Subgroups","The subgroup generated by a subset $A$ is the smallest subgroup containing it, described top-down as an intersection and bottom-up as the set of words in $A$ and its inverses. Collecting all subgroups and ordering them by containment produces the subgroup lattice, whose Hasse diagram shows the joins, meets, and containment relations among all subgroups.\n",{"path":5222,"title":5223,"module":5211,"summary":5224},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups","Cosets, Lagrange, and Normal Subgroups","The left cosets of a subgroup partition a group into equal-sized blocks, so the order of a subgroup divides the order of the group: Lagrange's theorem. When the blocks can be multiplied consistently — exactly when the subgroup is normal — they form the quotient group $G\u002FN$. Fermat's and Euler's theorems fall out as index computations.\n",{"path":5226,"title":5227,"module":5211,"summary":5228},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems","The Isomorphism Theorems","Four theorems relate homomorphisms, quotients, and subgroup lattices. The first identifies the image of a homomorphism with the quotient by its kernel; the second and third compute quotients built from two subgroups and quotients of quotients; the fourth matches the subgroups of $G\u002FN$ with the subgroups of $G$ lying above $N$. Together they make quotient groups computable.\n",{"path":5230,"title":5231,"module":5211,"summary":5232},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group","Composition Series and the Alternating Group","A composition series breaks a finite group into simple quotient factors, and Jordan-Hölder says those factors are unique up to order. This turns classification into two problems: list the simple groups, and describe how to reassemble them. The sign homomorphism splits $S_n$ into even and odd permutations, defining the alternating group $A_n$, simple for $n \\ge 5$.\n",{"path":5234,"title":5235,"module":5236,"summary":5237},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem","Actions, Orbits, and Cayley's Theorem","Group Actions and Sylow Theory","A group action turns abstract elements into permutations of a set. The action splits the set into orbits, and the orbit-stabilizer theorem ties each orbit's size to the index of a stabilizer. Applied to a group acting on itself by left multiplication, this gives Cayley's theorem: every group is a group of permutations.\n",{"path":5239,"title":5240,"module":5236,"summary":5241},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation","Conjugation and the Class Equation","A group acts on itself by conjugation, and the orbits are the conjugacy classes. Orbit-stabilizer turns the resulting partition into the class equation, which forces every group of prime-power order to have a nontrivial center. Conjugacy in the symmetric group is cycle type, and Burnside's lemma counts orbits by averaging fixed points.\n",{"path":5243,"title":5244,"module":5236,"summary":5245},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems","The Sylow Theorems","Lagrange's theorem forbids subgroups whose order fails to divide the group order; Sylow's theorems supply a partial converse for prime powers. A Sylow p-subgroup always exists, all of them are conjugate, and their count satisfies two congruence-and-divisibility constraints tight enough to prove many groups non-simple from their order alone.\n",{"path":5247,"title":5248,"module":5236,"summary":5249},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups","Automorphisms and Simplicity of Aₙ","Conjugation makes a group act on itself and on its normal subgroups by automorphisms, giving the inner automorphism group G\u002FZ(G) and the embedding of N(H)\u002FC(H) into Aut(H). Characteristic subgroups are those every automorphism fixes, and the automorphism group of a cyclic group is its unit group. The lesson closes by proving the alternating group Aₙ is simple for n ≥ 5.\n",{"path":5251,"title":5252,"module":5253,"summary":5254},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups","Direct Products and Finite Abelian Groups","Products and Group Structure","The direct product assembles a larger group from componentwise copies of smaller ones, and a recognition theorem reverses the process when two normal subgroups meet trivially and span the group. The Fundamental Theorem of Finitely Generated Abelian Groups then classifies every such group by two equivalent invariants, invariant factors and elementary divisors.\n",{"path":5256,"title":5257,"module":5253,"summary":5258},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products","Semidirect Products","The semidirect product relaxes the direct product by requiring only one factor to be normal, with the other acting on it through a homomorphism into its automorphism group. This single twisting map lets abelian pieces assemble into non-abelian groups, realizes the dihedral groups as $\\mathbb{Z}_n \\rtimes \\mathbb{Z}_2$, and, with a recognition theorem, classifies groups of several small orders.\n",{"path":5260,"title":5261,"module":5253,"summary":5262},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups","p-Groups, Nilpotent, and Solvable Groups","Finite p-groups have nontrivial center, and iterating the center upward builds the nilpotent groups, which decompose as the direct product of their Sylow subgroups. Iterating the commutator downward builds the solvable groups, whose factors are abelian. The chain cyclic, abelian, nilpotent, solvable orders these classes, and A_5 breaks the last link.\n",{"path":5264,"title":5265,"module":5253,"summary":5266},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups","Classifying Groups of Small Order","With Sylow's theorem to force normal subgroups, direct and semidirect products to assemble them, and presentations to name the result, every group up to order fifteen can be listed explicitly. Free groups make presentations precise: generators with no relations, from which any group is a quotient by the normal closure of its relations.\n",{"path":5268,"title":5269,"module":5270,"summary":5271},"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples","Rings: Definitions and Examples","Ring Theory","A ring carries two operations: an abelian group under addition and an associative multiplication linked by the distributive laws. The named special cases — commutative rings, integral domains, division rings, and fields — differ only in how their multiplication behaves. Standard examples include quadratic integer rings, polynomial rings, matrix rings, and group rings.\n",{"path":5273,"title":5274,"module":5270,"summary":5275},"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms","Ideals, Quotient Rings, and Homomorphisms","Ring homomorphisms have kernels that absorb multiplication; such subsets are ideals, and every ideal is the kernel of the projection onto a quotient ring. The quotient construction yields the ring isomorphism theorems and classifies ideals by their quotients: R\u002FI is a field exactly when I is maximal, an integral domain exactly when I is prime.\n",{"path":5277,"title":5278,"module":5270,"summary":5279},"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem","Fields of Fractions and the CRT","Rings of fractions invert a multiplicatively closed set, enlarging an integral domain into its field of fractions the way Z becomes Q. The Chinese Remainder Theorem splits a quotient by comaximal ideals into a direct product, generalizing Z\u002FmnZ ≅ Z\u002FmZ × Z\u002FnZ and explaining why the Euler function is multiplicative.\n",{"path":5281,"title":5282,"module":5283,"summary":5284},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds","Euclidean Domains, PIDs, and UFDs","Factorization and Polynomial Rings","Three classes of integral domain, ordered by how much of elementary arithmetic survives: Euclidean domains carry a division algorithm, principal ideal domains make every ideal a single multiple, and unique factorization domains factor every element into irreducibles in one way. We prove the chain ED implies PID implies UFD, the classes are separated by explicit counterexamples, and irreducible and prime coincide exactly in a UFD.\n",{"path":5286,"title":5287,"module":5283,"summary":5288},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields","Polynomial Rings over Fields","When the coefficients form a field, polynomial long division works exactly as it does over the rationals, and it works with a unique quotient and remainder. That single fact makes F[x] a Euclidean domain, hence a PID and a UFD: every ideal is the multiples of one polynomial, roots correspond to linear factors, and F[x]\u002F(f) is a field precisely when f is irreducible.\n",{"path":5290,"title":5291,"module":5283,"summary":5292},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization","Gauss's Lemma and Unique Factorization","A UFD is not a field, so its polynomial ring is not a PID — yet unique factorization survives the passage from R to R[x]. Gauss's lemma supplies the passage: a polynomial that factors over the fraction field already factors over R, once content is factored out. This gives the theorem that R[x] is a UFD whenever R is, so Z[x] and Q[x,y] factor uniquely even though neither is a PID.\n",{"path":5294,"title":5295,"module":5283,"summary":5296},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner","Irreducibility Criteria and Gröbner Bases","Deciding whether a given polynomial is irreducible, and computing in multivariate polynomial rings. In one variable: the rational root test, reduction modulo a prime, and Eisenstein's criterion. In several variables, where division fails, a monomial order gives leading terms, a Gröbner basis restores a well-defined remainder, and Buchberger's algorithm computes it.\n",{"path":5298,"title":5299,"module":5300,"summary":5301},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules","Introduction to Modules","Module Theory","A module is an abelian group on which a ring acts, generalizing both vector spaces (when the ring is a field) and abelian groups (when the ring is the integers). Submodules, homomorphisms, quotients, and the isomorphism theorems carry over from groups, and an F[x]-module is the same datum as a vector space with a chosen linear operator — the correspondence behind the canonical forms.\n",{"path":5303,"title":5304,"module":5300,"summary":5305},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums","Generation, Direct Sums, and Free Modules","A generating set spans a module by R-linear combinations; a direct sum decomposes it into independent pieces; a free module has a basis and the universal property that a homomorphism is determined by arbitrary values on that basis. Rank is well defined over a commutative ring, torsion blocks a basis, and every module is a quotient of a free one — a presentation by generators and relations.\n",{"path":5307,"title":5308,"module":5300,"summary":5309},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences","Tensor Products and Exact Sequences","The tensor product builds a module in which elements of two modules can be multiplied, characterized by a universal property turning bilinear maps into linear ones; extension of scalars is its guiding case. Exact sequences track how a module is assembled from a submodule and a quotient, when that assembly splits, and which modules — projective, injective, flat — make the Hom and tensor functors preserve exactness.\n",{"path":5311,"title":5312,"module":5300,"summary":5313},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps","Vector Spaces and Linear Maps","A vector space is a module over a field, and the field hypothesis removes every pathology a general module can have: every vector space is free, so it has a basis, a well-defined dimension, and a coordinate isomorphism with F^n. Linear maps become matrices, change of basis becomes similarity, every space pairs with a dual of the same dimension, and the determinant is the unique alternating multilinear normalized form.\n",{"path":5315,"title":5316,"module":5317,"summary":5318},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids","The Structure Theorem for Modules over a PID","Modules over PIDs and Canonical Forms","Every finitely generated module over a principal ideal domain splits as a free part plus a direct sum of cyclic torsion pieces, in two canonical ways: invariant factors, tied together by a divisibility chain, and elementary divisors, one prime power at a time. Existence follows from the stacked-basis theorem, both lists are unique, and the case $R = \\mathbb{Z}$ is the classification of finitely generated abelian groups.\n",{"path":5320,"title":5321,"module":5317,"summary":5322},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form","Rational Canonical Form","A linear operator turns its vector space into a module over the polynomial ring $F[x]$, with $x$ acting as the operator. The structure theorem's invariant factors then become polynomials, each cyclic summand becomes a companion matrix, and the block-diagonal assembly is the rational canonical form. It is unique, it is computed inside the base field, and two matrices are similar exactly when their rational canonical forms agree.\n",{"path":5324,"title":5325,"module":5317,"summary":5326},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form","Jordan Canonical Form","When the base field contains all the eigenvalues, the elementary divisors of an operator are powers of linear polynomials, and each cyclic summand becomes a Jordan block: an eigenvalue on the diagonal with ones just above it. Stacking the blocks gives the Jordan canonical form, unique up to reordering, as close to diagonal as the operator allows. Diagonalizability reads off the minimal polynomial, and the block sizes are counted by ranks of powers of the operator minus the eigenvalue.\n",{"path":5328,"title":5329,"module":5330,"summary":5331},"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements","Field Extensions and Algebraic Elements","Field Theory","A field extension makes a larger field K into a vector space over a smaller field F, and its degree [K:F] is that dimension. Adjoining a root of an irreducible polynomial builds a simple extension F(α) isomorphic to F[x]\u002F(m), whose degree is the degree of the minimal polynomial. The tower law makes these degrees multiply, which turns algebra over fields into bookkeeping with integers.\n",{"path":5333,"title":5334,"module":5330,"summary":5335},"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions","Straightedge-and-Compass Constructions","The lengths a straightedge and compass can build from a unit form a field closed under square roots, and every constructible number lies in a tower of quadratic extensions. So its degree over the rationals is a power of two. That single obstruction settles three problems the Greeks left open: doubling the cube, trisecting a general angle, and squaring the circle are all impossible.\n",{"path":5337,"title":5338,"module":5330,"summary":5339},"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure","Splitting Fields and Algebraic Closure","The splitting field of a polynomial is the smallest extension in which it factors into linear pieces, obtained by adjoining all its roots. Every polynomial has one, its degree is at most n factorial, and any two splitting fields are isomorphic. Pushing this to all polynomials at once gives the algebraic closure, a field in which every polynomial splits and which is unique up to isomorphism.\n",{"path":5341,"title":5342,"module":5330,"summary":5343},"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions","Separable Extensions and Cyclotomic Fields","A polynomial is separable when its roots are distinct, detected by whether it shares a factor with its formal derivative. Over perfect fields — characteristic zero and finite fields — every irreducible is separable, and the existence and uniqueness of the finite fields follow. Cyclotomic polynomials package the roots of unity by order, are irreducible over the rationals, and give the cyclotomic field its degree phi(n).\n",{"path":5345,"title":5346,"module":5347,"summary":5348},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence","The Galois Correspondence","Galois Theory","Galois theory attaches to a field extension its group of symmetries and shows that, for the right extensions, the subgroups of that group are in exact order-reversing correspondence with the intermediate fields. The automorphism group, Artin's theorem, the characterization of Galois extensions, and the Fundamental Theorem together turn questions about fields into questions about finite groups.\n",{"path":5350,"title":5351,"module":5347,"summary":5352},"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields","Finite Fields","Every finite field has prime-power order, is the splitting field of $x^{p^n} - x$, and is unique up to isomorphism. Its extension over the prime field is Galois with cyclic group generated by the Frobenius map $x \\mapsto x^p$, so the Galois correspondence reduces the subfield lattice to the divisor lattice of $n$. Möbius inversion counts the irreducible polynomials of each degree, and cyclic error-correcting codes are one application.\n",{"path":5354,"title":5355,"module":5347,"summary":5356},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions","Cyclotomic and Abelian Extensions","The Galois group of the $n$th cyclotomic field over $\\mathbb{Q}$ is the unit group $(\\mathbb{Z}\u002Fn\\mathbb{Z})^\\times$, which makes cyclotomic fields the worked catalogue of abelian extensions of $\\mathbb{Q}$. The isomorphism identifies subfields with subgroups, realizes every finite abelian group as a Galois group over $\\mathbb{Q}$, and leads to Kronecker–Weber. Composites of Galois extensions and the primitive element theorem supply the machinery.\n",{"path":5358,"title":5359,"module":5347,"summary":5360},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials","Galois Groups of Polynomials","Ordering the roots of a separable polynomial embeds its Galois group in the symmetric group $S_n$, and the group is transitive exactly when the polynomial is irreducible. The discriminant decides membership in $A_n$; for cubics and quartics the resolvent cubic pins the group down; and reduction modulo a prime produces elements of prescribed cycle type, the standard tool for computing Galois groups over $\\mathbb{Q}$.\n",{"path":5362,"title":5363,"module":5347,"summary":5364},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic","Solvability by Radicals and the Quintic","A polynomial is solvable by radicals exactly when its Galois group is solvable. Cyclic extensions are radical extensions once roots of unity are present, which turns a radical tower into a solvable subnormal series. Since $S_n$ is solvable only for $n \\le 4$, the general quintic has no radical formula, and an explicit quintic with Galois group $S_5$ has roots provably not expressible in radicals.\n",{"path":5366,"title":5367,"module":5368,"summary":5369},"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry","A Glimpse of Commutative Algebra and Algebraic Geometry","Capstone: Where Algebra Goes Next","Commutative algebra reads geometry off the ring of polynomial functions. The dictionary runs through Noetherian rings and the ascending chain condition, Hilbert's Basis Theorem, affine algebraic sets and the two maps connecting ideals to zero sets, radicals, the Zariski topology, and Hilbert's Nullstellensatz, which over an algebraically closed field makes radical ideals and algebraic sets the same object.\n",{"path":5371,"title":5372,"module":5368,"summary":5373},"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory","A Glimpse of Representation and Character Theory","Representation theory studies a group by the ways it can act linearly on a vector space. Representations are equivalent to modules over the group ring; Maschke's theorem gives complete reducibility, the Wedderburn consequences bound the irreducible degrees, and character theory reduces a representation to a trace invariant governed by the orthogonality relations and displayed in the character table of a small group.\n",{"path":5375,"title":5376,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":5378,"title":5379,"module":5380,"summary":5381},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford","Atomic Spectra and Rutherford's Nucleus","Early Atomic Models and the Old Quantum Theory","Atoms emit light only at sharp, reproducible wavelengths, and by 1890 those wavelengths were captured by the Rydberg-Ritz formula. Neither empirical regularity had a mechanical explanation. Rutherford's alpha-scattering experiment supplied the missing structure: the atom's positive charge and nearly all its mass sit in a tiny central nucleus, with the electrons far outside.\n",{"path":5383,"title":5384,"module":5380,"summary":5385},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen","The Bohr Model of Hydrogen","Bohr grafted three quantum postulates onto Rutherford's nuclear atom: certain orbits do not radiate, radiation accompanies a jump between them, and quantization must match classical physics for large orbits. Quantizing the angular momentum fixes the orbit radii and energies, reproduces the Rydberg-Ritz formula, and predicts the Rydberg constant from fundamental constants alone.\n",{"path":5387,"title":5388,"module":5380,"summary":5389},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz","X-Ray Spectra and the Franck-Hertz Experiment","Two 1913-14 experiments confirmed the Bohr-Rutherford atom independently of optical spectra. Moseley found that the square root of a characteristic X-ray frequency is linear in atomic number, fixing Z as nuclear charge and ordering the periodic table. Franck and Hertz measured discrete atomic energy levels directly by scattering electrons through a mercury vapor.\n",{"path":5391,"title":5392,"module":5380,"summary":5393},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory","The Bohr-Sommerfeld Old Quantum Theory","Bohr fixed the hydrogen levels with a single quantum number by quantizing angular momentum. Sommerfeld replaced that ad hoc rule with a general prescription: quantize the action of each separable coordinate. The rule produces elliptical orbits, a second (azimuthal) quantum number, space quantization, and — once the relativistic mass variation is included — a fine-structure splitting that matches experiment to order alpha squared.\n",{"path":5395,"title":5396,"module":5380,"summary":5397},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb","Limits of the Old Quantum Theory and the WKB Bridge","The old quantum theory works only where the classical motion is separable into independent periodic coordinates. It fails for helium, forbids the correct zero angular momentum of the hydrogen ground state, and misses the half-integer in the oscillator and in molecular spectra. The WKB quantization condition, derived from the Schrodinger equation, is the modern descendant of the Sommerfeld rule and repairs the half-integer through the Maslov correction.\n",{"path":5399,"title":5400,"module":5401,"summary":5402},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen","The Schrödinger Equation in Three Dimensions and Hydrogen","The Quantum Hydrogen Atom","Extending the Schrödinger equation to three dimensions and separating it in spherical coordinates produces three ordinary differential equations, one per coordinate. Their boundary conditions generate the quantum numbers n, ℓ, and mℓ, quantize the angular momentum to √(ℓ(ℓ+1))ℏ with projections mℏ, and fix the bound-state energies of hydrogen at −Z²(13.6 eV)\u002Fn².\n",{"path":5404,"title":5405,"module":5401,"summary":5406},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions","Hydrogen Wave Functions and Orbitals","The hydrogen wave functions factor into a radial part Rₙℓ(r) and an angular spherical harmonic Yℓm(θ,φ). Squaring gives the probability cloud; the radial distribution P(r) = r²|ψ|² peaks at the Bohr radius for the ground state and at the Bohr orbits for excited states. The angular part fixes the s, p, and d orbital shapes that govern chemical bonding.\n",{"path":5408,"title":5409,"module":5401,"summary":5410},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full","Solving the Radial Equation in Full","The hydrogen radial equation is solved from the differential equation up. The substitution u = rR turns it into a one-dimensional problem with a centrifugal barrier; matching the asymptotic behaviour at the origin and at infinity peels off the factors r^(ℓ+1) and e^(−r\u002Fna₀); a Frobenius series for the remainder must terminate, and that termination condition yields the quantization n ≥ ℓ+1 with E = −Z²Ry\u002Fn². The surviving polynomials are the associated Laguerre functions, whose degree n−ℓ−1 counts the radial nodes.\n",{"path":5412,"title":5413,"module":5401,"summary":5414},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz","Accidental Degeneracy and the Runge-Lenz Symmetry","Hydrogen energies depend only on n, so states of different ℓ at the same n are degenerate. This is not a coincidence but the mark of a hidden symmetry: the quantum Runge-Lenz vector is conserved for the 1\u002Fr potential alone, and together with angular momentum it generates the group SO(4). The Casimir invariant of that group reproduces E = −Z²Ry\u002Fn² and its representations count the n² states. Any departure from 1\u002Fr breaks the symmetry and lifts the ℓ-degeneracy.\n",{"path":5416,"title":5417,"module":5401,"summary":5418},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial","Expectation Values, the Virial Theorem, and Scaling","The radial matrix elements ⟨r^k⟩ of hydrogenic states are the raw material of every later correction. This lesson derives ⟨1\u002Fr⟩ from the virial theorem, builds the full family ⟨r⟩, ⟨r²⟩, ⟨1\u002Fr²⟩, ⟨1\u002Fr³⟩ from Kramers' recursion and the Feynman-Hellmann theorem, and reads off their scaling with n, ℓ, and Z. The virial balance ⟨T⟩ = −½⟨V⟩ = −E fixes the energy budget of every bound state.\n",{"path":5420,"title":5421,"module":5401,"summary":5422},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra","Quantum Defects and Alkali Spectra","An alkali atom is one valence electron outside a closed-shell core, and to a good approximation it is hydrogen with a modified quantum number. Core penetration makes low-ℓ states more bound than the Coulomb formula predicts, and the shortfall is captured by a single number per ℓ, the quantum defect δℓ. The spectrum then follows the Rydberg formula with n replaced by the effective n − δℓ, and the sodium D-line doublet is the worked case.\n",{"path":5424,"title":5425,"module":5401,"summary":5426},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms","Rydberg Atoms","A Rydberg atom is an atom excited to a very high principal quantum number, and every hydrogenic property becomes exaggerated by a power of n. Size grows as n², binding falls as n⁻², radiative lifetime lengthens as n³, and the static polarizability explodes as n⁷. The levels crowd toward the ionization limit, and the enormous dipole interaction between two Rydberg atoms produces the blockade that underlies neutral-atom quantum computing.\n",{"path":5428,"title":5429,"module":5430,"summary":5431},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction","The Relativistic Kinetic-Energy Correction","Fine Structure and the Dirac Atom","The Bohr energies treat the electron as slowly moving, but its speed is of order αc, so the kinetic energy needs a relativistic correction. Expanding √(p²c²+m²c⁴) to order (v\u002Fc)² produces the perturbation −p⁴\u002F8m³c², whose first-order shift on a hydrogenic state is evaluated with the trick p²=2m(E−V). The result depends on n and ℓ, is smaller than the gross structure by α²≈5×10⁻⁵, and is one of the three pieces that combine into the fine-structure formula.\n",{"path":5433,"title":5434,"module":5430,"summary":5435},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession","Spin-Orbit Coupling and Thomas Precession","In the electron's rest frame the nucleus orbits it, and the resulting current produces a magnetic field that couples to the electron's spin moment. The interaction is ξ(r) L·S, with ξ built from the Coulomb potential and the radial expectation ⟨1\u002Fr³⟩. A relativistic subtlety, Thomas precession, halves the naive coefficient because the electron's rest frame is accelerating. The result splits each ℓ≥1 level into a j=ℓ±½ doublet and makes (n, ℓ, j, mⱼ) the good quantum numbers.\n",{"path":5437,"title":5438,"module":5430,"summary":5439},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula","The Darwin Term and the Fine-Structure Formula","The third fine-structure correction, the Darwin term, is a contact interaction proportional to ∇²V that acts only on s-states, physically a smearing of the electron over a Compton wavelength. Adding the relativistic, spin-orbit, and Darwin shifts, the ℓ-dependence cancels and the total collapses to a formula in n and j alone. The n=2 shell splits into 2S₁\u002F₂, 2P₁\u002F₂, 2P₃\u002F₂, with the two j=½ levels exactly degenerate, a coincidence the Dirac theory explains.\n",{"path":5441,"title":5442,"module":5430,"summary":5443},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen","The Dirac Equation for Hydrogen","The fine-structure formula was assembled from three perturbations; the Dirac equation produces it in one stroke and exactly. A first-order relativistic wave equation forces a four-component spinor, from which spin s=½, the g-factor of 2, the spin-orbit term, and antiparticles all emerge automatically. Its exact Coulomb spectrum depends only on n and j, and expanding in Zα reproduces the perturbative result, including the 2S₁\u002F₂–2P₁\u002F₂ degeneracy that sets up the Lamb shift.\n",{"path":5445,"title":5446,"module":5447,"summary":5448},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed","The Lamb Shift and QED Radiative Corrections","QED Corrections and Hyperfine Structure","The Dirac equation makes the 2S₁\u002F₂ and 2P₁\u002F₂ levels of hydrogen exactly degenerate. Lamb and Retherford measured a splitting of about 1058 MHz that the Dirac theory cannot produce. The gap comes from the electron's coupling to the quantized electromagnetic field: self-energy, vacuum polarization, and the anomalous magnetic moment. Welton's vacuum-fluctuation estimate reproduces the size and shows why the effect lands almost entirely on s-states, and the same radiative corrections make hydrogen the most stringent test of QED.\n",{"path":5450,"title":5451,"module":5447,"summary":5452},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm","Hyperfine Structure and the 21 cm Line","The proton carries a magnetic moment, and it interacts with the magnetic field the electron produces at the nucleus. For s-states that interaction is the Fermi contact term, proportional to the electron density at the origin and to the dot product of the nuclear and electronic spins. Coupling I and J into F = I + J splits each level by a Landé interval rule; in hydrogen's ground state it produces the F = 0\u002FF = 1 doublet whose 1420 MHz, 21 cm transition maps neutral hydrogen across the galaxy.\n",{"path":5454,"title":5455,"module":5447,"summary":5456},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift","Nuclear Size, Moments, and Isotope Shifts","A real nucleus has a finite size, a mass that changes between isotopes, and, when its spin is at least one, an electric quadrupole moment. Each leaves a fingerprint in the atomic spectrum: the volume shift from s-electrons sampling the charge distribution, the mass and field isotope shifts that separate on a King plot, the quadrupole interaction that breaks the Landé interval rule, and the hyperfine anomaly from the magnetization distribution. Atomic spectroscopy reads nuclear properties out of these shifts.\n",{"path":5458,"title":5459,"module":5460,"summary":5461},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra","The Periodic Table and Atomic Spectra","Many-Electron Atoms","Identical electrons demand antisymmetric wave functions, which is the Pauli exclusion principle: no two electrons share all four quantum numbers. Filling shells in order of increasing energy — shifted by penetration and shielding — builds the periodic table and its recurring ionization pattern. Selection rules govern optical spectra, and an external field splits lines by the Zeeman effect.\n",{"path":5463,"title":5464,"module":5460,"summary":5465},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent","The Central-Field Approximation and the Self-Consistent Field","The N-electron Hamiltonian does not separate because every pair of electrons repels. The central-field approximation replaces that pairwise repulsion with an averaged spherical potential each electron feels, restoring hydrogen-like orbitals labelled by n and ℓ. The Thomas-Fermi statistical model fixes the shape of the screened charge from Fermi-gas thermodynamics; the Hartree self-consistent field determines it exactly by iterating orbitals against the potential they generate until the two agree.\n",{"path":5467,"title":5468,"module":5460,"summary":5469},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock","Exchange, Slater Determinants, and Hartree-Fock","A product wave function ignores that electrons are identical fermions. Enforcing antisymmetry writes the state as a Slater determinant, which vanishes whenever two electrons share a spin-orbital — the exclusion principle made algebraic. The energy of a determinant carries a new term with no classical analogue, the exchange integral, nonzero only for parallel spins; it lowers the energy of aligned electrons and carves a Fermi hole around each one. Adding the exchange operator to the mean field gives the Hartree-Fock equations, and what they still miss defines the correlation energy.\n",{"path":5471,"title":5472,"module":5460,"summary":5473},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom","Helium: the Prototype Two-Electron Atom","Helium is the smallest atom the Schrödinger equation cannot solve exactly, and the smallest that shows every many-electron effect. Ignoring the electron repulsion overbinds the ground state by 30 eV; first-order perturbation theory and a one-parameter variational calculation with an effective charge close most of the gap. The excited configurations split into para (singlet) and ortho (triplet) states separated by the exchange integral, with the triplet lower — and the absence of a 1s² triplet is the Pauli principle in its plainest form.\n",{"path":5475,"title":5476,"module":5460,"summary":5477},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols","LS and jj Coupling; Term Symbols","A configuration is not a single energy level. The residual electrostatic repulsion and the spin-orbit interaction split it, and which one dominates fixes the coupling scheme. In light atoms the electrostatic term wins: orbital and spin angular momenta couple separately into L and S, then into J, giving Russell- Saunders term symbols. In heavy atoms spin-orbit wins and each electron's j forms first. The Pauli principle prunes the allowed terms of equivalent electrons, the Landé interval rule spaces the fine-structure multiplet, and the scheme crosses over from LS to jj down a column.\n",{"path":5479,"title":5480,"module":5460,"summary":5481},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms","Hund's Rules and Ground-State Terms","A configuration allows several terms; Hund's three rules pick the ground one. Maximize the spin S first, then the orbital L, then set J to |L−S| for a less-than-half shell and L+S for a more-than-half shell. The first two rules come from exchange lowering the energy of apart-kept electrons; the third comes from the sign of the spin-orbit coupling, which flips as a shell passes half-filling and turns the multiplet from normal to inverted. Worked ground terms for carbon, nitrogen, oxygen, and iron show the rules in action.\n",{"path":5483,"title":5484,"module":5485,"summary":5486},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect","The Zeeman Effect","Atoms in External Fields","A magnetic field couples to the atom through its magnetic moment, splitting each level into equally spaced sublevels labelled by the projection of the total angular momentum. When spin is present the spacing is not the classical one: it carries the Landé g-factor, a projection of the spin and orbital moments onto the total angular momentum. We derive the weak-field Hamiltonian from minimal coupling, evaluate the shift with the projection theorem, and read off the polarization of the emitted components.\n",{"path":5488,"title":5489,"module":5485,"summary":5490},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate","The Paschen-Back and Intermediate-Field Regimes","When the magnetic interaction grows past the fine-structure coupling, spin and orbital angular momentum decouple and precess independently about the field. The anomalous Zeeman pattern reverts to a simple triplet, the Paschen-Back effect. Between the two limits neither coupling dominates and the level positions follow from diagonalizing the combined spin-orbit and Zeeman Hamiltonian. We build the two-by-two problem for a single valence electron, solve it in closed form, and show both limits emerge from one expression.\n",{"path":5492,"title":5493,"module":5485,"summary":5494},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability","The Stark Effect and Field Ionization","An electric field shifts atomic levels by coupling to the electron's position. Parity forbids a first-order shift for a non-degenerate state, so most atoms respond only at second order through their polarizability, a quadratic Stark shift. Hydrogen is the exception: its accidental degeneracy admits a permanent dipole and a linear shift, cleanest in parabolic coordinates. At large fields the Coulomb well develops a saddle, and Rydberg states field-ionize at a threshold that falls as the fourth power of the principal quantum number.\n",{"path":5496,"title":5497,"module":5498,"summary":5499},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule","Time-Dependent Perturbation Theory and the Golden Rule","Radiative Transitions and Spectral Lines","An atom in a weak oscillating field makes transitions between its stationary states. First-order time-dependent perturbation theory gives the transition amplitude as a Fourier component of the perturbation at the Bohr frequency, and the resulting probability is a sinc-squared resonance that sharpens as the field acts longer. For a two-level system the same coupling produces Rabi oscillations; for a transition into a continuum the long-time limit collapses the sinc-squared into a delta function and yields Fermi's golden rule, a constant transition rate set by the coupling strength and the density of final states.\n",{"path":5501,"title":5502,"module":5498,"summary":5503},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients","The Dipole Approximation and Einstein Coefficients","The coupling between an atom and light is the interaction of the electron with the electromagnetic field. Because an optical wavelength dwarfs the atom, the spatial variation of the field across the atom can be dropped, leaving the electric-dipole interaction and its matrix element. That matrix element defines the oscillator strength, which obeys the Thomas-Reiche-Kuhn sum rule. Einstein's three rate coefficients (absorption, stimulated emission, spontaneous emission) follow from detailed balance with thermal radiation, fixing the ratio of spontaneous to stimulated rates and its steep growth with frequency.\n",{"path":5505,"title":5506,"module":5498,"summary":5507},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions","Selection Rules and Forbidden Transitions","The dipole matrix element vanishes for most pairs of states, and the pattern of which survive is the set of selection rules. Parity forces the orbital angular momentum to change by one; the angular integral of three spherical harmonics restricts the magnetic quantum number to change by zero or one; the photon's spin restricts the total angular momentum. When the dipole element vanishes, higher multipoles (magnetic dipole and electric quadrupole) can still drive the transition at rates smaller by powers of the fine-structure constant, and states with no allowed decay become metastable.\n",{"path":5509,"title":5510,"module":5498,"summary":5511},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes","Lifetimes, Line Widths, and Line Shapes","A spectral line is never infinitely sharp. The finite lifetime of the excited state gives every line a natural Lorentzian width set by the total decay rate, the Fourier transform of an exponentially damped emission. Thermal motion adds a Gaussian Doppler width that usually dominates in a gas; collisions add a further Lorentzian pressure width; the observed profile is the Voigt convolution of the Gaussian and Lorentzian parts. Strong driving fields broaden the line further through saturation. Each mechanism has a distinct dependence on temperature, density, and intensity that lets it be identified and, where possible, removed.\n",{"path":5513,"title":5514,"module":5515,"summary":5516},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles","Population Inversion, Gain, and the Laser","Lasers and Spectroscopy","A laser is an optical amplifier placed inside a resonant cavity. Amplification requires that stimulated emission outrun absorption, which requires more atoms in the upper level than the lower one — a population inversion that the Einstein relations forbid in thermal equilibrium and that no two-level pump can produce. Three- and four-level schemes reach it by routing atoms through auxiliary states. The gain coefficient sets how strongly a weak beam grows, the cavity fixes the threshold and selects a comb of longitudinal modes, and gain saturation clamps the steady-state inversion at its threshold value.\n",{"path":5518,"title":5519,"module":5515,"summary":5520},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques","Spectroscopic Techniques and Frequency Combs","A tunable laser turns spectroscopy from photographing a spectrum into interrogating a single transition, but at room temperature the Doppler width buries the natural linewidth under a thousandfold-broader Gaussian. Saturated absorption and two-photon spectroscopy defeat the first-order Doppler shift by selecting the zero-velocity class or cancelling the shift between counter-propagating photons, recovering natural-width features. Laser-induced fluorescence pushes sensitivity to single atoms, and the optical frequency comb converts an optical frequency into a countable radio-frequency beat, giving absolute frequency measurement across the visible spectrum.\n",{"path":5522,"title":5523,"module":5515,"summary":5524},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd","Reading Real Spectra with the NIST Database","Every quantity computed in this course — energy levels, transition frequencies, oscillator strengths, lifetimes — is tabulated for real atoms in the NIST Atomic Spectra Database. This lesson reads that data as physics: how levels are labelled by term symbols and energies in wavenumbers, how a transition list encodes wavelength, Einstein coefficient, and line strength, how a Grotrian diagram is reconstructed from the tables, and how a measured spectrum is matched to catalog lines. The residual between computed and tabulated positions is the running score of atomic theory.\n",{"path":5526,"title":5527,"module":5528,"summary":5529},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler","Laser Cooling and Optical Molasses","Modern Atomic Physics","A near-resonant laser beam pushes an atom because every absorbed photon delivers one unit of momentum and the subsequent spontaneous emission averages to zero. Two counter-propagating red-detuned beams turn that push into friction: the Doppler shift brings a moving atom closer to resonance with the beam it moves against, so the net force opposes the velocity. Six beams give optical molasses in three dimensions. The random recoil of spontaneous emission heats against the friction, and the balance sets the Doppler cooling limit. Adding a magnetic-field gradient makes the force position-dependent as well, giving the magneto-optical trap.\n",{"path":5531,"title":5532,"module":5528,"summary":5533},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping","Sub-Doppler Cooling and Atom Traps","Optical molasses cools multilevel atoms below the Doppler limit. A polarization gradient plus optical pumping makes an atom repeatedly climb a light-shift hill and be pumped to the valley, losing kinetic energy each cycle — Sisyphus cooling. The floor is the recoil limit, one photon momentum of residual motion. Below it, cooling must avoid scattering photons: conservative magnetic and optical-dipole traps hold the atoms while forced evaporation removes the hot tail, driving the phase-space density up toward quantum degeneracy.\n",{"path":5535,"title":5536,"module":5528,"summary":5537},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation","Bose-Einstein Condensation of Atomic Gases","Below a critical temperature a gas of identical bosons places a macroscopic fraction of its atoms in the single lowest-energy state. The transition occurs when the thermal de Broglie wavelength grows to the interparticle spacing, so the phase- space density reaches order unity. The critical temperature follows from the Bose-Einstein distribution and the density of states, the condensate fraction grows as one minus (T\u002FTc) to the three-halves, and the condensate reveals itself in time-of-flight as a sharp bimodal peak in the momentum distribution. The 1995 rubidium and sodium experiments realized it in dilute trapped gases.\n",{"path":5539,"title":5540,"module":5528,"summary":5541},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision","Optical Atomic Clocks and Precision Measurement","An atomic clock counts the oscillations of a field locked to an atomic transition. The cesium microwave standard defines the second through the 9.19 GHz ground-state hyperfine transition, interrogated by Ramsey's separated-oscillatory-field method whose fringe width is set by the free-precession time. Optical clocks replace the microwave transition with an optical one five orders of magnitude higher in frequency, raising the quality factor and the fractional stability in proportion. Lattice and single-ion clocks reach fractional uncertainties near ten-to-the-minus- eighteen by trapping the atoms at a magic wavelength that cancels the light shift, and at that level they measure the gravitational redshift over centimetres of height.\n",{"path":5543,"title":5544,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5546,"title":5547,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5549,"title":5550,"module":5,"summary":5551},"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category","Categories, Objects, and Arrows","A category is objects, arrows between them, a rule for composing arrows, and an identity arrow on every object, subject to associativity and the unit laws. The axioms mention no elements: arrows need not be functions, and an object is known only through the arrows into and out of it. Isomorphism, commutative diagrams, duality, and the terminal object are the first consequences.\n",{"path":5553,"title":5554,"module":5,"summary":5555},"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories","A Zoo of Categories","The axioms admit two very different kinds of model: large categories of structured sets and their structure-preserving maps (Set, Mon, Grp, Top, Vect), and small categories that are themselves single algebraic objects — a monoid as a one-object category, a poset as a thin category. The awkward cases Rel and Pfn have sets as objects but relations and partial functions as arrows, and a typed programming language presents its types and programs as a category.\n",{"path":5557,"title":5558,"module":5,"summary":5559},"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms","Isomorphisms, Monos, and Epis","Injectivity and surjectivity mention elements, so a general category re-expresses them by cancellation: monomorphisms cancel on the left, epimorphisms on the right. Sections and retractions are the split versions with an explicit one-sided inverse. Mono plus epi does not force an isomorphism, and subobjects are equivalence classes of monos into a fixed object.\n",{"path":5561,"title":5562,"module":5,"summary":5563},"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors","Functors: Maps Between Categories","A functor sends objects to objects and arrows to arrows while preserving composition and identities. Covariant and contravariant functors, the standard stock (forgetful, free, hom, and powerset), and the classification by faithfulness, fullness, and essential surjectivity all follow. Functors compose, so categories and functors form a category themselves.\n",{"path":5565,"title":5566,"module":5,"summary":5567},"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations","Natural Transformations and Functor Categories","A natural transformation is a map between two parallel functors: one component arrow per object, subject to a commuting square for every arrow of the source. Naturality is verified for the determinant, the double dual, and list operations; functors and natural transformations form the functor category [C, D]; and vertical and horizontal composition satisfy the Godement interchange law.\n",{"path":5569,"title":5570,"module":5,"summary":5571},"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory","Size: Small, Large, Locally Small","The objects of Set do not form a set, and pretending otherwise reproduces the classical paradoxes. Classes make the small\u002Flarge distinction precise, with locally small and essentially small as the intermediate notions. Cantor's theorem shows Set and its algebraic relatives are large, and the function-based axiomatization of sets is the one category theory prefers to ZFC.\n",{"path":5573,"title":5574,"module":5575,"summary":5576},"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties","Universal Properties, Initial and Terminal Objects","Universal Properties and Basic Constructions","A universal property characterizes an object by a for-all\u002Fexists-unique condition on the arrows into or out of it, and any two objects satisfying the same property are isomorphic by a unique isomorphism. Initial and terminal objects are the simplest cases; the free vector space, the discrete topology, and the ring of integers show the pattern at work.\n",{"path":5578,"title":5579,"module":5575,"summary":5580},"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts","Products and Coproducts","The product of two objects is a wedge of projections through which every other wedge factors uniquely; the coproduct is the dual, built from injections. In Set these are the cartesian product and the disjoint union, in a poset the meet and join, and in abelian groups the two coincide. The mediating-arrow discipline established here is the template for all limits.\n",{"path":5582,"title":5583,"module":5575,"summary":5584},"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories","Opposite, Product, Slice, and Comma Categories","Categories are themselves mathematical structures, and the standard algebraic constructions apply: opposites, products, subcategories, slices, and the comma category that subsumes them. The opposite category yields the duality principle, halving the subject's proofs; slice and comma categories repackage every universal property as an initial or terminal object.\n",{"path":5586,"title":5587,"module":5588,"summary":5589},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors","Hom-Functors and Representables","Representables and the Yoneda Lemma","Fixing an object A of a locally small category produces a set-valued functor, the hom-functor A(A,-), that records every map out of A. A functor is representable when it is naturally isomorphic to such a hom-functor. We define the covariant and contravariant hom-functors, collect the standard representables (identity, forgetful, powerset), and read maps as generalized elements of varying shape.\n",{"path":5591,"title":5592,"module":5588,"summary":5593},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma","The Yoneda Lemma","The Yoneda lemma computes the natural transformations out of a representable presheaf: they form a set in natural bijection with X(A). The proof fixes a single degree of freedom, the image of the identity arrow, and shows naturality forces everything else. We prove the bijection, verify naturality in both variables, and read off that a natural transformation out of a representable is just one element.\n",{"path":5595,"title":5596,"module":5588,"summary":5597},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences","The Yoneda Embedding and Its Uses","Three corollaries turn the Yoneda lemma into working machinery. A representation of a presheaf is the same thing as a universal element; the Yoneda embedding of a category into its presheaf category is full and faithful; and two objects are isomorphic exactly when their representables are. Together they justify constructing arrows by constructing natural transformations between hom-functors, and they contain Cayley's theorem as the one-object case.\n",{"path":5599,"title":5600,"module":5601,"summary":5602},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits","Cones and Limits","Limits and Colimits","A diagram is a functor from a small shape category; a cone over it is an object with compatible legs to every node; and a limit is the terminal cone, the one every other cone factors through uniquely. Products and terminal objects reappear as limits over particular shapes, and the whole construction is unique up to a single isomorphism.\n",{"path":5604,"title":5605,"module":5601,"summary":5606},"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks","Equalizers and Pullbacks","The equalizer of a parallel pair is the universal arrow that makes the two composites agree; the pullback of a cospan is the universal commutative square. In Set they are solution sets and fibered products, every equalizer is monic, monics are stable under pullback, and products plus equalizers together generate all limits.\n",{"path":5608,"title":5609,"module":5601,"summary":5610},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits","Colimits: Coproducts, Coequalizers, Pushouts","Colimits are limits in the opposite category: cocones replace cones, and the universal cocone is initial rather than terminal. Coproducts glue objects side by side, coequalizers impose relations and produce quotients, pushouts glue along a shared part, and in Set every colimit is a quotient of a disjoint union. Directed colimits admit a clean elementwise description.\n",{"path":5612,"title":5613,"module":5601,"summary":5614},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits","Computing Limits in Concrete Categories","In Set the limit of any diagram is the set of threads: choice functions through the nodes that commute with every edge. In Pos, Mon, and Top the recipe is the same limit downstairs plus the unique structure that makes the projections structure-preserving — pointwise order, componentwise operations, the topology generated by the projections. The pattern is what \"the forgetful functor creates limits\" means concretely.\n",{"path":5616,"title":5617,"module":5601,"summary":5618},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors","Preservation, Reflection, and Creation of Limits","A functor preserves limits if it sends limit cones to limit cones, reflects them if it recognizes them, and creates them if limits downstairs lift uniquely upstairs. Representable functors preserve all limits, forgetful functors from algebra create them, and limits in functor categories are computed pointwise, one evaluation at a time.\n",{"path":5620,"title":5621,"module":5622,"summary":5623},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions","Adjoint Functors via Hom-Set Bijections","Adjunctions","An adjunction is a natural bijection between two hom-sets: maps out of $F(A)$ in one category correspond to maps into $G(B)$ in the other. We give the definition, spell out the naturality axioms that make the correspondence compatible with composition, and work the flagship examples — free vector spaces, free groups, discrete and indiscrete topologies, and currying.\n",{"path":5625,"title":5626,"module":5622,"summary":5627},"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits","Units, Counits, and the Triangle Identities","The whole hom-set bijection of an adjunction is generated by two natural transformations: the unit, obtained by transposing identity maps on one side, and the counit, by transposing them on the other. Two triangle identities are all they must satisfy, and any pair satisfying them determines a unique adjunction. The same correspondence specializes to order-preserving maps between posets and to free constructions.\n",{"path":5629,"title":5630,"module":5622,"summary":5631},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows","Adjunctions from Universal Arrows","The unit component at a single object is an initial object of a comma category, and this universal property alone rebuilds the whole adjunction. A functor has a left adjoint exactly when every object admits such a universal arrow, and the left adjoint is assembled from them one object at a time. We prove the equivalence of all three formulations of adjointness.\n",{"path":5633,"title":5634,"module":5622,"summary":5635},"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions","Free Constructions and Free–Forgetful Adjunctions","Free monoids, free groups, and free vector spaces are left adjoints to forgetful functors, and the universal mapping property is all one needs to prove it. Some forgetful functors also have right adjoints (co-free constructions like the indiscrete topology), producing three-functor chains. Contravariant adjunctions, symmetric in their two functors, close the lesson with the pattern behind duality and representation theorems.\n",{"path":5637,"title":5638,"module":5639,"summary":5640},"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints","Limits as Adjoints and as Representables","Adjoints, Representables, and Limits Together","A cone on a diagram is a natural transformation from a constant diagram, so a limit is a representation of the cone functor and, equivalently, a value of the right adjoint to the diagonal functor. We prove both rephrasings, derive uniqueness and functoriality of limits from them, and record the dual statement that a colimit is the left adjoint to the diagonal.\n",{"path":5642,"title":5643,"module":5639,"summary":5644},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits","Limits and Colimits of Presheaves","Representables preserve limits, and limits in a functor category are computed one object at a time, so a presheaf category is complete and cocomplete with all its structure inherited pointwise from Set. The Yoneda embedding then preserves limits but not colimits, and the density theorem repairs the colimit side: every presheaf is a canonical colimit of representables.\n",{"path":5646,"title":5647,"module":5639,"summary":5648},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits","Right Adjoints Preserve Limits (RAPL)","A functor with a left adjoint preserves every limit that exists, and dually a functor with a right adjoint preserves colimits. The proof is a four-line chain of natural isomorphisms through the adjunction and the continuity of representables. The theorem yields product-and-exponential arithmetic in Set, another proof that limits commute with limits, and a standard test for proving that a functor has no adjoint.\n",{"path":5650,"title":5651,"module":5639,"summary":5652},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem","The Adjoint Functor Theorem","RAPL makes limit preservation necessary for having a left adjoint; the adjoint functor theorems identify when it is sufficient. For ordered sets no extra hypothesis is needed. In general the candidate adjoint is a limit over a comma category that may be large, and the general adjoint functor theorem tames it with a weakly initial set. We prove GAFT in full and apply it to free groups and, through the special adjoint functor theorem, the Stone–Čech compactification.\n",{"path":5654,"title":5655,"module":5656,"summary":5657},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads","Monads from Adjunctions","Monads and Algebras","A monad on a category is an endofunctor equipped with a unit and a multiplication satisfying associativity and unit laws — the data of a monoid, written internally to the category of endofunctors. Every adjunction induces one, and the list, exception, and state constructions that model computational effects are all monads on Set.\n",{"path":5659,"title":5660,"module":5656,"summary":5661},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore","Algebras for a Monad","An algebra for a monad is an object with a structure map that interacts correctly with the unit and multiplication. The algebras form the Eilenberg–Moore category, whose free–forgetful adjunction induces the monad back; a comparison functor relates any other inducing adjunction to it, and for the list monad the algebras are exactly monoids.\n",{"path":5663,"title":5664,"module":5656,"summary":5665},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming","The Kleisli Category and Monads in Programming","The Kleisli category of a monad has the same objects as the base but takes arrows A to TB, composed by mapping and flattening. These arrows are effectful programs, Kleisli composition is the bind of functional programming, and the Kleisli adjunction is the initial resolution of the monad, with Eilenberg–Moore at the terminal end.\n",{"path":5667,"title":5668,"module":5656,"summary":5669},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors","Algebras for an Endofunctor and Recursion","Dropping the monad laws leaves algebras for a bare endofunctor, whose initial objects are the least fixed points of the functor by Lambek's lemma. The natural numbers, lists, and trees are initial algebras; the unique map out of an initial algebra is the fold of functional programming; and the Smyth–Plotkin fixed-point technique builds Scott domains the same way.\n",{"path":5671,"title":5672,"module":5673,"summary":5674},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories","Cartesian Closed Categories","Cartesian Closed Categories and Typed Lambda Calculus","A cartesian closed category has a terminal object, binary products, and for every pair of objects an exponential object that internalizes the hom-set as an object of the category. The defining data is an evaluation arrow and a currying operation, packaged by the adjunction between product-with-A and exponential-by-A. Set, Boolean and Heyting algebras, functor categories, and Cat are all cartesian closed.\n",{"path":5676,"title":5677,"module":5673,"summary":5678},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence","Typed Lambda Calculus and CCCs","The typed lambda calculus and the cartesian closed category are two presentations of the same theory. Types become objects, terms with one free variable become arrows, product types become products, and function types become exponentials, with abstraction matching currying and application matching evaluation. Building the category of a lambda theory and the internal language of a category are mutually inverse up to equivalence.\n",{"path":5680,"title":5681,"module":5673,"summary":5682},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion","Fixed Points in Cartesian Closed Categories","The untyped lambda calculus has a fixed-point combinator; the typed calculus cannot, and Lawvere's fixed-point theorem explains why: any point-surjection onto an exponential forces every endomap to have a fixed point, which is the abstract form of Cantor's diagonal argument. Recursion is recovered instead by restricting to omega-complete partially ordered objects, where every continuous endomap has a least fixed point built by iterating from bottom. This gives While loops a semantics.\n",{"path":5684,"title":5685,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5687,"title":4486,"module":5688,"summary":5689},"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning","Mathematical Background","Every quantity a network touches is a tensor, and every layer is a matrix acting on one. This lesson compiles the linear algebra deep learning actually uses: products and norms, the system $Ax=b$ and when it is solvable, the two decompositions (eigen and SVD) that diagonalize a transformation, and the pseudoinverse that solves what cannot be solved exactly. It then derives PCA as the worked example that ties it all together.\n",{"path":5691,"title":5692,"module":5688,"summary":5693},"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory","Probability & Information Theory","This lesson assembles the probabilistic vocabulary a network is trained in (random variables, densities, the chain rule, expectation and covariance, the handful of distributions that recur everywhere) and then the information theory that turns a probabilistic model into a loss: self-information, entropy, and the KL divergence whose asymmetry is the cross-entropy objective itself.\n",{"path":5695,"title":5696,"module":5688,"summary":5697},"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation","Numerical Computation","Machine learning runs on finite-precision arithmetic, where every number is approximated and every operation rounds. This lesson sets the numerical ground rules: overflow and underflow and the standard stabilizations, the condition number that measures how much a problem amplifies error, and the gradient-based optimization (first and second order, constrained and unconstrained) that every training loop runs.\n",{"path":5699,"title":3845,"module":5688,"summary":5700},"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus","This lesson assembles the differential calculus used in training networks: the gradient and directional derivative, the Jacobian and Hessian, and the chain rule in scalar, vector, and matrix form. From the chain rule it derives back-propagation as a single sweep over the computational graph, tabulates the matrix-calculus identities that recur in layer gradients, reads optimization off a second-order Taylor expansion, and ends with why reverse-mode automatic differentiation is the algorithm every framework runs.\n",{"path":5702,"title":5703,"module":5,"summary":5704},"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning","What Is Deep Learning?","Deep learning is representation learning by composition: stack simple differentiable layers, define a loss, and let gradient descent discover the features a human would otherwise have to engineer by hand. We set up the whole vocabulary (model, loss, optimizer, data), the training loop that ties them together, and the three reasons the approach became practical.\n",{"path":5706,"title":5707,"module":5,"summary":5708},"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher","A Machine-Learning Refresher","The statistical framework the networks live in: data drawn from an unknown distribution, a loss to minimize, and the central question of generalization: will it work on data we have not seen? We set up empirical risk, capacity, the bias–variance tradeoff, and maximum likelihood.\n",{"path":5710,"title":5711,"module":5,"summary":5712},"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron","Linear Models & the Perceptron","The simplest learners (linear regression, logistic regression, the perceptron) already contain the whole template: a weighted sum, a loss, a gradient step. They also fail on the XOR problem, which no linear model can solve — the limitation that motivates deep learning.\n",{"path":5714,"title":5715,"module":5716,"summary":5717},"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron","The Multilayer Perceptron","Neural Networks","Stacking linear layers with a nonlinearity between them removes the limitation that stopped the perceptron. We build the multilayer perceptron in explicit matrix form (the forward pass, its dimensions, a worked XOR network with concrete weights) and prove why the nonlinearity is essential: without it the deepest stack collapses to a single hyperplane.\n",{"path":5719,"title":5720,"module":5716,"summary":5721},"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions","Activation Functions","The activation is the only nonlinear part of a layer, and the reason depth adds expressive power. We catalog the standard hidden units (sigmoid, tanh, ReLU and its descendants, plus GELU, softplus, swish and maxout), derive each unit's derivative in full, make the vanishing-gradient problem quantitative with the chain-rule product, work numeric examples, and explain why the saturating units gave way to ReLU and why ReLU's own dead-unit failure gave way to Leaky\u002FPReLU\u002FELU\u002FGELU.\n",{"path":5723,"title":5724,"module":5716,"summary":5725},"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation","Universal Approximation","One hidden layer with a non-polynomial activation can approximate any continuous function on a compact set to arbitrary accuracy: the universal approximation theorem. We prove it constructively (two sigmoids make a bump; sums of bumps make any curve), then show the limitation: existence is not efficiency. Depth-separation results exhibit functions a deep net represents with $O(n)$ units that a shallow net needs $\\exp(n)$ units to match.\n",{"path":5727,"title":5728,"module":5716,"summary":5729},"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation","Backpropagation","Backpropagation is the chain rule run backward over a computational graph. We formalize the graph, derive the four backprop equations for an MLP, present the forward and backward passes as algorithms, and work a tiny two-layer net by hand with explicit numbers. The result: one scalar loss, reverse-mode autodiff, and a gradient for every parameter at twice the cost of a forward pass.\n",{"path":5731,"title":5732,"module":5716,"summary":5733},"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units","Loss Functions & Output Units","The last layer is where a network's hidden representation meets the task. Choosing an output unit and a loss is not two independent choices; maximum likelihood fixes the pair. We derive the standard couplings (linear\u002FMSE, sigmoid\u002FBCE, softmax\u002Fcross-entropy), show why softmax and cross-entropy were built to cancel into the residual $\\hat y - y$, and prove why squared error is the wrong loss for a saturating classifier.\n",{"path":5735,"title":5736,"module":5737,"summary":5738},"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd","Gradient Descent & SGD","Optimization","Training is descent on the empirical risk: step the parameters against the gradient. We derive the minibatch gradient as an unbiased estimator whose variance falls as $1\u002FB$, derive the learning-rate ceiling from the smoothness-stability bound $\\eta \u003C 2\u002FL$, and lay out the schedules (step, exponential, cosine, warmup) that anneal it over training.\n",{"path":5740,"title":5741,"module":5737,"summary":5742},"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods","Momentum & Adaptive Methods","Plain gradient descent zig-zags across ravines and moves slowly along flat valleys, because one global learning rate cannot suit a surface with wildly different curvature in different directions. Two fixes address the two problems: momentum accumulates a velocity that damps the oscillation and accelerates the drift, and adaptive methods give every parameter its own learning rate scaled by the history of its gradients. Adam fuses both, and is the default optimizer of modern deep learning.\n",{"path":5744,"title":5745,"module":5737,"summary":5746},"\u002Fdeep-learning\u002Foptimization\u002Finitialization","Weight Initialization","The initial weights determine whether training can succeed before the first gradient step. Initialize every weight equal and all hidden units compute the same function forever; initialize too small or too large and the signal vanishes or explodes as it crosses depth. A single variance condition, $n_{\\text{in}}\\mathrm{Var}(W)=1$, fixes both, and reading it off the forward and backward passes yields Xavier and He initialization directly.\n",{"path":5748,"title":5749,"module":5737,"summary":5750},"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape","The Optimization Landscape","The loss of a deep network is a non-convex surface in millions of dimensions, so local search carries no global guarantee, yet it works. We classify critical points by the eigenvalues of the Hessian, show that in high dimension nearly all of them are saddle points rather than bad local minima, and read off the practical terrain — plateaus, cliffs, ill-conditioning, and the sharp-versus-flat distinction that ties the geometry of a minimum to how well it generalizes.\n",{"path":5752,"title":5753,"module":5737,"summary":5754},"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods","Second-Order & Approximate Methods","Newton's method reads the curvature of the loss off its Hessian and jumps to the minimum of the local quadratic in a single step, rescaling away the ill-conditioning that slows first-order descent. We derive it, then explain the three obstacles that keep it out of deep learning: a $d \\times d$ Hessian for $d$ in the billions, an attraction to saddle points, and minibatch noise. The alternative is approximation (conjugate gradients, BFGS and L-BFGS, the natural gradient and Hessian-free methods), each buying some of Newton's curvature information without ever forming or inverting $H$.\n",{"path":5756,"title":5757,"module":5758,"summary":5759},"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview","Regularization Overview","Regularization","Regularization is any modification to a learning algorithm meant to lower test error at the possible expense of training error. We derive the bias–variance decomposition that explains why it helps, set up the two parameter-norm penalties, $L^2$ weight decay and $L^1$, derive their update rules and eigenbasis shrinkage, show geometrically why $L^1$ alone produces sparse weights (soft-thresholding), distinguish weight decay from loss-added $L^2$ under AdamW, and read both penalties through the two lenses that recur across the chapter: a norm-ball constraint via KKT, and a prior via MAP estimation.\n",{"path":5761,"title":5762,"module":5758,"summary":5763},"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation","Dropout & Data Augmentation","Two of the most effective regularizers add no penalty term at all; they perturb the computation instead. Dropout multiplies hidden units by a random Bernoulli mask, training an exponential ensemble of thinned subnetworks that share weights; inverted scaling collapses that ensemble into one cheap forward pass at test time. Data augmentation enlarges the training set with label-preserving transforms, injecting the invariances the task demands, and noise injection (input, weight, label smoothing, Mixup) generalizes the same idea into a continuous family.\n",{"path":5765,"title":5766,"module":5758,"summary":5767},"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing","Early Stopping & Parameter Sharing","Two cheap regularizers that cost no extra term in the loss. Early stopping treats training time itself as a hyperparameter (watch the validation curve, halt at its minimum, keep the best checkpoint), and for a quadratic objective it is provably equivalent to $L^2$ weight decay. Parameter sharing goes the other way: it constrains many weights to be _equal_, the prior behind every convolution and every recurrent step, and the reason a CNN has orders of magnitude fewer parameters than the dense net it replaces.\n",{"path":5769,"title":5770,"module":5758,"summary":5771},"\u002Fdeep-learning\u002Fregularization\u002Fnormalization","Normalization","Normalization layers standardize activations to zero mean and unit variance inside the network, then hand the model a learnable scale and shift to undo the constraint when it pays to. Batch normalization does this across the batch and must keep separate train-time and test-time statistics; layer, instance, and group norm change only the axes they average over. The result is faster, better-conditioned optimization and a free dose of regularizing batch noise.\n",{"path":5773,"title":5774,"module":5775,"summary":5776},"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks","Convolutional Networks","Architectures","A convolutional network replaces the dense layer's all-to-all weight matrix with a small kernel slid across the input. Three structural commitments (sparse connectivity, parameter sharing, and translation equivariance) collapse the parameter count by orders of magnitude and bake the right prior for images directly into the architecture. We derive the convolution arithmetic, the output geometry, pooling, and the receptive field, then assemble the canonical stack.\n",{"path":5778,"title":5779,"module":5775,"summary":5780},"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures","CNN Architectures","Six landmark networks, each contributing exactly one idea: LeNet's conv-pool stack, AlexNet's ReLU-and-dropout scale, VGG's $3\\times3$ uniformity, Inception's multi-scale module, ResNet's residual skip, and DenseNet's dense connectivity. The common thread is the degradation problem (why plain deeper nets train worse, not just overfit) and the residual block that solved it by keeping a $+1$ path open for the gradient.\n",{"path":5782,"title":5783,"module":5775,"summary":5784},"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks","Recurrent Networks","A recurrent network folds a sequence into a fixed-size hidden state, reusing one set of weights at every time step, the architectural prior that the same rule applies wherever it lands in time. Unrolling the recurrence exposes a deep feed-forward graph; backpropagation through it sums gradient contributions across all steps and chains a product of Jacobians, and that product is why long-range gradients vanish or explode. That failure motivates gated architectures.\n",{"path":5786,"title":5787,"module":5775,"summary":5788},"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru","LSTM & GRU","A plain recurrent network propagates its hidden state through a repeated weight-matrix multiply, and the Jacobian product that results vanishes or explodes long before a useful gradient can reach the early steps. Gated RNNs fix this with an additive memory path: a cell state that is carried forward almost unchanged, past which the gradient flows along a near-identity highway. We derive that highway, give the full LSTM and GRU equations, and compare the two.\n",{"path":5790,"title":5791,"module":5775,"summary":5792},"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers","Attention & Transformers","Attention replaces fixed wiring with content-based routing: every position reads from every other through a soft, learned dot-product lookup. We derive scaled dot-product attention and its $\\sqrt{d_k}$ correction, build it into multi-head self-attention, inject order with positional encodings, and stack the whole thing into the Transformer block that displaced recurrence and convolution alike.\n",{"path":5794,"title":5795,"module":5775,"summary":5796},"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture","The Transformer Architecture","The Transformer is the architecture built around the attention mechanism. This first part assembles the full encoder–decoder of \"Attention Is All You Need\" — embeddings and positional encoding, stacked self-attention and feed-forward sublayers wrapped in residual connections and LayerNorm, masked decoding and cross-attention — works through causal masking and the three modern families (encoder-only, decoder-only, encoder–decoder), and accounts for where the parameters and the $O(n^2)$ compute actually go.\n",{"path":5798,"title":5799,"module":5775,"summary":5800},"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice","Transformers in Practice","The Transformer makes no assumption about what a token represents. This part follows the architecture out of language: image patches feed a plain encoder (the Vision Transformer), the decoder-only half scales into the GPT line of large language models, and one substrate covers translation, retrieval, and multimodal grounding. We work the ViT patch arithmetic and a GPT parameter count by hand, then close on the empirical scaling laws — power-law loss, the Chinchilla compute-optimal balance, and emergent behavior — that made scale the dominant lever.\n",{"path":5802,"title":5803,"module":5775,"summary":5804},"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks","Graph Neural Networks","A graph neural network learns on data with no grid and no canonical ordering: atoms in a molecule, users in a social network, road segments in a map. The unifying idea is message passing — each node repeatedly aggregates its neighbors' states and updates its own — built to respect the one symmetry graphs demand, permutation equivariance. We derive the message-passing framework, specialize it into GCN, GraphSAGE, GAT, and GIN, read off graph-level outputs, and bound what message passing can and cannot tell apart.\n",{"path":5806,"title":5807,"module":5775,"summary":5808},"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models","State-Space Models and Mamba","A state-space model carries a continuous linear hidden state through a sequence, and that linearity buys two equivalent algorithms from one set of weights: a recurrence that runs in linear time with constant memory, and a global convolution that trains in parallel. Long-range memory comes from how the transition matrix is initialized (HiPPO) and parameterized (S4's diagonal-plus-low-rank form). Mamba breaks the convolution on purpose, making the parameters input-dependent so the model can select what to remember, recovered at speed by a hardware-aware parallel scan.\n",{"path":5810,"title":5811,"module":5812,"summary":5813},"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory","Generalization Theory","Theory & Frontiers","Classical learning theory bounds the gap between training and test error by a model's capacity (VC dimension, Rademacher complexity), and predicts that a model with more parameters than data should overfit catastrophically. Modern networks do the opposite: they interpolate, even fit pure noise, and still generalize. We derive the classical bounds, work the bias-variance decomposition, show why the bounds go vacuous, and survey what replaced them: double descent, the interpolation threshold, margin and norm-based bounds, and the implicit bias of the optimizer itself.\n",{"path":5815,"title":5816,"module":5812,"summary":5817},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness","Adversarial Robustness","A trained network can be fooled by a perturbation too small for a human to see: add a carefully aimed vector of magnitude $\\epsilon$ to a correctly classified image and the prediction flips. We derive the fast gradient sign method as the first-order-optimal step inside an $L_\\infty$ ball, explain the linearity hypothesis that makes high-dimensional models so easy to push around, build up to projected gradient descent, and frame adversarial training as a min-max robust-optimization problem with its own accuracy cost. Defenses beyond training continue in the next lesson.\n",{"path":5819,"title":5820,"module":5812,"summary":5821},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses","Adversarial Defenses","Defending a network against an adversary is far harder than attacking one. This lesson covers the defense side: certified guarantees via randomized smoothing, the transferability that makes black-box attacks possible, and the recurring failure of gradient masking, where a defense hides the attacker's gradient instead of moving the decision boundary. It ends with the adaptive-attack discipline (BPDA, EOT, transfer) that every robustness claim must be tested against.\n",{"path":5823,"title":5824,"module":5812,"summary":5825},"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods","Bayesian & Ensemble Methods","A trained network returns a single point prediction and, with the softmax, a confidence, but that confidence is usually miscalibrated, collapsing to near- certainty even on inputs the model has never seen. This lesson covers uncertainty estimation for networks: the two kinds of uncertainty, the Bayesian posterior over weights and its tractable stand-ins (MC dropout, deep ensembles), and how to check whether a model's reported confidences match observed frequencies.\n",{"path":5827,"title":5828,"module":5812,"summary":5829},"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models","Deep Equilibrium Models","A deep network need not be a fixed stack of layers; it can be a single weight-tied layer iterated to convergence, its output defined implicitly as the fixed point $z^\\star = f_\\theta(z^\\star, x)$. The forward pass becomes root-finding and the backward pass becomes implicit differentiation, so training costs O(1) memory regardless of effective depth. We derive both passes from the implicit function theorem and close the course on defining a layer by a fixed-point condition rather than an explicit stack.\n",{"path":5831,"title":5832,"module":5833,"summary":5834},"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models","Linear Factor Models","Generative Models","The simplest generative models share one template: a latent variable drawn from a fixed prior, run through a linear decoder, plus noise. Probabilistic PCA, factor analysis, independent component analysis, and sparse coding are all this template with a different prior on the latents and a different noise model. We derive each marginal, see why ICA needs non-Gaussianity to identify its sources, and show how sparse coding learns Gabor-like dictionary atoms.\n",{"path":5836,"title":5837,"module":5833,"summary":5838},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders","Autoencoders","An autoencoder is a network trained to copy its input to its output through a narrow channel; the useful product is the bottleneck representation $h$, not the reconstruction. We derive the undercomplete autoencoder and prove its linear case recovers PCA, then trade the bottleneck for explicit regularization (sparse, denoising, contractive) and show how a denoising autoencoder learns the low-dimensional manifold the data lives on.\n",{"path":5840,"title":5841,"module":5833,"summary":5842},"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders","Variational Autoencoders","An autoencoder compresses, but its latent space has gaps: sample a point between two encodings and the decoder produces noise. The variational autoencoder fixes this by training a probabilistic encoder against a prior, so the latent space becomes a smooth, samplable density. We derive the evidence lower bound it maximizes, the reparameterization trick that lets gradients flow through a random sample, and the closed-form Gaussian regularizer that pulls the posterior toward the prior.\n",{"path":5844,"title":5845,"module":5833,"summary":5846},"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks","Generative Adversarial Networks","A generative adversarial network trains two networks against each other: a generator that turns noise into samples, and a discriminator that tries to tell real data from forgeries. The game has a clean theory: the optimal discriminator is a likelihood ratio, and at equilibrium the generator minimizes the Jensen–Shannon divergence to the data, with a global optimum exactly when its distribution matches the data. We derive that result, fix the saturating loss that breaks training, and catalogue the failure modes (mode collapse, instability, vanishing gradients) and the architectural fixes.\n",{"path":5848,"title":5849,"module":5833,"summary":5850},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows","Autoregressive Models & Normalizing Flows","Two families that provide exact likelihoods, each at a cost. Autoregressive models factor the joint by the probability chain rule and learn each conditional with a masked network: exact $\\log p(x)$, but sampling proceeds one coordinate at a time. Normalizing flows push a simple base density through an invertible map and read $\\log p(x)$ off the change-of-variables formula, trading architectural freedom for a cheap Jacobian determinant via triangular coupling layers.\n",{"path":5852,"title":5853,"module":5833,"summary":5854},"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines","Energy-Based & Boltzmann Machines","Energy-based models replace an explicit density with a scalar energy and a Boltzmann normalization, $p(x) = e^{-E(x)}\u002FZ$: simple to specify, but with an intractable partition function $Z$. The Boltzmann machine and its restricted variant make the energy bilinear so the hidden units factorize, and contrastive divergence sidesteps $Z$ by replacing the model expectation with a few Gibbs steps started at the data. We close on the undirected deep models (DBNs and DBMs) and how they differ from the directed VAE.\n",{"path":5856,"title":5857,"module":5833,"summary":5858},"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models","Diffusion and Score-Based Models","Corrupt a data point with Gaussian noise in small steps until only noise remains, then train a network to undo one step at a time. We derive the forward process and its closed-form marginal, reduce the variational bound to the single noise-prediction objective that makes diffusion trainable, and show the score-matching view that unifies it with Langevin sampling and the continuous SDE. The lesson closes with DDIM fast sampling, classifier-free guidance, and the latent diffusion that powers modern text-to-image systems.\n",{"path":5860,"title":5861,"module":5862,"summary":5863},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models","Structured Probabilistic Models","Probabilistic Methods","A joint distribution over $n$ variables is a table with exponentially many entries; nobody can store it, fit it, or sample from it directly. Structure fixes this: a graph whose missing edges encode conditional independencies that factor the joint into small local pieces. We build the two dialects, directed (Bayesian networks) and undirected (Markov random fields), read independence off the graph, and connect the machinery to the latent-variable and energy-based models that power deep generative learning.\n",{"path":5865,"title":5866,"module":5862,"summary":5867},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc","Monte Carlo & MCMC","Most quantities of interest in a probabilistic model are integrals nobody can compute in closed form: expectations, marginals, partition functions. Monte Carlo replaces the integral with an average over samples; importance sampling reweights samples from a tractable proposal; and when even sampling the target is hard, Markov-chain Monte Carlo builds a chain whose stationary distribution _is_ the target. We derive Metropolis–Hastings and Gibbs, analyze mixing, and close on the partition-function gradient that powers energy-based learning.\n",{"path":5869,"title":5870,"module":5862,"summary":5871},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference","Approximate Inference","In a latent-variable model the quantity we need, the posterior $p(h\\mid v)$ over hidden causes, is almost never computable, because its normalizer is an intractable sum over configurations. Approximate inference reframes the problem as optimization: maximize the evidence lower bound, a tractable functional whose gap to the true log-evidence equals a KL divergence. From that single bound fall expectation–maximization, mean-field variational inference, MAP, and the learned encoders behind variational autoencoders.\n",{"path":5873,"title":5874,"module":5875,"summary":5876},"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology","Practical Methodology","Practical Deep Learning","Knowing the algorithms is half the job; the other half is a disciplined loop. Fix a goal and a metric, stand up an end-to-end baseline, then read the train\u002Fvalidation gap to decide whether the next move is more data or a bigger model. We detail that loop: choosing metrics under class imbalance, default baselines by data type, extrapolating the data a target needs, and guarding the data pipeline against the leaks and label bugs that corrupt every gradient. Hyperparameter tuning, debugging, and deployment continue in the sequel.\n",{"path":5878,"title":5879,"module":5875,"summary":5880},"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging","Hyperparameters & Debugging","The tuning half of the methodology loop. The learning rate is the one hyperparameter that dominates, so we tune it first, on a log scale, coarse to fine, and prefer random search to grid when only a few dials matter. Then an ordered debugging playbook — overfit one batch, check the loss at initialization against ln C, watch the gradient norm, gradient-check against centered finite differences — and, after launch, monitoring for train-test skew and distribution drift with confidence-based abstention.\n",{"path":5882,"title":5883,"module":5875,"summary":5884},"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning","Representation Learning","A good representation makes a hard task easy by changing coordinates: it disentangles the factors of variation, spends its bits as a distributed code, and respects the low-dimensional manifold the data lives on. We make those three properties precise, recover the manifold hypothesis, and close on the first method that turned them into training practice — greedy layer-wise unsupervised pretraining — before the sequel picks up how the field learned to reuse those features.\n",{"path":5886,"title":5887,"module":5875,"summary":5888},"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning","Transfer Learning","A representation learned once can be reused everywhere. We cover the main mechanisms of reuse: feature extraction versus fine-tuning, the generic-to-specific gradient of features that sets the freeze boundary, the learning-rate discipline that keeps borrowed weights from being erased, domain adaptation when only the input distribution shifts, and the modern arc from supervised transfer to self-supervised foundation models.\n",{"path":5890,"title":5891,"module":5875,"summary":5892},"\u002Fdeep-learning\u002Fpractical\u002Fapplications","Applications","We survey large-scale training (the hardware, the two axes of parallelism, mixed precision, and the compression tricks that shrink a model after it is trained), then specialize the same gradient loop to vision, language, speech, and recommendation. Each domain is a different prior bolted onto one optimizer: convolutional invariance for pixels, distributed word vectors for tokens, sequence transduction for audio, low-rank factorization for the user–item matrix.\n",{"path":5894,"title":5895,"module":5875,"summary":5896},"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation","Model Compression and Distillation","A trained network and a deployable one are rarely the same object. This lesson is the toolkit for closing that gap: knowledge distillation transfers a large teacher's soft, information-rich logits into a small student; pruning deletes the weights that contribute least; quantization swaps 32-bit floats for 8- or 4-bit integers; and low-rank factorization replaces a fat matrix with two thin ones. We derive each method, show what it costs in accuracy, and lay out which combinations win on which hardware.\n",{"path":5898,"title":5899,"module":5875,"summary":5900},"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot","Meta-Learning and Few-Shot Learning","A deep network trained on one example per class overfits. Meta-learning targets this few-shot regime by training across a distribution of tasks so that a new task is learnable from a handful of examples. We formalize the $N$-way $K$-shot episode, then derive the two dominant families: metric methods that learn an embedding where distance classifies (Prototypical Networks), and optimization methods that learn an initialization a few gradient steps can adapt (MAML). We close on the link to transfer learning and to the in-context few-shot behavior of large language models.\n",{"path":5902,"title":5903,"module":5904,"summary":5905},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models","Large Language Models","Large Models & Agents","A large language model is a decoder-only Transformer trained on one objective, next-token prediction, then scaled until new behavior appears. This first part builds the object itself: the equivalence between next-token prediction and lossless compression, subword tokenization (BPE, WordPiece, Unigram, SentencePiece) worked on a real sentence, the four pretraining objectives and the attention masks that distinguish them, and the three model families (encoder-only, decoder-only, encoder--decoder) with their parameter budgets. Scaling, decoding, the KV cache, and alignment continue in part two.\n",{"path":5907,"title":5908,"module":5904,"summary":5909},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment","Scaling, Inference, and Alignment of Language Models","Once a language model is built, three questions remain: how does it improve as it grows, how is it decoded and served affordably, and how is a raw next-token predictor turned into an assistant. We derive the Kaplan power laws and the Chinchilla compute-optimal balance, trace emergent abilities and in-context learning, catalog the decoding strategies from greedy to nucleus sampling, work the KV cache that makes generation quadratic instead of cubic, cover parameter-efficient adaptation by low-rank updates (LoRA), and close on the alignment stack: instruction tuning, RLHF, and DPO.\n",{"path":5911,"title":5912,"module":5904,"summary":5913},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart","Denoising Sequence-to-Sequence Pretraining: BART","BERT corrupts and reconstructs; GPT predicts the next token. Sequence-to-sequence pretraining unifies both by training a full encoder–decoder as a denoising autoencoder: corrupt the text with a noise function, then reconstruct the original through a bidirectional encoder and an autoregressive decoder. This first part derives the denoising objective, catalogs BART's five noise functions (with a worked Poisson-infilling budget), proves BART specializes to both BERT and GPT, and traces a dimension-annotated forward pass through its encoder--decoder. T5, PEGASUS, fine-tuning, and decoding continue in part two.\n",{"path":5915,"title":5916,"module":5904,"summary":5917},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation","Text-to-Text Transfer and Conditional Generation","BART reconstructs a corrupted document; T5 pushes the same denoising idea into a single interface where every task is a string-to-string map. This second part covers T5's span corruption with sentinel tokens (with a worked token budget), PEGASUS's summarization-matched gap sentences and the MASS midpoint, supervised fine-tuning and beam-search decoding with a length penalty, the exposure-bias failure modes of autoregressive decoding, and a theorem showing why a bidirectional encoder--decoder strictly dominates a decoder-only model when the output is conditioned on a full input.\n",{"path":5919,"title":5920,"module":5904,"summary":5921},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models","Speech Recognition: Front-Ends and Alignment","Speech is a long, high-rate sequence whose label is short and unaligned, so the whole subject turns on bridging that mismatch. This first part builds the spectral front-ends that compress a waveform into frames (STFT, mel spectrogram, MFCC, with a worked frame-count), derives CTC's marginalization over alignments and its forward-backward recursion with a two-frame numeric example, and contrasts it with attention-based seq2seq (LAS) and the RNN transducer. Self-supervised and weakly-supervised models, and text-to-speech, continue in part two.\n",{"path":5923,"title":5924,"module":5904,"summary":5925},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis","Self-Supervised Speech Models and Synthesis","The recognition front-ends and alignment losses of part one all need transcribed audio, which is scarce. This second part removes that dependence: wav2vec 2.0 learns speech representations from unlabeled audio by a masked contrastive objective, HuBERT swaps the contrast for masked prediction of clustered units, and Whisper trades curation for scale with weakly-supervised web audio and a multitask token interface. We close with text-to-speech (the same length mismatch run backwards) and a tour of speech foundation models, discrete audio codecs, and neural TTS.\n",{"path":5927,"title":5928,"module":5904,"summary":5929},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents","AI Agents: Tools and Reasoning","A language model that only emits text is a function from prompt to prompt; an agent closes the loop, letting that model act on an environment, read back the result, and decide again. This first part formalizes the agent as a policy over interaction histories, builds out tool calling and the executor trust boundary, the ReAct interleaving of reasoning and action (with concrete traces), and search over thoughts: chain-of-thought, self-consistency, least-to-most, and Tree of Thoughts. Memory, retrieval, reflection, and multi-agent orchestration continue in part two.\n",{"path":5931,"title":5932,"module":5904,"summary":5933},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration","Agent Memory, Retrieval, and Orchestration","An agent's reasoning and tool use only matter if it can remember what it learned and coordinate work larger than one context window. This second part builds the systems around the loop: short-term scratchpad versus long-term vector store, retrieval-augmented generation with a worked softmax over passage scores, reflection (Reflexion, Self-Refine), and multi-agent orchestration. It closes on the failure modes that bound agents — invalid tool calls, horizon-error compounding, context overflow, non-terminating loops — and the benchmarks that score the full loop.\n",{"path":5935,"title":5936,"module":5904,"summary":5937},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts","Mixture-of-Experts","A mixture-of-experts layer replaces one feed-forward network with many and a router that sends each token to only a few of them, so the parameter count and the per-token compute become separate dials. We derive the gated output, sparse top-$k$ routing softmax, the load-balancing loss that stops the router from collapsing onto a single expert, and expert\u002Ftoken capacity with dropping, then work the dimension-annotated tensor shapes and FLOP arithmetic. We trace the architectures from the sparsely-gated LSTM through GShard, Switch Transformer, and Mixtral, cover distributed expert parallelism, and close on the training dynamics, failure modes, and serving costs of a sparse model.\n",{"path":5939,"title":5940,"module":5904,"summary":5941},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models","Multimodal Contrastive Learning","A multimodal model places images, text, and audio in one representation space, so a picture and its caption land close together. This first part builds the contrastive route: the shared embedding space and its residual modality gap, the Vision Transformer image encoder (patch embedding, CLS token, position embeddings, with shapes), the symmetric InfoNCE loss that trains the CLIP dual encoder from a batch similarity matrix (with a worked numeric step), and zero-shot classification as a softmax over class-prompt embeddings. Fusion and vision-language models continue in part two.\n",{"path":5943,"title":5944,"module":5904,"summary":5945},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models","Fusion and Vision-Language Models","A contrastive model compares modalities but never lets one read another. This second part builds the fusion route: early, late, and cross-attention fusion, then the three designs that connect a frozen vision encoder to a frozen language model — Flamingo's zero-initialized gated cross-attention, BLIP-2's Q-Former, and LLaVA's linear projector. We work the token-budget arithmetic that separates them, name the object-hallucination and fine-detail failure modes, cover the contrastive-then- instruction-tune recipe and its retrieval\u002Fcaptioning\u002FVQA benchmarks, and close on natively multimodal models.\n",{"path":5947,"title":5948,"module":5949,"summary":5950},"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning","Foundations of Reinforcement Learning","Reinforcement Learning","Reinforcement learning is the third paradigm: an agent learns to act by interacting with an environment that returns rewards, not labels. We formalize the interaction as a Markov decision process, define the value functions that rank states and actions, and derive the Bellman expectation and optimality equations that every method downstream solves. Dynamic programming gives the exact answer when the model is known, and its convergence rests on a single fact: the Bellman operator is a contraction.\n",{"path":5952,"title":5953,"module":5949,"summary":5954},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control","Model-Free Prediction and Control","When the dynamics are unknown, an agent cannot plan against a model; it must learn directly from sampled experience. We build prediction and control from two estimators of the same return: Monte Carlo averages whole episodes, while temporal-difference learning bootstraps from its own next estimate. We trace the bias-variance contrast between them, derive SARSA and Q-learning as the on-policy and off-policy forms of control, unify everything through n-step returns and eligibility traces, and close on the deadly triad that makes off-policy bootstrapping with function approximation diverge.\n",{"path":5956,"title":5957,"module":5949,"summary":5958},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks","Deep Q-Networks","A Deep Q-Network replaces the tabular action-value function with a neural approximator $Q(s,a;\\theta)$ and trains it by regression toward a bootstrapped target. Naive online Q-learning with a network diverges, so DQN adds two stabilizers: an experience-replay buffer that decorrelates samples, and a periodically-frozen target network that holds the regression target still. We derive the loss, give the full algorithm and the Atari pipeline, and then layer on Double DQN, the dueling split, prioritized replay, and the Rainbow combination.\n",{"path":5960,"title":5961,"module":5949,"summary":5962},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic","Policy Gradients and Actor-Critic Methods","Value-based reinforcement learning learns what each state is worth and acts greedily; policy-gradient methods skip the detour and optimize a parameterized policy directly by ascending the gradient of expected return. The policy gradient theorem makes this tractable through the log-derivative trick, turning an intractable gradient of an expectation into an expectation of a gradient. REINFORCE realizes the idea but suffers high variance; baselines, the advantage function, and actor-critic learning reduce it, and trust-region methods (TRPO, PPO) keep each update from destroying the policy it just learned.\n",{"path":5964,"title":5965,"module":5949,"summary":5966},"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback","Reinforcement Learning from Human Feedback","Many objectives we want from a model, that it be helpful and harmless, are hard to write down but easy to judge by comparison. RLHF turns that asymmetry into a training signal: fit a reward model to pairwise human preferences under the Bradley-Terry likelihood, then fine-tune the policy to maximize that reward under a KL penalty toward a reference. We derive the reward loss, the KL-regularized RL objective and its closed-form optimum, then show how DPO inverts that optimum to collapse the whole pipeline into one supervised log-sigmoid loss, and survey IPO, KTO, RLAIF, and GRPO.\n",{"path":5968,"title":5969,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5971,"title":5972,"module":4036,"summary":5973},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law","Equilibrium, State Variables, and the Zeroth Law","Thermodynamics describes a many-body system by a handful of macroscopic variables and the equilibrium relations among them. This lesson fixes the vocabulary: systems and the walls that separate them, state variables versus path-dependent process quantities, quasi-static and reversible idealizations, and the zeroth law, whose transitivity of thermal equilibrium is what lets temperature exist as a number. The ideal-gas thermometer turns that number into a scale, and an equation of state ties the variables into a surface.\n",{"path":5975,"title":5976,"module":4036,"summary":5977},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work","The First Law: Internal Energy, Heat, and Work","The first law is energy conservation for a system that exchanges energy as both heat and work. Internal energy is a state function with an exact differential; heat and work are path-dependent process quantities. This lesson states $\\d U=\\delta Q+\\delta W$, computes compression work as an area on the $P$–$V$ plane, defines the heat capacities $C_V$ and $C_P$ and the enthalpy that makes $C_P$ natural, and works the isothermal and adiabatic processes of an ideal gas, including the adiabat $PV^\\gamma=\\text{const}$.\n",{"path":5979,"title":5980,"module":4036,"summary":5981},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound","The Second Law, Carnot Cycles, and Entropy","The second law forbids the free conversion of heat into work. This lesson states the Kelvin and Clausius forms, proves them equivalent, and analyzes the Carnot cycle to get the efficiency bound $1-T_c\u002FT_h$. Carnot's theorem makes that bound universal and defines the thermodynamic temperature scale. The Clausius inequality $\\oint \\delta Q\u002FT\\le 0$ then constructs entropy as a state function, $\\d S=\\delta Q_{\\rm rev}\u002FT$, whose non-decrease in isolated systems is the arrow of time.\n",{"path":5983,"title":5984,"module":4036,"summary":5985},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations","Thermodynamic Potentials and Maxwell Relations","The fundamental relation $\\d U=T\\,\\d S-P\\,\\d V+\\mu\\,\\d N$ packages the first and second laws into one exact differential. Legendre transforms swap each conjugate pair to produce the Helmholtz, enthalpy, Gibbs, and grand potentials, each minimized under its own natural variables. Equality of mixed second partials of these potentials gives the Maxwell relations, which convert unmeasurable entropy derivatives into measurable ones from the equation of state.\n",{"path":5987,"title":5988,"module":4036,"summary":5989},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law","Response Functions, Stability, and the Third Law","Response functions — heat capacities, compressibilities, thermal expansion — are the second derivatives of the potentials and the quantities an experiment actually measures. This lesson derives the general relation $C_P-C_V=TV\\alpha^2\u002F\\kappa_T$, shows that convexity of the potentials forces the stability conditions $C_V>0$ and $\\kappa_T>0$, and states the third law: entropy approaches a constant as $T\\to0$, so heat capacities and expansion coefficients vanish there and absolute zero is unattainable.\n",{"path":5991,"title":5992,"module":5993,"summary":5994},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition","Classical Statistics and Equipartition","Microstates, Phase Space, and Statistical Entropy","A liter of gas holds on the order of a trillion trillion molecules, far too many to track by their equations of motion. Classical statistical mechanics replaces the trajectories with a single probability law, the Boltzmann distribution, and reads the measurable properties of matter off it: the Maxwell speed distribution, the average energy per degree of freedom, and the heat capacities of gases and solids — together with the low-temperature failures that forced the quantum revision.\n",{"path":5996,"title":5997,"module":5993,"summary":5998},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem","Phase Space, Trajectories, and Liouville's Theorem","A classical system of N particles is one point in a 6N-dimensional phase space, and its evolution is a single trajectory driven by Hamilton's equations. This lesson builds that geometric picture, introduces the phase-space density of an ensemble, and proves Liouville's theorem: the density is carried by the flow as an incompressible fluid, so phase-space volume is conserved. The stationary densities of equilibrium follow as functions of the conserved quantities alone.\n",{"path":6000,"title":6001,"module":5993,"summary":6002},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate","Ensembles and the Postulate of Equal a Priori Probabilities","An ensemble is a probability distribution over the microstates of a system. This lesson states the single postulate on which equilibrium statistical mechanics rests — that an isolated system in equilibrium is equally likely to be in any of its accessible microstates — and works out its consequences: the accessible phase-space volume, the overwhelming dominance of the most probable macrostate as the particle number grows, and the ergodic hypothesis that lets a time average be replaced by an ensemble average.\n",{"path":6004,"title":6005,"module":5993,"summary":6006},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs","Statistical Entropy: Boltzmann and Gibbs","Entropy is the logarithm of the number of accessible microstates. This lesson builds the two statistical entropies — Boltzmann's S = k ln Omega for an isolated system and Gibbs's S = -k sum p ln p for any ensemble — proves they agree for a uniform distribution, and connects both to Shannon's measure of missing information. The second law emerges as the drift toward maximum multiplicity, and maximizing the Gibbs entropy under constraints previews the canonical distribution.\n",{"path":6008,"title":6009,"module":6010,"summary":6011},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy","The Microcanonical Ensemble and Statistical Entropy","The Microcanonical Ensemble","An isolated system holds its energy, volume, and particle number fixed, and the fundamental postulate assigns equal probability to every microstate on its energy shell. This lesson builds the microcanonical distribution, defines the enclosed phase-space volume $\\Gamma(E)$, the surface density of states $\\omega(E)=\\d\\Gamma\u002F\\d E$, and the shell count $\\Omega(E)$, shows their logarithms agree to $O(\\ln N)$ for large $N$, and reads the Boltzmann entropy $S=k\\ln\\Omega$ off the count. The measure factors $h^{3N}$ and $N!$ enter here and make $S$ extensive.\n",{"path":6013,"title":6014,"module":6010,"summary":6015},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential","Thermal, Mechanical, and Diffusive Equilibrium","Two isolated subsystems that can exchange energy, volume, or particles reach equilibrium at the partition that maximizes their combined entropy. Setting the derivative of the total entropy to zero identifies the statistical definitions $1\u002FT=(\\partial S\u002F\\partial E)$, $P\u002FT=(\\partial S\u002F\\partial V)$, and $-\\mu\u002FT=(\\partial S\u002F\\partial N)$, shows heat flows from hot to cold as an entropy increase, and recovers the fundamental relation $\\d S=(\\d E+P\\,\\d V-\\mu\\,\\d N)\u002FT$ from pure counting.\n",{"path":6017,"title":6018,"module":6010,"summary":6019},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy","The Ideal Gas, Phase-Space Volume, and the Sackur–Tetrode Entropy","The monatomic ideal gas is the first system whose microcanonical count can be done in closed form. The momentum integral is the volume of a $3N$-dimensional ball of radius $\\sqrt{2mE}$, the configuration integral is $V^N$, and together they give the Sackur–Tetrode entropy $S=Nk[\\ln(V\u002FN\\lambda^3)+5\u002F2]$ with the thermal wavelength $\\lambda=h\u002F\\sqrt{2\\pi mkT}$. The formula matches the measured entropy of helium, fixes the classical regime $n\\ll n_Q$, and shows why the $N!$ is needed for extensivity.\n",{"path":6021,"title":6022,"module":6010,"summary":6023},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature","Two-State Systems, Paramagnets, and Negative Temperature","The ideal two-state paramagnet has a multiplicity counted by the binomial coefficient, an entropy that is an inverted dome in the energy, and a temperature read from the slope $1\u002FT=\\partial S\u002F\\partial E$. Because the energy is bounded above, the slope changes sign past the entropy maximum: a population-inverted spin system has a negative absolute temperature, which is hotter than any positive temperature. Nuclear-spin experiments and lasers realize the inverted state.\n",{"path":6025,"title":6026,"module":6027,"summary":6028},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution","The Canonical Ensemble and the Boltzmann Distribution","The Canonical Ensemble","A system held at fixed temperature by contact with a heat reservoir is described by the canonical ensemble. Expanding the reservoir entropy to first order in the system energy gives the Boltzmann distribution $p_i\\propto e^{-\\beta E_i}$, and the same law follows from maximizing the Gibbs entropy at fixed mean energy. Both routes identify $\\beta=1\u002Fk_BT$ and fix the probability of every microstate from the temperature alone.\n",{"path":6030,"title":6031,"module":6027,"summary":6032},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy","The Partition Function and the Helmholtz Free Energy","The normalizing sum of the Boltzmann distribution, the partition function $Z=\\sum_i e^{-\\beta E_i}$, is a generating function for the thermodynamics. The mean energy is $-\\partial\\ln Z\u002F\\partial\\beta$, and the Gibbs entropy of the canonical distribution collapses to the bridge relation $F=-k_BT\\ln Z$. From $F$ every thermodynamic quantity follows by differentiation, and $Z$ factorizes over independent degrees of freedom.\n",{"path":6034,"title":6035,"module":6027,"summary":6036},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence","Energy Fluctuations and the Equivalence of Ensembles","In the canonical ensemble the energy fluctuates, and the second derivative of $\\ln Z$ gives its variance. The fluctuation–response identity $\\langle\\Delta E^2\\rangle = k_BT^2C_V$ ties the spread of the energy to the heat capacity, and the relative fluctuation falls as $1\u002F\\sqrt{N}$. In the thermodynamic limit the canonical energy distribution is a sharp spike, and the canonical and microcanonical ensembles predict the same thermodynamics.\n",{"path":6038,"title":6039,"module":6027,"summary":6040},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems","Harmonic Systems: The Einstein Solid and Vibrational Heat Capacity","A quantum harmonic oscillator has a geometric partition function summed in closed form, giving a mean energy $\\hbar\\omega(\\tfrac12+\\langle n\\rangle)$ with the Bose occupation factor. Modeling a solid as $3N$ independent oscillators yields a heat capacity that rises from zero and saturates at the Dulong–Petit value $3Nk_B$. The Einstein temperature sets the crossover, and the model's exponential low-temperature falloff, too steep against the observed $T^3$, motivates the Debye theory.\n",{"path":6042,"title":6043,"module":6027,"summary":6044},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly","Paramagnetism, Two-Level Systems, and the Schottky Anomaly","A magnetic moment in a field is a two-level system whose partition function is a hyperbolic cosine. The magnetization of a spin-$\\tfrac12$ paramagnet is $N\\mu\\tanh(\\mu B\u002Fk_BT)$, generalizing to the Brillouin function for spin $J$; it gives Curie's law $\\chi\\propto 1\u002FT$ at high temperature and saturates at low temperature. A finite level gap produces the Schottky heat-capacity peak, and the temperature dependence of the entropy on the field is the basis of adiabatic demagnetization cooling.\n",{"path":6046,"title":6047,"module":6048,"summary":6049},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox","The Ideal Gas Partition Function and the Gibbs Paradox","The Classical Ideal Gas","The classical monatomic ideal gas built from the partition function. The single-particle sum is $z_1=V\u002F\\lambda^3$ with the thermal de Broglie wavelength $\\lambda$; the $N$-particle partition function is $z_1^N\u002FN!$, and the $N!$ is forced by indistinguishability. From $Z$ the ideal-gas law, $U=\\tfrac32 Nk_BT$, and the Sackur–Tetrode entropy follow. The $N!$ makes the entropy extensive and resolves the Gibbs paradox: mixing identical gases produces no entropy change.\n",{"path":6051,"title":6052,"module":6048,"summary":6053},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem","Equipartition and the Virial Theorem","The equipartition theorem derived from the canonical ensemble: every phase-space coordinate that enters the Hamiltonian quadratically carries a mean energy $\\tfrac12 k_BT$. The generalized form $\\langle x_i\\,\\partial H\u002F\\partial x_j\\rangle = k_BT\\,\\delta_{ij}$ contains equipartition and the classical virial theorem as special cases. Equipartition fixes the classical heat capacities, fails by quantum freeze-out when a level gap exceeds $k_BT$, and shifts for a relativistic gas whose energy is linear rather than quadratic in momentum.\n",{"path":6055,"title":6056,"module":6048,"summary":6057},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration","Molecular Gases: Rotational and Vibrational Degrees of Freedom","The internal partition function of a diatomic gas factorizes into translational, rotational, vibrational, and electronic parts. The rigid rotor gives a rotational temperature $\\theta_{\\rm rot}$; the harmonic bond gives a vibrational temperature $\\theta_{\\rm vib}$. Each mode contributes to the heat capacity only above its characteristic temperature, producing the diatomic $C_V$ staircase from $\\tfrac32 R$ to $\\tfrac52 R$ to $\\tfrac72 R$. Homonuclear molecules carry a symmetry number, and hydrogen splits into ortho and para species.\n",{"path":6059,"title":6060,"module":6061,"summary":6062},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function","The Grand Canonical Ensemble","Grand Canonical Ensemble","When a system exchanges both energy and particles with a reservoir, the reservoir fixes its temperature and its chemical potential. Expanding the reservoir entropy to first order in the exchanged energy and particle number gives the Gibbs factor $e^{-\\beta(E-\\mu N)}$, and summing it over every microstate of every particle number gives the grand partition function $\\Xi$. The grand potential $\\Phi = -k_BT\\ln\\Xi = -PV$ generates the mean particle number, energy, entropy, and pressure by differentiation.\n",{"path":6064,"title":6065,"module":6061,"summary":6066},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations","Chemical Potential, Fugacity, and Number Fluctuations","The chemical potential is the energy to add one particle at fixed entropy and volume, equal to the slope of the free energy in the particle number. For the classical ideal gas $\\mu=k_BT\\ln(n\\lambda^3)$ is large and negative, and the fugacity $z=n\\lambda^3$ is small. The grand ensemble makes the particle number fluctuate; its variance $\\langle\\Delta N^2\\rangle=k_BT(\\partial N\u002F\\partial\\mu)$ equals $k_BT\\,N^2\\kappa_T\u002FV$, tying density fluctuations to the isothermal compressibility. Equality of $\\mu$ is the condition for diffusive equilibrium and phase coexistence.\n",{"path":6068,"title":6069,"module":6061,"summary":6070},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web","The Three Ensembles and the Thermodynamic Web","The microcanonical, canonical, and grand canonical ensembles hold different variables fixed and generate different potentials — the entropy $S$, the Helmholtz free energy $F$, and the grand potential $\\Phi$ — linked by Legendre transforms that trade each fixed variable for its conjugate. Each successive ensemble lets one more quantity fluctuate. In the thermodynamic limit the three agree, the relative fluctuations vanishing as $1\u002F\\sqrt{N}$; the ideal gas gives the same equation of state in all three. The choice of ensemble is a matter of convenience, set by which sum is easiest.\n",{"path":6072,"title":6073,"module":6074,"summary":6075},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac","Quantum Statistics — Bose-Einstein and Fermi-Dirac","Quantum Statistics","Quantum particles of the same kind are genuinely indistinguishable: no label survives an overlap of their wave functions. Counting states with that constraint replaces the Boltzmann distribution with two quantum laws — the Bose-Einstein distribution for integer-spin particles, which clump into shared states, and the Fermi-Dirac distribution for half-integer-spin particles, which exclude one another. Both reduce to Boltzmann in the dilute, hot limit, and a de Broglie criterion says exactly when.\n",{"path":6077,"title":6078,"module":6074,"summary":6079},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions","Deriving the Quantum Distributions from the Grand Ensemble","The Bose-Einstein and Fermi-Dirac distributions follow from one observation: in the occupation-number representation the single-particle modes are independent, so the grand partition function factorizes into one factor per mode. A boson mode sums a geometric series over all occupancies; a fermion mode sums two terms. Differentiating each factor gives the mean occupation $1\u002F(e^{\\beta(\\varepsilon-\\mu)}\\mp 1)$, the Maxwell-Boltzmann limit when occupancies are small, and the occupation fluctuations that distinguish bunching from anti-bunching.\n",{"path":6081,"title":6082,"module":6074,"summary":6083},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration","The Classical Limit and Quantum Concentration","When every single-particle level is nearly empty, both quantum distributions collapse to the Maxwell-Boltzmann form, and the fugacity equals the ratio of the number density to the quantum concentration $n_Q = 1\u002F\\lambda^3$. The gas is classical when $n \\ll n_Q$, degenerate when $n \\gtrsim n_Q$. The chemical potential is large and negative in the classical regime and rises through zero as the gas degenerates. The leading quantum correction to the ideal-gas law is a second virial term that lowers the pressure for bosons and raises it for fermions — a statistical attraction and repulsion with no interaction behind it.\n",{"path":6085,"title":6086,"module":6074,"summary":6087},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework","Ideal Quantum Gases: The General Framework","Every ideal quantum gas is handled by one calculation. The sum over single-particle modes becomes an energy integral weighted by a density of states $g(\\varepsilon)\\propto\\varepsilon^{1\u002F2}$, and the number and pressure reduce to the Bose and Fermi functions $g_\\nu(z)$ and $f_\\nu(z)$ of the fugacity. An integration by parts fixes $PV=\\tfrac23 U$ for a nonrelativistic gas and $PV=\\tfrac13 U$ for an ultrarelativistic one, independent of statistics. Specializing the density of states and the chemical potential then produces the photon gas, phonons, the Bose gas, and the Fermi gas as four branches of the same framework.\n",{"path":6089,"title":6090,"module":6091,"summary":6092},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas","Bose-Einstein Condensation and the Fermion Gas","Bosonic Systems","Below a critical temperature a boson gas drops a macroscopic fraction of its particles into the single ground state — Bose-Einstein condensation, the mechanism behind superfluid helium and the dilute-atom condensates cooled to nanokelvin. The same statistics applied to a photon gas reproduces Planck's blackbody spectrum. Fermions do the opposite: forbidden from sharing states, they fill every level up to the Fermi energy, and that filled sea governs the electrons in metals and the pressure that holds up a white dwarf.\n",{"path":6094,"title":6095,"module":6091,"summary":6096},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law","The Photon Gas and Planck's Radiation Law","Electromagnetic radiation in equilibrium with cavity walls is a gas of non-conserved bosons, and non-conservation forces the chemical potential to zero. Counting standing-wave modes with two polarizations and weighting each by the Bose occupation gives the Planck spectral energy density. Its low-frequency tail reproduces the classical Rayleigh-Jeans law and the ultraviolet catastrophe; the Bose factor cuts the divergence off at high frequency and the peak obeys Wien's displacement law.\n",{"path":6098,"title":6099,"module":6091,"summary":6100},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure","Blackbody Thermodynamics and Radiation Pressure","Integrating the Planck spectrum over all frequencies gives the total energy density proportional to the fourth power of temperature — the Stefan-Boltzmann law — and the isotropy of a relativistic gas fixes the radiation pressure at one third of the energy density. From the free energy follow the entropy and heat capacity, both proportional to T cubed, and the adiabatic law for radiation. The results govern the pressure inside stars and the cooling of the cosmic microwave background as the universe expands.\n",{"path":6102,"title":6103,"module":6091,"summary":6104},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model","Phonons and the Debye Model","The vibrations of a crystal lattice are quantized into phonons — bosons of zero chemical potential, counted exactly like cavity photons but with three polarizations, a finite sound speed, and a total of 3N modes. The Debye model replaces the true dispersion by a linear one cut off at a frequency that enforces that count. It gives the correct low-temperature T-cubed heat capacity the Einstein model missed and recovers the Dulong-Petit value at high temperature.\n",{"path":6106,"title":6107,"module":6091,"summary":6108},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived","Bose-Einstein Condensation Derived","For a gas of conserved bosons the excited states can hold only a finite number of particles at fixed temperature, set by the Bose function at unit fugacity. When the total exceeds that ceiling the surplus collapses into the single ground state, which the continuum density-of-states integral misses and which must be restored by hand. This fixes the critical temperature, the condensate fraction, and the fact that a uniform gas condenses only in three or more dimensions.\n",{"path":6110,"title":6111,"module":6091,"summary":6112},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity","Thermodynamics of the Bose Gas and Superfluidity","The energy and pressure of the ideal Bose gas follow from the Bose function at the order above the density, and below the critical temperature the pressure depends on temperature alone because the condensate carries none. The heat capacity rises to a cusp at the transition. Real superfluid helium departs from the ideal gas because interactions matter: the Landau criterion ties frictionless flow to the phonon-roton excitation spectrum, and the two-fluid model carries a second sound.\n",{"path":6114,"title":6115,"module":6116,"summary":6117},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature","The Ideal Fermi Gas at Zero Temperature","Degenerate Fermi Gas","At absolute zero a gas of non-interacting fermions fills every single-particle state up to the Fermi energy and leaves the rest empty, a filled Fermi sphere in momentum space. This lesson computes the Fermi momentum, energy, and temperature from the density, the density of states, the total ground-state energy, and the degeneracy pressure that grows as $n^{5\u002F3}$. Numerical Fermi energies for metals set the scale: they are electron-volts, so room temperature is deep in the degenerate regime.\n",{"path":6119,"title":6120,"module":6116,"summary":6121},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals","The Sommerfeld Expansion and Electrons in Metals","Turning on a small temperature blurs the Fermi step over a shell of width $k_BT$ around $\\epsilon_F$. The Sommerfeld expansion turns integrals over the Fermi function into a power series in $(k_BT\u002F\\epsilon_F)^2$, giving the shift of the chemical potential and a heat capacity linear in $T$. This resolves the old puzzle of the missing electronic heat capacity, predicts the combined $C=\\gamma T+AT^3$ of a metal, and gives the temperature-independent Pauli paramagnetism of the electron gas.\n",{"path":6123,"title":6124,"module":6116,"summary":6125},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","White Dwarfs and the Chandrasekhar Limit","A white dwarf is held up against its own gravity by the degeneracy pressure of its electrons. Balancing that pressure against gravity gives a mass-radius relation $R\\propto M^{-1\u002F3}$: heavier white dwarfs are smaller and denser. As the density rises the electrons turn relativistic, the pressure softens from $n^{5\u002F3}$ to $n^{4\u002F3}$, and the star can no longer support itself above a critical mass. This lesson derives that Chandrasekhar mass, about $1.4\\,M_\\odot$, and what lies beyond it.\n",{"path":6127,"title":6128,"module":6116,"summary":6129},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter","Neutron Stars and Dense Matter","When a collapsing core passes nuclear density, electron capture converts the matter to neutrons and their degeneracy pressure takes over. The same balance that fixes a white dwarf, rescaled by the neutron mass, gives a neutron star of a few solar masses in a ten-kilometre radius. General relativity is no longer a correction: the Tolman-Oppenheimer-Volkoff equation replaces the Newtonian balance and sets a maximum mass around two solar masses. This lesson rescales the Fermi-gas argument, states where it breaks, and places the compact objects in one stability sequence.\n",{"path":6131,"title":6132,"module":6133,"summary":6134},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients","The Cluster Expansion and Virial Coefficients","Interacting Gases","A real gas departs from $PV=Nk_BT$ because its molecules interact. The configuration integral factors through the Mayer function $f_{ij}=e^{-\\beta u_{ij}}-1$, and expanding it in powers of density produces the virial expansion $PV\u002FNk_BT = 1 + B_2(T)n + B_3(T)n^2 + \\cdots$. The second virial coefficient $B_2(T)=-\\tfrac12\\int f\\,\\d^3r$ is a single integral over the pair potential; it is positive for a hard core, negative for an attractive well, and vanishes at the Boyle temperature where the two balance.\n",{"path":6136,"title":6137,"module":6133,"summary":6138},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence","The van der Waals Gas and Liquid-Gas Coexistence","Resumming the second virial coefficient $B_2=b-a\u002Fk_BT$ into an equation of state gives the van der Waals model $(P+a\u002Fv^2)(v-b)=k_BT$, the simplest theory of a fluid that condenses. Below the critical temperature its isotherms develop a mechanically unstable loop; the Maxwell equal-area construction replaces the loop with a coexistence tie line. The critical point sits at $v_c=3b$, $k_BT_c=8a\u002F27b$, $P_c=a\u002F27b^2$, and the model predicts universal but incorrect critical exponents because it ignores fluctuations.\n",{"path":6140,"title":6141,"module":6133,"summary":6142},"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange","Quantum Gases with Interactions and Statistical Exchange","A quantum gas has a nonzero second virial coefficient even with no forces between the particles: symmetrization alone produces an effective statistical interaction, attractive for bosons and repulsive for fermions, with range the thermal wavelength $\\lambda$. This lesson derives that exchange contribution $B_2=\\mp\\lambda^3\u002F2^{5\u002F2}g$, writes it as a statistical potential $v_s(r)=-k_BT\\ln(1\\pm e^{-2\\pi r^2\u002F\\lambda^2})$, and shows how real interactions add on top through the Beth-Uhlenbeck phase-shift formula, reducing at low temperature to a single scattering length.\n",{"path":6144,"title":6145,"module":6146,"summary":6147},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification","Phases, Coexistence, and the Classification of Transitions","Phase Transitions","A phase transition is a point where the free energy of a substance loses analyticity, so a small change in temperature or pressure produces a qualitative change of state. This lesson maps the coexistence curves of a pure substance, derives the Clausius-Clapeyron relation between the slope of a coexistence line and its latent heat, and separates first-order transitions (discontinuous entropy and density) from continuous ones (a vanishing order parameter and divergent response). The Ehrenfest scheme, the order parameter, and the triple and critical points fix the vocabulary the rest of the module builds on.\n",{"path":6149,"title":6150,"module":6146,"summary":6151},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions","The Ising Model and Exact Results","The Ising model reduces cooperative ordering to spins on a lattice coupled to their neighbors, and the same Hamiltonian describes uniaxial magnets, the liquid-gas critical point through the lattice gas, and binary alloys. This lesson solves the one-dimensional chain exactly with the transfer matrix, shows by a domain-wall argument why one dimension has no ordered phase at any positive temperature, contrasts the survival of order in two dimensions, and quotes Onsager's exact two-dimensional results: the critical temperature, the logarithmically divergent heat capacity, and the magnetization exponent one eighth.\n",{"path":6153,"title":6154,"module":6146,"summary":6155},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model","Mean-Field Theory and Spontaneous Symmetry Breaking","Mean-field theory replaces the neighbors of each spin by their average, turning the interacting Ising model into a single spin in a self-consistent field. The resulting equation m = tanh(beta J z m + beta h) has only the zero solution above a critical temperature and gains a nonzero root below it, giving spontaneous magnetization and a mean-field critical temperature k T_c = J z. The Bragg-Williams free energy turns single-welled above T_c and double-welled below, the picture of spontaneous symmetry breaking. The approximation is exact in high dimension and fails below the upper critical dimension four, quantified by the Ginzburg criterion.\n",{"path":6157,"title":6158,"module":6146,"summary":6159},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory","Critical Exponents, Scaling, and Landau Theory","Near a continuous transition every singular quantity follows a power law in the reduced temperature, and the exponents alpha, beta, gamma, delta, nu, and eta encode the transition more sharply than T_c itself. Landau theory expands the free energy in the order parameter and delivers the mean-field exponents in a few lines. They disagree with experiment and with the exact two-dimensional Ising values, but the exponents are not independent: the scaling relations of Rushbrooke, Widom, Fisher, and Josephson tie them together, and the correlation length sets the length scale that organizes universality classes.\n",{"path":6161,"title":6162,"module":6146,"summary":6163},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea","Scaling and the Renormalization-Group Idea","At a critical point fluctuations exist on every length scale, so the system looks the same after coarse-graining. The renormalization group makes this self-similarity a computation: group spins into blocks, integrate out the short scales, and track how the couplings change. The transformation has fixed points, and the flow near a critical fixed point separates relevant couplings that grow from irrelevant ones that shrink, which is why only dimension and symmetry survive to set the exponents. The one-dimensional Ising decimation carries the whole scheme through in closed form and reproduces the absence of a finite-temperature transition.\n",{"path":6165,"title":6166,"module":6167,"summary":6168},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response","Thermodynamic Fluctuations and Response Functions","Fluctuations and Response","Thermodynamic variables are sharp only on average; a macroscopic system in equilibrium fluctuates about its mean values. Einstein inverted Boltzmann's $S=k_B\\ln\\Omega$ into a Gaussian probability for a fluctuation, $w\\propto e^{\\Delta S\u002Fk_B}$, and the second moments it predicts reproduce the response functions: $\\langle\\Delta E^2\\rangle=k_BT^2C_V$, $\\langle\\Delta V^2\\rangle=k_BTV\\kappa_T$, $\\langle\\Delta M^2\\rangle=k_BT\\chi_T$. The variances diverge where the responses diverge, at a critical point, producing critical opalescence and the breakdown of the thermodynamic description.\n",{"path":6170,"title":6171,"module":6167,"summary":6172},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation","Brownian Motion and the Langevin Equation","A pollen grain in water executes a random walk driven by molecular collisions. Einstein tied its diffusion constant to its mobility, $D=\\mu_{\\mathrm{mob}}k_BT$, turning a visible motion into a measurement of Avogadro's number. The Langevin equation splits the collisions into a systematic drag and a random force whose strength is fixed by the drag through $\\langle\\xi(t)\\xi(t')\\rangle=2\\gamma k_BT\\,\\delta(t-t')$ — the first fluctuation–dissipation relation. The mean-square displacement grows ballistically at short times and linearly, $\\langle r^2\\rangle=2dDt$, at long times, and the Stokes–Einstein relation $D=k_BT\u002F6\\pi\\eta a$ closes the loop to Perrin's experiments.\n",{"path":6174,"title":6175,"module":6167,"summary":6176},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem","Linear Response and the Fluctuation-Dissipation Theorem","A system driven by a weak external field responds through a generalized susceptibility $\\chi(\\omega)$ whose imaginary part measures dissipation. The Wiener–Khinchin theorem makes the power spectrum of equilibrium fluctuations the Fourier transform of their correlation function, and the fluctuation–dissipation theorem ties the two together: $S_x(\\omega)=(2k_BT\u002F\\omega)\\,\\chi''(\\omega)$, so the spectrum of spontaneous fluctuations is fixed by the dissipative response. The Johnson–Nyquist noise of a resistor, $\\langle V^2\\rangle=4k_BTR\\,\\Delta f$, is the canonical example, and Onsager reciprocity closes the subject.\n",{"path":6178,"title":6179,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":6181,"title":6182,"module":6183,"summary":6184},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms","Bonding Mechanisms","Molecules and Chemical Bonding","A molecule forms when the total energy of two atoms drops below the energy of the separated pair. This lesson works through the four mechanisms that produce that minimum: the ionic bond from charge transfer, the covalent bond from shared electron wave functions, the metallic bond, and the weak dipole-dipole and hydrogen bonds, computing bond lengths and dissociation energies for NaCl, H₂, and H₂⁺.\n",{"path":6186,"title":6187,"module":6183,"summary":6188},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus","The Molecular-Orbital Method and H₂⁺","The hydrogen molecule ion is the two-center problem that fixes the language of chemical bonding. This lesson builds the molecular orbital as a linear combination of atomic orbitals, minimizes the energy through the variational secular equation, and reduces the result to three two-center integrals: the overlap, the Coulomb term, and the exchange (resonance) integral. The bonding and antibonding levels, their potential-energy curves, and the charge piled between the nuclei follow from those integrals.\n",{"path":6190,"title":6191,"module":6183,"summary":6192},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange","The Hydrogen Molecule, Exchange, and Hybridization","Adding the second electron turns the one-electron ion into the two-electron hydrogen molecule, where electron-electron repulsion and the Pauli principle govern the bond. This lesson contrasts the Heitler-London valence-bond and molecular-orbital wave functions, derives the singlet-triplet splitting as an exchange energy, shows why naive molecular orbitals fail at dissociation, and builds the sp, sp², and sp³ hybrids that fix the directed geometry of covalent bonds.\n",{"path":6194,"title":6195,"module":6183,"summary":6196},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces","Van der Waals Forces","The bond of last resort acts between all atoms, even closed-shell noble gases with no permanent moment. This lesson separates the three van der Waals contributions — Keesom orientation, Debye induction, and London dispersion — derives the London 1\u002Fr⁶ attraction from the coupled-oscillator and second-order perturbation pictures, and assembles the Lennard-Jones potential to compute the equilibrium spacing and cohesive energy of the noble-gas crystals, argon in particular.\n",{"path":6198,"title":6199,"module":6200,"summary":6201},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra","Rotational and Vibrational Spectra of Molecules","Molecular Spectra","A diatomic molecule stores energy in three well-separated ledgers: electronic, vibrational, and rotational. Quantizing the rigid rotor gives levels spaced as ℓ(ℓ+1); quantizing the bond as a harmonic oscillator gives equally spaced vibrational levels. Their combination produces the P and R branches of an infrared absorption band, from which the bond length and force constant are read directly.\n",{"path":6203,"title":6204,"module":6200,"summary":6205},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure","Anharmonicity and Rovibrational Structure","The rigid rotor and harmonic oscillator are first approximations. A real bond follows the Morse potential, whose levels converge toward dissociation; a real rotor stretches centrifugally; and vibration couples to rotation, so the rotational constant depends on the vibrational level. This lesson works out the anharmonic and centrifugal corrections, the Birge-Sponer route to the dissociation energy, the isotope shift, and the thermal band envelope.\n",{"path":6207,"title":6208,"module":6200,"summary":6209},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands","Raman Scattering and Electronic Bands","Not every vibration absorbs in the infrared. Raman scattering reaches modes that modulate the polarizability, giving Stokes and anti-Stokes lines whose intensity ratio measures temperature, and the mutual-exclusion rule pairs it with infrared absorption. Electronic transitions add the vibronic structure of band spectra, governed by the Franck-Condon principle, and the radiative fates of an excited state are sorted by the Jablonski diagram into fluorescence and phosphorescence.\n",{"path":6211,"title":6212,"module":6200,"summary":6213},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers","Lasers, Masers, and Stimulated Emission","Einstein's three radiative processes — absorption, spontaneous emission, and stimulated emission — and the coefficients that relate them. Stimulated emission produces coherent photons, and inverting the level populations turns it into net amplification. We build the ruby three-level laser and the helium-neon four-level laser, and show why the fourth level makes inversion easy.\n",{"path":6215,"title":6216,"module":6217,"summary":6218},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids","The Structure of Solids","Crystal Structure","A crystal is a unit cell repeated in three dimensions. We classify the common cubic lattices, compute the Coulomb energy of an ionic crystal through the Madelung constant, and show how the divergent naive lattice sum is tamed by cubic shells. The cohesive energy that results predicts melting points and connects the diatomic bond of an earlier lesson to the bulk solid.\n",{"path":6220,"title":6221,"module":6217,"summary":6222},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems","Bravais Lattices, Bases, and Crystal Structures","A crystal is a Bravais lattice decorated by a basis. This lesson separates the two, builds primitive and Wigner-Seitz cells, enumerates the seven crystal systems and fourteen Bravais lattices, and fixes the language of point and space groups. Miller indices label planes and directions, and the packing fractions of the close-packed, cubic, and diamond structures follow from the geometry.\n",{"path":6224,"title":6225,"module":6217,"summary":6226},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones","The Reciprocal Lattice and Brillouin Zones","Every periodic crystal has a dual lattice in wavevector space. This lesson defines the reciprocal lattice through the condition b_i dot a_j equals two pi delta, derives its properties, shows the reciprocal of fcc is bcc, links reciprocal vectors to families of lattice planes, and builds the first Brillouin zone as the Wigner-Seitz cell of the reciprocal lattice, including the higher zones.\n",{"path":6228,"title":6229,"module":6217,"summary":6230},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors","X-ray and Neutron Diffraction","A crystal diffracts radiation whose wavelength matches its atomic spacing. This lesson derives the Bragg condition, the equivalent Laue condition 2k dot G equals G squared, and the Ewald-sphere construction, then computes the geometric structure factor that produces systematic absences for bcc and fcc, the atomic form factor, and the powder method. It closes on why neutrons and electrons complement X-rays.\n",{"path":6232,"title":6233,"module":6234,"summary":6235},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion","The Harmonic Crystal and Phonon Dispersion","Lattice Dynamics","Atoms in a crystal vibrate about their equilibrium sites, and expanding the potential to second order turns the whole lattice into a set of coupled harmonic oscillators. This lesson sets up the harmonic approximation and the dynamical matrix, solves the monatomic linear chain for its dispersion omega(k) = 2 sqrt(K\u002FM) times the absolute sine of ka over two, explains why wavevectors outside the first Brillouin zone are redundant, and extends the chain to two atoms per cell to produce acoustic and optical branches with a frequency gap.\n",{"path":6237,"title":6238,"module":6234,"summary":6239},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos","Phonons, Density of States, and Crystal Momentum","Quantizing the normal modes of a harmonic crystal turns each vibrational mode into a quantum oscillator whose excitations are phonons. This lesson counts phonons with Bose-Einstein statistics, defines crystal momentum and the normal versus Umklapp distinction in momentum conservation, builds the density of states with its van Hove singularities, and shows how inelastic neutron scattering measures a dispersion curve point by point.\n",{"path":6241,"title":6242,"module":6234,"summary":6243},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity","Thermal Properties — Einstein and Debye Models","The lattice heat capacity follows the classical Dulong-Petit value at high temperature but collapses toward zero as T approaches zero, a purely quantum effect. This lesson derives that behavior from the Einstein model of a single frequency, then the Debye model of a linear phonon spectrum with a cutoff, obtaining the Debye T-cubed law at low temperature and the Debye interpolation across all temperatures, and closes with thermal expansion and the Gruneisen parameter.\n",{"path":6245,"title":6246,"module":6234,"summary":6247},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport","Anharmonicity, Thermal Expansion, and Heat Conduction","A perfectly harmonic crystal neither expands when heated nor resists heat flow. Both effects come from the cubic and higher terms the harmonic approximation discards. This lesson derives thermal expansion from an asymmetric interatomic potential, treats phonon-phonon scattering as the decay channel these terms open, shows why Umklapp processes are what make lattice thermal conductivity finite, and traces the temperature dependence of the conductivity and the phonon mean free path.\n",{"path":6249,"title":6250,"module":6251,"summary":6252},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction","Conduction and the Free-Electron Gas","Free-Electron Fermi Gas","Drude's classical free-electron model gets Ohm's law right but the resistivity, its temperature dependence, and the heat capacity wrong. Replacing the Maxwell-Boltzmann distribution with the Fermi-Dirac distribution and treating electron-lattice collisions as wave scattering repairs all three: the Fermi energy, Fermi speed, and a mean free path set by thermal lattice vibrations.\n",{"path":6254,"title":6255,"module":6251,"summary":6256},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity","The Sommerfeld Model: Ground State and Heat Capacity","Quantizing the free-electron gas in a box fills a Fermi sphere in k-space. The density of states grows as the square root of energy in three dimensions, and the Fermi energy, temperature, and wavevector follow for real metals. The Sommerfeld expansion shows only a thermal shell of width k_BT near E_F is excited, giving an electronic heat capacity linear in T that sits beneath the phonon T-cubed term.\n",{"path":6258,"title":6259,"module":6251,"summary":6260},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect","Transport, Wiedemann–Franz, and the Hall Effect","The relaxation-time picture displaces the Fermi sphere under an applied field and gives the electrical conductivity ne-squared-tau over m. The same electrons carry heat, and their ratio yields the Wiedemann–Franz law with the universal Lorenz number. A magnetic field bends the carriers into cyclotron orbits and produces the Hall voltage, whose sign reveals the charge of the carriers.\n",{"path":6262,"title":6263,"module":6251,"summary":6264},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons","Screening, Plasmons, and the Limits of Free Electrons","A mobile electron gas rearranges to screen any foreign charge, turning the bare Coulomb potential into a short-ranged Yukawa form over the Thomas–Fermi length. Displaced collectively, the gas rings at the plasma frequency, whose quantum is the plasmon and whose value sets the reflectivity edge of metals. A ledger of free-electron successes and failures then motivates band theory.\n",{"path":6266,"title":6267,"module":6268,"summary":6269},"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands","Bloch's Theorem and Energy Bands","Band Theory","An electron in a periodic potential has stationary states that are plane waves modulated by a lattice-periodic envelope. This lesson proves Bloch's theorem two ways, defines crystal momentum and the band index, counts the allowed wavevectors from Born–von Kármán boundary conditions, and sets up the extended, reduced, and repeated-zone descriptions of a band.\n",{"path":6271,"title":6272,"module":6268,"summary":6273},"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model","The Nearly-Free-Electron Model","A weak periodic potential leaves the free-electron parabola almost intact except near Brillouin-zone boundaries, where two nearly degenerate plane waves mix. This lesson solves the resulting two-by-two secular problem, shows the gap of size twice the potential component opening at each boundary, identifies the two standing waves that pile charge on and between the ions, and works the exactly solvable Kronig–Penney model.\n",{"path":6275,"title":6276,"module":6268,"summary":6277},"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method","The Tight-Binding Method","The opposite limit to nearly-free electrons builds bands from atomic orbitals. A Bloch sum of one orbital per site gives a dispersion set by the hopping integral between neighbours; the band widens from a sharp atomic level as the atoms approach. This lesson derives the s-band cosine dispersion, extends it to p-bands, and introduces Wannier functions as the localized dual of Bloch states.\n",{"path":6279,"title":6280,"module":6268,"summary":6281},"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics","Fermi Surfaces, Effective Mass, and Metals vs Insulators","Filling the bands settles which crystals conduct. A filled band carries no current, so a crystal with filled bands and a gap is an insulator, while a partly filled band makes a metal. This lesson derives the no-current theorem for a filled band, defines the Fermi surface and Harrison's construction, introduces holes and the effective mass from band curvature, and states the semiclassical equations of motion that lead to Bloch oscillations.\n",{"path":6283,"title":6284,"module":6285,"summary":6286},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions","Band Theory and Semiconductors","Semiconductors","The periodic lattice splits atomic levels into allowed energy bands separated by forbidden gaps. Whether the highest occupied band is full or partly full, and how wide the gap above it is, sorts every solid into conductor, insulator, or semiconductor. Doping adds donor or acceptor levels inside the gap, and a p-n junction built from doped regions gives the diode, the solar cell, the LED, and the transistor.\n",{"path":6288,"title":6289,"module":6285,"summary":6290},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors","Carrier Statistics: Intrinsic and Extrinsic Semiconductors","The number of mobile electrons and holes in a semiconductor follows from the density of states near each band edge and the Fermi-Dirac tail that reaches into it. This lesson derives the effective densities of states, the intrinsic concentration and its exponential gap dependence, the law of mass action, the temperature march of the Fermi level, and the freeze-out, saturation, and intrinsic regimes of a doped crystal.\n",{"path":6292,"title":6293,"module":6285,"summary":6294},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination","Carrier Transport and Recombination","Carriers move by drift in a field and by diffusion down a concentration gradient, the two tied together by the Einstein relation. This lesson derives mobility and its scattering-limited temperature dependence, the drift and diffusion currents, the continuity equations, band-to-band and trap-assisted recombination, and the minority-carrier lifetime and diffusion length that set the length scale of every junction device.\n",{"path":6296,"title":6297,"module":6285,"summary":6298},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction","The p-n Junction in Depth","Joining p-type and n-type silicon aligns their Fermi levels and leaves a depletion region of fixed charge with a built-in potential. This lesson derives the space-charge field and potential from Poisson's equation in the depletion approximation, the built-in voltage from Fermi-level alignment, the Shockley diode equation from minority-carrier diffusion, junction and diffusion capacitance, and the avalanche and Zener breakdown mechanisms.\n",{"path":6300,"title":6301,"module":6285,"summary":6302},"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics","Transistors and Optoelectronic Devices","Two junctions in series make a bipolar transistor whose thin base gives current gain; a gate over an oxide makes a MOSFET whose inversion channel switches digital logic. Run in reverse, a junction converts photons to current. This lesson derives the transistor current gain and the MOSFET channel current, then treats the LED, the diode laser, and the illuminated solar-cell characteristic.\n",{"path":6304,"title":6305,"module":6306,"summary":6307},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization","Dielectrics, Polarization, and the Local Field","Dielectrics and Ferroelectrics","An insulator responds to an electric field by polarizing. This lesson builds the macroscopic polarization and the dielectric constant, sorts the microscopic response into electronic, ionic, and orientational polarizability, and corrects the field an atom actually feels to the Lorentz local field E + P\u002F3 epsilon-0. The Clausius-Mossotti relation links the measured permittivity to the atomic polarizability, and the frequency dependence of each mechanism explains why the static and optical dielectric constants differ.\n",{"path":6309,"title":6310,"module":6306,"summary":6311},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics","Ferroelectrics, Piezoelectrics, and Structural Transitions","Some crystals carry a polarization with no applied field and switch it under a reversing field, tracing a hysteresis loop. This lesson develops the ferroelectric transition through the perovskite BaTiO3 displacive instability and its soft transverse-optical mode, builds the Landau free-energy theory of first- and second-order polar transitions, derives the Curie-Weiss divergence of the dielectric constant, and closes with piezoelectricity and pyroelectricity and their devices.\n",{"path":6313,"title":6314,"module":6315,"summary":6316},"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism","Diamagnetism and Paramagnetism","Magnetism in Solids","Every solid responds to a magnetic field. Filled shells give a small negative diamagnetic susceptibility from induced Larmor currents; localized moments give a positive Curie paramagnetism described by the Brillouin function, with the ground-state moment fixed by Hund's rules. The conduction electrons add a temperature-independent Pauli paramagnetism from the thermal shell near the Fermi surface, partly cancelled by Landau diamagnetism of their orbital motion.\n",{"path":6318,"title":6319,"module":6315,"summary":6320},"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism","Exchange and Ferromagnetism","Magnetic ordering at hundreds of kelvin cannot be dipolar; it is an exchange effect, the Coulomb repulsion sorted by the Pauli principle into a spin-dependent energy captured by the Heisenberg Hamiltonian. Weiss molecular-field theory replaces the exchange field by an average proportional to the magnetization, giving a self-consistent equation whose solution is spontaneous magnetization below a Curie temperature and a Curie–Weiss susceptibility above it. Itinerant ferromagnetism follows from the Stoner criterion on the band density of states.\n",{"path":6322,"title":6323,"module":6315,"summary":6324},"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains","Antiferromagnetism, Ferrimagnetism, and Domains","A negative exchange coupling orders neighboring spins antiparallel. Two-sublattice molecular-field theory gives a Néel temperature marked by a cusp in the susceptibility, and unequal sublattices leave a net moment — ferrimagnetism, the magnetism of the ferrites. A ferromagnet breaks into domains to reduce its magnetostatic energy, separated by Bloch walls whose width is set by the competition between exchange and magnetocrystalline anisotropy, and the irreversible motion of those walls produces the hysteresis loop.\n",{"path":6326,"title":6327,"module":6315,"summary":6328},"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons","Spin Waves and Magnons","The lowest excitations of a ferromagnet are not single flipped spins but collective precessions in which every moment tips slightly and its phase advances along the crystal. These spin waves have a quadratic dispersion at long wavelength, quantize into magnons obeying Bose statistics, and their thermal population removes magnetization as the Bloch T-to-the-three-halves law. Antiferromagnetic magnons disperse linearly, and inelastic neutron scattering measures both.\n",{"path":6330,"title":6331,"module":6332,"summary":6333},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology","Superconductivity: Phenomenology and BCS","Superconductivity","Below a critical temperature some materials lose all resistance and expel magnetic flux — the Meissner effect that defines the state. The isotope effect points to lattice vibrations, and BCS theory binds electrons into Cooper pairs through phonon exchange. The paired condensate opens an energy gap, quantizes magnetic flux, and drives the Josephson effects.\n",{"path":6335,"title":6336,"module":6332,"summary":6337},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect","London Theory and the Meissner Effect","A perfect conductor freezes the field it was cooled in; a superconductor expels it. The distinction needs a constitutive law beyond zero resistance — the two London equations — whose solution is exponential flux decay over the penetration depth. The same rigidity follows from a macroscopic condensate wave function, and the thermodynamics of the critical field fixes the condensation energy, the latent heat, and the specific-heat jump.\n",{"path":6339,"title":6340,"module":6332,"summary":6341},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory","Ginzburg–Landau Theory, Vortices, and Type-II","A complex order parameter and a free-energy expansion turn the superconducting transition into a Landau theory. Two lengths emerge — the coherence length and the penetration depth — whose ratio kappa sorts superconductors into type I and type II. Type-II materials admit flux as an Abrikosov lattice of vortices, each threading exactly one quantum h\u002F2e, between a lower and an upper critical field.\n",{"path":6343,"title":6344,"module":6332,"summary":6345},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory","Microscopic BCS Theory","A phonon-mediated attraction, however weak, binds two electrons above the Fermi sea — the Cooper problem shows the sea is unstable. The BCS variational ground state pairs all electrons near the Fermi surface and, through a self-consistent gap equation, opens an energy gap. Weak-coupling solution gives the exponential T_c and the universal ratios 2 Delta(0) = 3.53 k_B T_c and Delta C \u002F C_n = 1.43.\n",{"path":6347,"title":6348,"module":6332,"summary":6349},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc","Josephson Effects and Unconventional Superconductors","Two superconductors joined by a thin barrier carry a supercurrent set by their phase difference — the dc Josephson effect — and oscillate at 2eV\u002Fh under a voltage. A two-junction loop turns flux quantization into a magnetometer of single-quantum sensitivity. The cuprates superconduct in CuO2 planes with a doping-dependent dome, d-wave pairing, and a pseudogap that lie outside the phonon picture.\n",{"path":6351,"title":6352,"module":6353,"summary":6354},"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots","Quantum Wells, Wires, and Dots","Nanostructures","When a crystal is shrunk until one or more of its dimensions approaches the electron wavelength, the continuous bands of the bulk break into discrete subbands. Confining in one direction gives a quantum well with a step-like density of states, in two directions a quantum wire with inverse-square-root singularities, and in all three a quantum dot whose levels are sharp like an atom's. This lesson derives the density of states in each case and applies it to size-tunable dot emission and the Coulomb blockade of a single-electron transistor.\n",{"path":6356,"title":6357,"module":6353,"summary":6358},"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect","The 2D Electron Gas and the Integer Quantum Hall Effect","A two-dimensional electron gas in a strong perpendicular magnetic field has its continuous density of states collapse into macroscopically degenerate Landau levels. As the field is swept, the Hall resistance locks onto exact plateaus at h over an integer times e squared, while the longitudinal resistance drops to zero. This lesson derives the Landau levels and their degeneracy, explains the plateaus through disorder-localized states and current-carrying edge channels, and states why the von Klitzing constant is now a resistance standard.\n",{"path":6360,"title":6361,"module":6353,"summary":6362},"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology","The Fractional Quantum Hall Effect and Topological Order","When the lowest Landau level is only partly filled, the non-interacting theory predicts no gap, yet a plateau appears at filling one-third. It is a many-body effect: Coulomb repulsion selects a correlated ground state, the Laughlin wavefunction, whose excitations carry a fraction of the electron charge. This lesson builds the Laughlin state, introduces composite fermions that map the fractional effect onto an integer one, and explains how the quantum Hall effect brought the Chern number and topology into condensed-matter physics.\n",{"path":6364,"title":6365,"module":6353,"summary":6366},"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials","Graphene and Dirac Materials","Graphene is one atomic layer of carbon on a honeycomb lattice. A tight-binding calculation on its two-atom basis gives valence and conduction bands that touch at the corners of the Brillouin zone, where the dispersion is linear and the electrons behave as massless two-dimensional Dirac particles with a fixed speed. This lesson derives the Dirac cones, the Berry phase of pi and the sublattice chirality, the anomalous half-integer quantum Hall effect that follows, and how opening a gap in a Dirac cone points toward topological insulators.\n",{"path":6368,"title":6369,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":6371,"title":6372,"module":5,"summary":6373},"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model","Logic as a Mathematical Model of Deduction","Symbolic logic models deductive reasoning the way probability theory models chance: it keeps the form of a correct deduction and discards its content. A deduction is valid when its conclusion follows from the form of the premises alone, independent of what the non-logical words mean. Two models carry the subject — coarse sentential logic and fine first-order logic — and four questions organize it: logical consequence, methods of proof, the gap between provable and true, and the link between logic and computability. Tuples, relations, functions, equivalence classes, and cardinality supply the set-theoretic vocabulary every later chapter uses.\n",{"path":6375,"title":6376,"module":6377,"summary":6378},"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas","Formal Languages and Well-Formed Formulas","Sentential Logic","The language of sentential logic has an alphabet of sentence symbols, five connectives, and two parentheses, with formation rules that pick out the well-formed formulas. The wffs are the least set of expressions closed under the five formula-building operations, and every such generated set carries an induction principle.\n",{"path":6380,"title":6381,"module":6377,"summary":6382},"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies","Truth Assignments, Tautologies, and Consequence","A truth assignment fixes the sentence symbols true or false, and a recursion extends it uniquely to every formula. Satisfaction, tautologies, and tautological implication — one formula following semantically from others — rest on that extension, and the truth-table procedure decides implication for finite premise sets.\n",{"path":6384,"title":6385,"module":6377,"summary":6386},"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing","Unique Readability and a Parsing Algorithm","Parentheses keep a formula from being read two ways. The parenthesis lemmas and a top-down parsing algorithm recover a formula's structure and yield unique readability: every wff has exactly one formation tree, which is what makes the truth recursion well defined.\n",{"path":6388,"title":6389,"module":6377,"summary":6390},"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion","Induction and Recursion on Formulas","Two principles govern any set generated from initial elements by operations: prove a property of all its members by covering the initial elements and the closure steps, and define a function on it by recursion on structure. The recursion theorem needs the set to be freely generated, and unique readability supplies that condition for the well-formed formulas.\n",{"path":6392,"title":6393,"module":6377,"summary":6394},"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms","Sentential Connectives and Normal Forms","Every formula computes a Boolean function of its atoms, and Post's theorem gives the converse: every Boolean function is realized by a wff in disjunctive normal form, so the five connectives are more than enough. Minimal complete sets follow, down to the single connectives NAND and NOR, together with a method for proving a set of connectives incomplete.\n",{"path":6396,"title":6397,"module":6377,"summary":6398},"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits","Switching Circuits","A memoryless two-valued circuit computes a Boolean function, so every formula names a gate network and every network a formula. Cost and delay are read off the formula by recursion, and tautological equivalence and normal forms design and simplify circuits realizing a given specification.\n",{"path":6400,"title":6401,"module":6377,"summary":6402},"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness","Compactness and Effectiveness","The compactness theorem reduces satisfiability of an infinite set of formulas to its finite subsets, proved by extension to a maximal finitely satisfiable set and applied to color infinite graphs. Effectiveness fixes what \"decidable\" and \"effectively enumerable\" mean and settles the decidability of tautologyhood.\n",{"path":6404,"title":6405,"module":6406,"summary":6407},"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages","First-Order Languages","First-Order Languages and Structures","Sentential logic cannot see inside a simple statement, so it misses valid arguments that turn on quantifiers and predicates. A first-order language adds a quantifier, variables, and a chosen vocabulary of predicate, function, and constant symbols. Terms and well-formed formulas are built by recursion over this alphabet, and a variable occurs free or bound according to the quantifiers that reach it.\n",{"path":6409,"title":6410,"module":6406,"summary":6411},"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction","Structures, Truth, and Satisfaction","A structure interprets a language: a nonempty universe plus a meaning for every predicate, function, and constant symbol. Tarski's recursion defines when a structure satisfies a formula under a variable assignment, and hence when a sentence is true. From satisfaction we recover logical implication, validity, and logical equivalence for first-order logic.\n",{"path":6413,"title":6414,"module":6406,"summary":6415},"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence","Definability and Elementary Equivalence","Fix a structure and ask which relations a formula can pick out: the definable ones. A set of sentences picks out a class of structures, the elementary classes. Homomorphisms and isomorphisms compare structures, and the homomorphism theorem shows isomorphic structures satisfy the same sentences. Automorphisms bound what first-order logic can distinguish, giving a tool for proving relations undefinable.\n",{"path":6417,"title":6418,"module":6406,"summary":6419},"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing","Parsing, Substitution, and Substitutability","Every recursion on first-order syntax rests on unique readability. A parenthesis-counting function proves that terms and formulas decompose in exactly one way, and a parsing algorithm recovers the decomposition. Substituting a term for a free variable can capture it under a quantifier; the substitutability condition rules that out, and the substitution lemma trades syntactic substitution for a change of assignment.\n",{"path":6421,"title":6422,"module":6423,"summary":6424},"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus","A Deductive Calculus for First-Order Logic","The Deductive Calculus and Its Metatheorems","A proof must be finite and mechanically checkable. A Hilbert-style calculus meets both demands: six schemas of logical axioms, a single rule of inference (modus ponens), and the syntactic consequence relation they generate. Substitution and substitutability are defined by recursion, and the bridge theorem reduces deducibility to tautological implication from the axioms.\n",{"path":6426,"title":6427,"module":6423,"summary":6428},"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules","The Deduction Theorem and Derived Rules","Raw deductions from axioms are unusable by hand. The generalization theorem, the deduction theorem, contraposition, reductio ad absurdum, and rule T reduce the calculus to the moves of ordinary mathematics, each proved once to license a block of axiom-level steps. Generalization on constants and alphabetic variants handle the quantifier and substitution bookkeeping.\n",{"path":6430,"title":6431,"module":6423,"summary":6432},"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness","The Soundness Theorem","Soundness is the easy half of the match between proof and truth. Whatever the calculus deduces is logically implied, by an induction on deduction length that rests on one lemma: every logical axiom is valid. The only hard case, quantifier instantiation, needs the substitution lemma. The contrapositive corollary states that every satisfiable set is consistent.\n",{"path":6434,"title":6435,"module":6423,"summary":6436},"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency","The Completeness Theorem","Gödel's completeness theorem is the deep converse of soundness: whatever is logically implied can be deduced. Equivalently, every consistent set has a model. The Henkin proof manufactures that model out of syntax alone: add witnessing constants, extend to a maximal consistent set, and read a term model off the formulas it contains. Compactness and the enumerability theorem drop out.\n",{"path":6438,"title":6439,"module":6440,"summary":6441},"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem","Compactness and the Löwenheim–Skolem Theorems","Models, Compactness, and Theories","A set of first-order sentences has a model whenever each of its finite subsets does. This compactness theorem follows from completeness and yields the finiteness limitation, the downward and upward Löwenheim–Skolem theorems, models of every infinite cardinality, and nonstandard models of arithmetic.\n",{"path":6443,"title":6444,"module":6440,"summary":6445},"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity","Theories, Elementary Classes, and Categoricity","A theory is a set of sentences closed under logical consequence. Theories correspond to classes of models; a theory may be complete, axiomatizable, or finitely axiomatizable, and completeness together with axiomatizability yields decidability. The Łoś–Vaught test derives completeness from categoricity in a cardinal, applied to dense linear orders and to algebraically closed fields.\n",{"path":6447,"title":6448,"module":6440,"summary":6449},"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories","Interpretations Between Theories","An interpretation translates the vocabulary of one theory into formulas of another, relativizing quantifiers to a definable domain and mapping symbols to defining formulas. Defined function symbols meet a noncreativity criterion; the syntactic translation of formulas carries theoremhood forward, and a faithful interpretation transfers decidability and undecidability between theories.\n",{"path":6451,"title":6452,"module":6440,"summary":6453},"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis","Nonstandard Analysis","Compactness builds a model of the real ordered field containing infinite elements and nonzero infinitesimals. The transfer principle carries every first-order truth from the reals to this extension, the standard-part map collapses finite hyperreals back onto the reals, and continuity and the derivative are rederived by working with infinitely small quantities directly.\n",{"path":6455,"title":6456,"module":6457,"summary":6458},"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic","The Structure of Arithmetic and Definability","Number Theory and Definability","Number theory is the theory of one fixed structure, the natural numbers under successor, order, addition, multiplication, and exponentiation. Every number is named by a numeral, and a relation is definable when a single formula picks out exactly its tuples. The central gap separates the sentences true in that structure from those any reasonable set of axioms can prove.\n",{"path":6460,"title":6461,"module":6457,"summary":6462},"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor","Natural Numbers with Successor","The weakest reduct keeps only zero and successor. Its models are a standard chain together with disjoint copies of the integers, which makes the theory categorical in every uncountable power, hence complete and decidable. A quantifier-elimination procedure gives a practical decision method and shows a subset is definable if and only if it is finite or cofinite.\n",{"path":6464,"title":6465,"module":6457,"summary":6466},"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts","Reducts: Order, Addition, and Multiplication","Adding order to the successor reduct keeps decidability and makes the theory finitely axiomatizable; adding addition gives Presburger arithmetic, still decidable by quantifier elimination once congruence predicates are included, with definable sets exactly the eventually periodic ones. Multiplication is the break point: neither addition nor order can define it, and once it joins addition the theory stops being decidable.\n",{"path":6468,"title":6469,"module":6457,"summary":6470},"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability","A Subtheory of Number Theory and Representability","A finite set of eleven axioms, the recursion equations for successor, order, addition, multiplication, and exponentiation, already proves every true quantifier-free and existential sentence. Representability asks a theory to prove the right instances of a formula rather than merely make them true, and a relation is defined to be recursive exactly when some consistent finite theory represents it. Church's thesis identifies that with decidability, and closure under composition, minimization, and primitive recursion builds the catalog the incompleteness proofs need.\n",{"path":6472,"title":6473,"module":6474,"summary":6475},"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax","Arithmetization of Syntax","Arithmetization and the Incompleteness Theorems","Gödel numbering assigns a natural number to every symbol, expression, formula, and deduction, turning statements about syntax into statements about numbers. The syntactic operations — substitution, \"is a wff\", \"is an axiom\", \"d codes a deduction of a\" — come out primitive recursive and hence representable in the subtheory, which lets a formula of arithmetic talk about formulas, including itself.\n",{"path":6477,"title":6478,"module":6474,"summary":6479},"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability","Incompleteness, Undecidability, and Church's Theorem","The fixed-point lemma manufactures a sentence that talks about its own Gödel number. Pointed at truth it gives Tarski's theorem — arithmetic truth is not arithmetically definable; pointed at provability it gives Gödel's first incompleteness theorem and the undecidability of the theory of the natural numbers, and, applied to validity, Church's theorem that first-order logic is undecidable. The set of theorems of a recursive theory is only recursively enumerable — the gap between provable and true.\n",{"path":6481,"title":6482,"module":6474,"summary":6483},"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem","The Second Incompleteness Theorem","Consistency of a recursively axiomatized theory is itself an arithmetic sentence, built from a provability predicate. When the theory is strong enough to formalize its own reflection and modus ponens — the Hilbert–Bernays–Löb derivability conditions — it cannot prove that sentence unless it is inconsistent. Löb's theorem is the companion result, and set theory is the case that closes Hilbert's program.\n",{"path":6485,"title":6486,"module":6487,"summary":6488},"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions","Recursive Functions and Church's Thesis","Recursive Functions and Representability","The recursive functions are the formal counterpart of the effectively computable ones: built from three initial functions by composition, primitive recursion, and minimization, and equivalently the functions representable in a finitely axiomatized arithmetic. Church's thesis identifies the class with effective calculability; Kleene's normal form theorem and the unsolvable halting problem place the recursive sets strictly inside the recursively enumerable ones.\n",{"path":6490,"title":6491,"module":6487,"summary":6492},"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation","Representing Exponentiation and the β-Function","Coding finite sequences by prime-power exponents already assumes exponentiation, so representing exponentiation from addition and multiplication alone needs a different encoder. Gödel's β-function, built from a pairing function and the Chinese remainder theorem, reads back arbitrary finite sequences using only plus and times. This represents exponentiation in the addition-multiplication arithmetic and closes the last gap in the representability of every recursive syntactic operation.\n",{"path":6494,"title":6495,"module":6496,"summary":6497},"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages","Second-Order Languages","Second-Order Logic and Beyond","Second-order logic quantifies over relations and functions, not just individuals. Second-order Peano arithmetic and the second-order theory of the reals become categorical, and finiteness is definable by a single sentence. Compactness, completeness, and the Löwenheim–Skolem theorems all fail for the standard semantics.\n",{"path":6499,"title":6500,"module":6496,"summary":6501},"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic","Skolem Functions and Many-Sorted Logic","Skolem functions replace existential quantifiers with named witnesses, putting any first-order formula into a prenex form with all existentials — now over functions — pulled to the front. The Skolemized formula is equisatisfiable with the original, which reduces satisfiability to universal sentences and, through Herbrand expansions, to sentential logic. Many-sorted logic then adds several universes at once and reduces cleanly to ordinary one-sorted logic.\n",{"path":6503,"title":6504,"module":6496,"summary":6505},"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures","General (Henkin) Structures","General semantics reinterprets second-order logic by letting the predicate and function quantifiers range over a designated collection of relations and functions rather than all of them. Recast as many-sorted first-order logic with comprehension axioms, general second-order logic recovers a sound and complete calculus together with compactness and Löwenheim–Skolem, giving up the categoricity of the standard semantics. The ω-models of analysis show the trade.\n",{"path":6507,"title":6508,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6510,"title":6511,"module":5,"summary":6512},"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning","What Is Reinforcement Learning?","Reinforcement learning is learning what to do — how to map situations to actions — so as to maximize a numerical reward signal, discovered by trial and error rather than told. We set up the agent–environment loop, separate it from supervised and unsupervised learning, name the four elements (policy, reward, value, and an optional model), and train a tic-tac-toe player with a temporal-difference value update.\n",{"path":6514,"title":6515,"module":5,"summary":6516},"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl","A Brief History of Reinforcement Learning","The origins of reinforcement learning. Three threads — trial-and-error learning from animal psychology, optimal control and dynamic programming, and temporal-difference learning — ran independently for decades and merged around 1989 into the modern field. Replacing the lookup table with a neural network then produced deep reinforcement learning: DQN, AlphaGo, AlphaZero, MuZero, and RLHF.\n",{"path":6518,"title":6519,"module":5,"summary":6520},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","Multi-Armed Bandits","A bandit is reinforcement learning stripped to a single decision, repeated: no state, no consequences, only the tension between exploiting the arm that looks best and exploring the ones that might be better. We build up the whole toolkit — sample-average value estimates, the incremental update rule, ε-greedy, optimistic initialization, UCB, and gradient bandits — and use it to study exploration in isolation, the one problem that carries over to the full setting.\n",{"path":6522,"title":6523,"module":5,"summary":6524},"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms","Bandit Exploration Algorithms","Better ways to explore than picking at random. Upper-confidence-bound selection explores by optimism about what it hasn't measured; gradient bandits learn action preferences by stochastic gradient ascent on reward. We then add context to get the contextual bandit, the bridge to full RL, and measure everything by regret — where UCB1 and Thompson sampling reach the logarithmic optimum that fixed-ε greedy cannot.\n",{"path":6526,"title":6527,"module":5,"summary":6528},"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes","Markov Decision Processes","A Markov decision process is the formal interface between an agent and its environment: at each step the agent reads a state, chooses an action, and receives a reward and a next state. We fix that loop, the dynamics function that governs it, and the Markov property that makes the state sufficient; then turn goals into a scalar reward and rewards into a discounted return, with one notation that covers both episodic and continuing tasks.\n",{"path":6530,"title":6531,"module":5,"summary":6532},"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality","Value Functions and Optimality","A value function scores how good a state (or state–action pair) is under a policy: the expected return from there onward. Its defining property is the Bellman equation, a self-consistency condition linking a state's value to its successors' values, which we derive from the return and the dynamics. Pushing the same idea to the best-achievable value gives the Bellman optimality equations, whose solution yields an optimal policy — and whose intractability is what the rest of the course is about.\n",{"path":6534,"title":3511,"module":6535,"summary":6536},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","Tabular Solution Methods","Dynamic programming computes optimal policies when a perfect model of the MDP is given, by turning the Bellman equations into assignment statements. We build up iterative policy evaluation (the expected update), the policy improvement theorem, and the two classic algorithms that alternate them — policy iteration and value iteration — worked on the gridworld, a two-state MDP, Jack's car rental, and the gambler's problem.\n",{"path":6538,"title":6539,"module":6535,"summary":6540},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi","Dynamic Programming: Asynchronous DP and Generalized Policy Iteration","Policy and value iteration both sweep the entire state set on every pass, which is impossible once the state space is huge. This lesson loosens the schedule: asynchronous DP updates states in any order, generalized policy iteration names the alternation of evaluation and improvement that underlies nearly every RL method, and a look at efficiency and the curse of dimensionality places DP among the alternatives. We close past Sutton & Barto with prioritized sweeping, neuro-dynamic programming, value-iteration networks, and MuZero.\n",{"path":6542,"title":6543,"module":6535,"summary":6544},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods","Monte Carlo Methods","Monte Carlo methods learn value functions and optimal policies from complete sampled episodes, with no model of the environment: they simply average the returns that actually followed each state. We build prediction (first-visit and every-visit averaging), see why estimating action values forces the exploration question, and answer it two ways on-policy — exploring starts and epsilon-soft control. Throughout, Monte Carlo samples one whole trajectory to termination and never bootstraps.\n",{"path":6546,"title":6547,"module":6535,"summary":6548},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy","Monte Carlo Methods: Off-Policy Learning","On-policy Monte Carlo can only reach the best exploring policy, not the true optimum. Off-policy methods remove that ceiling by learning about a greedy target policy from data generated by a soft behavior policy, corrected with importance sampling. We derive the importance-sampling ratio, weigh ordinary against weighted estimators on real numbers, give the incremental off-policy algorithm, sharpen it with discounting-aware sampling, and close by placing Monte Carlo on the model\u002Fbootstrap map beside DP and temporal-difference learning.\n",{"path":6550,"title":6551,"module":6535,"summary":6552},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning","Temporal-Difference Learning","Temporal-difference learning is the one idea most central to reinforcement learning: learn a value directly from experience, like Monte Carlo, but update each guess toward the next guess before the episode ends, like dynamic programming. We derive the TD(0) prediction rule and its reward-prediction error, contrast its one-step backup with MC and DP, work the driving-home and random-walk examples, and show the batch-updating optimality that makes TD approximate the certainty-equivalence estimate.\n",{"path":6554,"title":6555,"module":6535,"summary":6556},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning","TD Control: Sarsa, Q-learning, and Double Learning","With TD prediction in hand, control follows the generalized-policy-iteration pattern with TD as the evaluation step. We build Sarsa (on-policy), Q-learning (off-policy, targeting the optimal policy), and Expected Sarsa that spans the two, then confront the maximization bias every max-based method inherits and fix it with Double Q-learning. We close past Sutton & Barto, following each one-step tabular update into its deep-RL descendant — DQN, Double DQN, and Rainbow.\n",{"path":6558,"title":6559,"module":6535,"summary":6560},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping","n-Step Bootstrapping","Monte Carlo waits for the full return; one-step TD bootstraps after a single reward. Between them lies a whole spectrum, indexed by one integer n: look ahead n real rewards, then bootstrap from the value n steps out. The n-step return unifies the previous two lessons, and — on the random walk — an intermediate n beats both extremes. We build the n-step return, the n-step TD update, the backup-diagram spectrum, and n-step Sarsa for control.\n",{"path":6562,"title":6563,"module":6535,"summary":6564},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods","n-Step Bootstrapping: Off-Policy Methods","Taking the n-step family off-policy raises the same importance-sampling questions Monte Carlo did, now over a window of exactly n actions. We reweight n-step returns by the policy ratio, watch the ratio product inflate variance on real numbers, then build the tree-backup algorithm that learns off-policy with no ratios at all — and finally n-step Q(sigma), one algorithm whose per-step switch recovers Sarsa, tree backup, and Expected Sarsa as special cases.\n",{"path":6566,"title":6567,"module":6535,"summary":6568},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning","Planning and Learning","Planning and learning are the same operation run on two kinds of experience. A model turns states and actions into simulated transitions; planning backs up values over that simulated experience exactly as learning backs them up over real experience. We build the Dyna architecture that interleaves acting, model-learning, direct RL, and planning in one loop, trace a single Dyna-Q step by hand, and patch the architecture for when the model goes stale.\n",{"path":6570,"title":6571,"module":6535,"summary":6572},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time","Planning: Focusing Updates and Decision-Time Search","Dyna plans by replaying remembered transitions, but sampling them uniformly wastes most of the effort. This lesson sharpens planning: prioritized sweeping works backward from states whose value just changed, expected versus sample updates weigh thoroughness against cost, and trajectory sampling and real-time DP focus updates on the states the policy actually visits. We trace Dyna forward to model-based deep RL, then turn to decision-time planning — heuristic search, rollouts, and Monte Carlo Tree Search.\n",{"path":6574,"title":6575,"module":6535,"summary":6576},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning","Planning need not build a global policy. Decision-time planning runs a fresh lookahead every time a state arrives and returns just one action, then throws the work away. We start from real-time dynamic programming — asynchronous value iteration on the states the agent actually visits — then move through heuristic search and rollout algorithms, each a one-step policy improvement applied on the fly to the current state.\n",{"path":6578,"title":6579,"module":6535,"summary":6580},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search","Monte Carlo Tree Search","Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value estimates across simulations and steers later ones toward promising branches. We work through the four steps — selection, expansion, simulation, backup — the UCT selection rule computed on real numbers, the asymmetric growing tree, and the full pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo, AlphaZero, and MuZero, where a learned network stands in for the leaf value and the rollout.\n",{"path":6582,"title":6583,"module":6584,"summary":6585},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction","On-Policy Prediction with Approximation","Approximate Solution Methods","Every tabular method so far stored one number per state, which fails once the state space is large or continuous. We replace the table with a parameterized value function $\\hat v(s,\\mathbf{w})$, define the mean squared value error it should minimize under the on-policy distribution, and derive stochastic- and semi-gradient learning rules — the semi-gradient TD(0) update that bootstraps and so is not a true gradient. Linear methods make the analysis clean and give the TD fixed point; feature construction (polynomials, Fourier basis, coarse and tile coding, RBFs) supplies the vectors $\\mathbf{x}(s)$, and neural networks are the nonlinear bridge to deep RL.\n",{"path":6587,"title":6588,"module":6584,"summary":6589},"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear","Feature Construction and Nonlinear Approximation","Linear methods are only as good as the feature vectors $\\mathbf{x}(s)$ fed to them, and this lesson builds those vectors. Polynomials and the Fourier basis turn a state's coordinates into smooth global features; coarse coding, tile coding, and radial basis functions cover a continuous space with overlapping local receptive fields whose size sets the reach of generalization. Then we stop designing features by hand: a neural network learns the representation itself by gradient descent, trading the convergence guarantees of the linear case for expressiveness — the bridge to deep reinforcement learning.\n",{"path":6591,"title":6592,"module":6584,"summary":6593},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control","On-Policy Control with Approximation","Prediction learned a value function from features; control learns to act. We carry semi-gradient methods over to action values $\\hat q(s,a,\\mathbf{w})$, giving episodic semi-gradient Sarsa and its n-step form, and solve Mountain Car by descending a cost-to-go surface. In the continuing case, function approximation makes discounting unable to affect which policy is best, so we replace it with the average-reward setting — the differential return, differential value functions, and differential semi-gradient Sarsa.\n",{"path":6595,"title":6596,"module":6584,"summary":6597},"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control","Average-Reward Control for Continuing Tasks","With function approximation, discounting has no effect on a continuing task: averaged over the on-policy distribution, the discounted objective equals the average reward times a policy-independent constant, so $\\gamma$ cannot change which policy is best. This lesson replaces discounting with the average-reward setting — the long-run reward rate $r(\\pi)$, the differential return that measures each state's transient advantage over that rate, differential value functions and TD error, and differential semi-gradient Sarsa, the control method for continuing tasks that never invokes a discount factor.\n",{"path":6599,"title":6600,"module":6584,"summary":6601},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad","Off-Policy Methods and the Deadly Triad","Off-policy learning with function approximation is where the convergence guarantees of reinforcement learning fail. We extend the tabular off-policy updates to semi-gradient form with per-step importance sampling, show Baird's counterexample driving the weights to infinity, and identify the cause: the deadly triad of function approximation, bootstrapping, and off-policy training — any two are safe, all three can diverge. The divergence is not caused by sampling noise: a fully synchronous dynamic-programming update blows up just the same, which is what makes the triad a structural hazard rather than a fluke.\n",{"path":6603,"title":6604,"module":6584,"summary":6605},"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td","Value-Function Geometry and Gradient-TD Methods","Why does the deadly triad diverge, and how do you stop it? This lesson develops the geometry that explains the failure: value functions as vectors, the projection operator onto the representable subspace, and the split between the Bellman error, the value error, and the projected Bellman error: the three objectives have different minimizers. The projected Bellman error is the learnable one, and Gradient-TD methods (GTD2, TDC) do true stochastic gradient descent on it, staying stable even off-policy at $O(d)$ cost. Emphatic TD reweights states instead, and a survey of variance-reduction techniques closes the gap between stability and usable learning.\n",{"path":6607,"title":6608,"module":6584,"summary":6609},"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces","Eligibility Traces","n-step methods unify TD and Monte Carlo by storing the last n feature vectors; eligibility traces do the same job with a single short-term memory vector. The λ-return averages every n-step return under a geometric weighting; the forward view looks ahead to that average, and the backward view produces nearly the same updates online through a decaying trace vector. We build the λ-return, TD(λ) with its trace, the two ways λ recovers TD(0) and Monte Carlo, a note on the exact equivalence of true online TD(λ), and Sarsa(λ) for control.\n",{"path":6611,"title":6612,"module":6584,"summary":6613},"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda","True Online TD(λ) and Sarsa(λ)","Plain TD(λ) makes the forward and backward views nearly agree; this lesson closes the gap. True online TD(λ) uses a dutch trace and a small correction term to produce exactly the same weight sequence as the online λ-return algorithm, at the same memory and only a constant factor more compute — the sharpest statement of the forward\u002Fbackward duality. The whole apparatus then lifts to control unchanged: Sarsa(λ) threads a single delayed reward back along an entire trajectory in one sweep, and the λ-weighting reappears in modern deep RL as generalized advantage estimation.\n",{"path":6615,"title":6616,"module":6584,"summary":6617},"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods","Policy Gradient Methods","Every method so far learned values and read a policy off them. Policy gradient methods drop the intermediary: parameterize the policy directly and climb the performance gradient. We build the softmax-in-preferences parameterization, prove the policy gradient theorem that makes the gradient computable without the unknown state distribution, and derive REINFORCE and its variance-cutting state-value baseline — the launch point for the bootstrapping actor-critic that follows.\n",{"path":6619,"title":6620,"module":6584,"summary":6621},"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions","Actor-Critic Methods and Continuous Actions","REINFORCE with a baseline learns a value function but never bootstraps; this lesson adds the bootstrapping critic that completes the actor-critic architecture. The critic scores each transition into a single TD error that steers both the actor's policy step and its own value step, trading a little bias for much lower variance and fully online, continuing-task learning. The policy gradient theorem carries over unchanged to the average-reward setting, a Gaussian policy handles real-valued actions with self-tuning exploration, and the natural policy gradient leads straight to TRPO, PPO, and the deep actor-critic methods that train today's agents.\n",{"path":6623,"title":6624,"module":6584,"summary":6625},"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods","Least-Squares TD","Semi-gradient TD spends one cheap step per example and needs many examples; this lesson makes the opposite tradeoff. Least-Squares TD (LSTD) accumulates the matrices $\\mathbf{A}$ and $\\mathbf{b}$ and solves the TD fixed point $\\mathbf{w} = \\mathbf{A}^{-1}\\mathbf{b}$ directly, using the Sherman-Morrison identity to maintain the inverse in $O(d^2)$ — the most data-efficient linear TD method, at a quadratic cost. We work a solve by hand, weigh the quadratic cost against semi-gradient TD's cheap steps, and note that LSTD never forgets — a problem in control, where least-squares policy iteration is the natural extension.\n",{"path":6627,"title":6628,"module":6584,"summary":6629},"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods","Memory-Based and Kernel Methods","Least-squares TD spent more compute to extract more from each example; this lesson drops the parametric form entirely. Memory-based methods store training examples untouched and answer a query locally at retrieval time — nearest neighbor, weighted average, locally weighted regression — so accuracy grows with the data and effort concentrates where the agent actually goes. Kernel-based methods weight stored examples by a similarity kernel $k(s,s')$, and every linear method turns out to be a kernel method. Interest and emphasis, finally, make the on-policy weighting itself a design choice, aiming scarce approximation capacity at the states that matter.\n",{"path":6631,"title":6632,"module":6584,"summary":6633},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces","Off-Policy Eligibility Traces","Eligibility traces meet off-policy learning and function approximation — the corner where stability gets hard. We first let the bootstrapping and discounting parameters vary with state, so a single generalized return covers episodic and continuing tasks and folds termination into the discount. Then we fold the per-decision importance ratio into the trace with a control-variate correction, and build Watkins's Q(λ) and its importance-sampling-free successor Tree-Backup(λ) — all correct in expectation, but still semi-gradient, so the deadly triad and its fixes wait for the next lesson.\n",{"path":6635,"title":6636,"module":6584,"summary":6637},"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces","Stable Off-Policy Methods with Traces","Off-policy traces get the expected target right, but with $\\lambda \u003C 1$ they bootstrap, so off-policy plus bootstrapping plus function approximation is the deadly triad and the weights can diverge. This lesson carries the two one-step fixes to traces: GTD(λ) and GQ(λ) add a second weight vector and a gradient correction for true gradient descent on the projected Bellman error, while Emphatic TD(λ) reweights updates through a followon trace and interest to recover the on-policy stability. It closes with the implementation reality that traces are cheap because they are sparse, and with Retrace and V-trace — the clipped-ratio descendants that make off-policy traces work at deep-RL scale.\n",{"path":6639,"title":5957,"module":6640,"summary":6641},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks","Deep Reinforcement Learning","Deep Q-networks replace the linear value function with a neural network $Q(s,a;\\mathbf{w})$ and confront the fact that a nonlinear approximator, off-policy bootstrapping, and correlated online data — the deadly triad — make naive Q-learning diverge. DQN counters this empirically with two stabilizers: an experience replay buffer that decorrelates and reuses samples, and a periodically-frozen target network that fixes the bootstrap target. We derive the DQN loss and gradient, walk through the Atari convolutional architecture and its results, and then add the three refinements that define modern value-based deep RL — Double DQN, dueling networks, and prioritized experience replay.\n",{"path":6643,"title":6644,"module":6640,"summary":6645},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements","DQN Improvements: Double, Dueling, and Prioritized Replay","Three refinements that turn plain DQN into the standard modern value-based agent, each touching a different part of the system. Double DQN fixes the maximization bias in the target by splitting action selection from evaluation; dueling networks restructure the network around a state value and per-action advantages; prioritized replay changes which transitions are learned from. We close with Rainbow, which combines them, and the distributional view that predicts the whole return distribution rather than its mean.\n",{"path":6647,"title":6648,"module":6640,"summary":6649},"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo","Actor–Critic and GAE","Make the actor and the critic deep networks and the policy-gradient architecture becomes modern deep RL. We build the neural actor-critic, the advantage estimate that replaces the raw return, and Generalized Advantage Estimation as a λ-blend of n-step advantages, then the parallel-worker methods A3C and A2C that decorrelate on-policy data. The step-size constraints — trust regions, PPO, and the continuous-control family — follow in the next lesson.\n",{"path":6651,"title":6652,"module":6640,"summary":6653},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control","PPO and Continuous Control","Keeping the policy-gradient step from destroying the policy, and the algorithms that result. Trust-region optimization bounds each update by a KL constraint; PPO keeps that goal but replaces the second-order machinery with a first-order clip on the probability ratio, which is why it is the modern default and the optimizer inside RLHF. We then tour the off-policy continuous-control family — DDPG, TD3, and SAC — and where actor-critic went at scale, from OpenAI Five to language-model alignment.\n",{"path":6655,"title":6656,"module":6640,"summary":6657},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","Case Studies: Learning to Play","The game-playing systems that turned reinforcement learning from a theory into a track record: Samuel's checkers player, TD-Gammon, Watson's Daily-Double wagering, a reinforcement-learning memory controller, DQN, and AlphaGo through AlphaGo Zero. Read as a set they draw one line — a value function, learned by self-play or interaction, refined by search, carried by a deep network — that runs from a 1959 checkers program to superhuman Go.\n",{"path":6659,"title":6660,"module":6640,"summary":6661},"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games","Reinforcement Learning Beyond Games","The same value-and-reward machinery, pointed at problems with no opponent. Web personalization as a contextual bandit and then a full MDP for life-time value; thermal soaring, where a glider learns to climb on turbulent air and reward design does most of the work; and the industrial-scale systems that carried the same design past Sutton & Barto — AlphaStar, OpenAI Five, GT Sophy, and RLHF, where the reward itself is learned from human preference.\n",{"path":6663,"title":6664,"module":6640,"summary":6665},"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers","Frontiers: Beyond the Standard MDP","The standard MDP fixes three things — state, reward, and single-step actions — and this lesson loosens two of them. We generalize the value function into a general value function that predicts any signal, and use those predictions as auxiliary tasks that shape representations; we extend actions in time with the options framework; and we treat state as a construction the agent builds from a stream of observations. Reward design and the open problems follow in the next lesson.\n",{"path":6667,"title":6668,"module":6640,"summary":6669},"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems","Reward Design and Open Problems","How to design a reward signal that encodes the intended goal — sparse reward, shaping, and reward hacking — and the problems the whole tabular, approximate, and deep arc leaves unsolved. We close with how the frontiers were pushed after Sutton & Barto: auxiliary tasks, learned options, intrinsic-motivation bonuses, learned world models, and offline RL, then the two concerns of reward hacking and safety that any real-world agent must address.\n",{"path":6671,"title":6672,"module":6673,"summary":6674},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow","Sharpening DQN: Improvements and the Distributional Idea","Modern Deep Reinforcement Learning","In the years after the 2015 DQN paper, a stream of focused improvements each fixed one weakness of the baseline without disturbing its frame. This lesson recaps five that keep the scalar $Q$-value — Double DQN, multi-step returns, dueling networks, prioritized replay, and NoisyNets, each changing a different slot of the same Q-learning loop — then develops the sixth, distributional RL, which changes the objective itself: learn the whole return distribution $Z(s,a)$. We build the distributional Bellman equation and the C51 categorical algorithm, projection step and all, worked end to end on real numbers. A companion lesson takes up QR-DQN, Rainbow, and the modern distributional line.\n",{"path":6676,"title":6677,"module":6673,"summary":6678},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2","Distributional RL and Rainbow","A companion to the DQN improvements lesson. C51 fixed the return atoms and learned their probabilities; QR-DQN does the reverse — fix the probabilities, learn the values — which removes the projection and trains with a quantile loss. We cover why the distribution helps even when you act on the mean, then assemble Rainbow: all six improvements in one Q-learning loop, with the component ablation that shows each one's real weight. The distributional line then runs on through IQN, FQF, and Agent57, the first agent to beat the human baseline on all 57 Atari games.\n",{"path":6680,"title":6681,"module":6673,"summary":6682},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control","Continuous Control: DDPG and TD3","When actions are real-valued, the $\\arg\\max_a Q(s,a)$ in Q-learning becomes an optimization problem on every step. This lesson builds the off-policy actor-critic family that sidesteps it: the deterministic policy gradient and DDPG, which replaces the max with a learned actor, and the three fixes of TD3 that counter the value overestimation DDPG inherits. A companion lesson takes up SAC's maximum-entropy objective and the methods built on this template.\n",{"path":6684,"title":6685,"module":6673,"summary":6686},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2","Continuous Control: SAC and Beyond","A companion to the DDPG and TD3 lesson. Where those actors are deterministic and explore with bolted-on noise, soft actor-critic (SAC) changes the objective itself: maximize return plus the entropy of the policy, so exploration becomes intrinsic and the agent stays robust. We develop the maximum-entropy objective, the reparameterized squashed-Gaussian actor, and automatic temperature tuning, then survey the methods built on this off-policy template — distributional critics (D4PG), critic ensembles (REDQ), and control from pixels (DrQ, RAD).\n",{"path":6688,"title":6689,"module":6673,"summary":6690},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl","Model-Based Deep RL: Sample Efficiency and PETS","A model turns experience into imagined planning. This lesson makes the sample-efficiency case for learning a dynamics model, works through why a learned model's errors compound over the planning horizon, and builds the most direct model-based method: PETS plans online with a probabilistic ensemble under model-predictive control, distrusting the model exactly where its members disagree. A companion lesson takes up latent world models (Dreamer) and MuZero.\n",{"path":6692,"title":6693,"module":6673,"summary":6694},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2","Model-Based Deep RL: World Models, Dreamer, and MuZero","A companion to the PETS lesson. PETS plans in the environment's native state space; these methods change what the model represents. World Models and Dreamer learn a compact latent state and do almost all their learning by imagining inside it, with value gradients flowing through the differentiable dynamics. MuZero predicts neither states nor pixels — only the reward, value, and policy that MCTS reads — and plans with search against that learned model, AlphaZero without the rules. We close with MBPO, TD-MPC, and EfficientZero.\n",{"path":6696,"title":6697,"module":6673,"summary":6698},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration","Exploration in Deep RL: Novelty as Reward","When the state space is enormous and reward is rare, ε-greedy amounts to a random walk that almost never reaches the first reward. This lesson scales the bandit's exploration ideas up to deep RL through the dominant approach — manufacture a reward for novelty and let the agent chase it: optimism and pseudo-counts from density models, and intrinsic motivation and curiosity (the Intrinsic Curiosity Module and Random Network Distillation). A companion lesson takes up posterior sampling, Go-Explore, and the modern methods.\n",{"path":6700,"title":6701,"module":6673,"summary":6702},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2","Exploration in Deep RL: Posterior Sampling and Go-Explore","A companion to the novelty-as-reward lesson. Pseudo-counts and curiosity reward the unfamiliar after the agent stumbles into it; this lesson covers two ideas that go further. Bootstrapped DQN keeps an ensemble that approximates a posterior over value functions and explores by committing to one sampled hypothesis per episode — the deep, directed exploration ε-greedy cannot manage. Go-Explore remembers and returns to the frontier, defeating detachment and derailment to solve Montezuma's Revenge. We close with episodic memory (Never Give Up), Agent57, and model-based exploration.\n",{"path":6704,"title":6705,"module":6673,"summary":6706},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl","Offline RL: The Problem and Value-Based Fixes","Offline reinforcement learning learns a policy from a fixed logged dataset with no further environment interaction — off-policy learning pushed to the extreme, and it breaks for the extreme version of the same reason. Bootstrapping queries the value function at out-of-distribution actions the data never covers, those errors are optimistic, and with no online feedback to correct them they compound through the Bellman backup. This lesson sets up the failure and off-policy evaluation, then builds the first two families of pessimistic fixes: policy constraint (BCQ) and conservative value estimation (CQL). A companion lesson takes up implicit methods, model-based offline RL, and Decision Transformer.\n",{"path":6708,"title":6709,"module":6673,"summary":6710},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2","Offline RL: Implicit Methods, Sequence Models, and Beyond","A companion to the offline-RL problem lesson. Policy constraint and conservative value estimation both still query a learned value function; implicit methods (IQL) avoid querying it off the data at all, using an in-sample expectile backup. We then build pessimism into a learned model (MOPO, COMBO) and drop bootstrapping entirely with Decision Transformer's return-conditioned sequence modeling, closing with offline-to-online fine-tuning, diffusion planners, and the offline view of RLHF. The one rule throughout: without online correction, be pessimistic about what you cannot verify.\n",{"path":6712,"title":6713,"module":6673,"summary":6714},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl","Imitation Learning: Cloning, DAgger, and Inverse RL","When a reward is hard to specify but an expert is easy to watch, learn from demonstrations instead. Behavioral cloning treats control as supervised learning of the expert's state-to-action map, and fails through compounding error: small mistakes carry the agent off the expert's distribution, where it was never trained. DAgger fixes the mismatch by querying the expert on the learner's own states. Inverse RL instead recovers the reward the expert seems to optimize — an ill-posed problem that maximum-entropy IRL disambiguates. A companion lesson casts imitation as adversarial occupancy matching (GAIL, AIRL).\n",{"path":6716,"title":6717,"module":6673,"summary":6718},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2","Imitation as Adversarial Matching: GAIL and AIRL","A companion to the imitation-learning lesson. If the point of recovering a reward is only to re-run RL and match the expert, you can skip the reward and match the behavior directly. GAIL casts imitation as a GAN — a discriminator separating expert from learner state-action pairs supplies the reward a policy-gradient method optimizes — matching occupancy measures without ever naming a reward. AIRL reads a transferable reward back out of the discriminator. We compare all four methods and close with reward models in RLHF, scaled cloning, and diffusion policies.\n",{"path":6720,"title":6721,"module":6673,"summary":6722},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl","Multi-Agent RL: Markov Games and Centralized Training","With more than one learning agent in an environment, each agent's world becomes non-stationary because the others are changing too. This lesson builds the Markov-game generalization of the MDP, diagnoses non-stationarity as the central obstacle, shows why the naive baselines fail, and develops the dominant fix — centralized training with decentralized execution (MADDPG, VDN, QMIX). A companion lesson takes up self-play, the landmark game-playing systems, and the equilibrium concepts that define what \"solved\" means.\n",{"path":6724,"title":6725,"module":6673,"summary":6726},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2","Multi-Agent RL: Self-Play and Solution Concepts","A companion to the Markov-games lesson. In the purely competitive setting, an agent can generate its own training curriculum by playing against copies of itself — self-play, the method behind AlphaGo, OpenAI Five, and AlphaStar. We develop why self-play produces an ever-improving opponent, the systems it built, and then the equilibrium solution concepts (Nash, correlated, coarse-correlated) that define what \"solved\" means once there is an opponent, closing with PSRO, MAPPO, and the language-model-agent frontier.\n",{"path":6728,"title":6729,"module":6673,"summary":6730},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl","Hierarchical RL: Options and the Option-Critic","Flat RL cannot explore a long horizon: reaching reward through hundreds of primitive actions is exponentially unlikely, and every credit-assignment update crawls one step at a time. Hierarchy breaks one hard long-horizon problem into many short ones. This lesson develops temporal abstraction — the options framework and its semi-Markov view, and learning options end to end with the option-critic. A companion lesson takes up goal-conditioned manager\u002Fworker hierarchies (FeUdal Networks and HIRO), hindsight relabeling, and unsupervised skill discovery.\n",{"path":6732,"title":6733,"module":6673,"summary":6734},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2","Hierarchical RL: Goal-Conditioned Hierarchies and Skills","A companion to the options lesson. Options package a behavior; goal-conditioned hierarchies instead give the top level an explicit language of goals — a manager proposes a target state or a latent direction, and a worker is rewarded for reaching it (FeUdal Networks, HIRO). We develop that architecture, the hindsight relabeling that lets it learn from sparse reward, and unsupervised skill discovery (DIAYN) that learns a repertoire of behaviors with no reward at all. The shared idea throughout: shorten the horizon by inserting a level that decides less often.\n",{"path":6736,"title":6737,"module":6673,"summary":6738},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models","RLHF and Language Models","A language model trained to predict the next token is fluent but not helpful, honest, or harmless — the objective it was optimized for is not the objective we want. RLHF closes that gap by turning the one thing humans do reliably, comparing two outputs, into a reward. We build the three-stage pipeline: supervised fine-tuning, a Bradley-Terry reward model fit to preference pairs, then PPO against that reward with a KL penalty keeping it near the reference policy. We then cover reward hacking and why the KL penalty matters, Direct Preference Optimization, which folds the reward model into a single classification loss, and the RLAIF and verifiable-reward variants. This pipeline is what makes the largest models usable as assistants.\n",{"path":6740,"title":6741,"module":6673,"summary":6742},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps","Partial Observability: POMDPs and the Belief State","Drop the assumption that the agent sees the state. It sees an observation, a partial and noisy function of a hidden state, and one observation is no longer a Markov signal. This lesson builds the POMDP tuple, shows that the belief state — the posterior over hidden states — is a sufficient statistic that turns a POMDP back into an MDP over beliefs, and works the Bayes-filter belief update step by step. A companion lesson explains why exact planning is intractable and develops the deep-RL answer of recurrent, history-based policies.\n",{"path":6744,"title":6745,"module":6673,"summary":6746},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2","Partial Observability: Planning and Recurrent Policies","A companion to the belief-state lesson. In principle a POMDP reduces to an MDP over beliefs; in practice two obstacles block that. Exact planning over the belief simplex is intractable — the value function is piecewise-linear-and-convex with a number of pieces that can explode — and computing the belief needs a model the agent rarely has. This lesson develops the intractability, the point-based approximations that address it, and the deep-RL answer: make the policy a function of history with a recurrent network (DRQN, R2D2), with frame-stacking, attention, and world-model latents as learned beliefs.\n",{"path":6748,"title":6749,"module":6673,"summary":6750},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl","Safe and Constrained RL: The CMDP and Policy Methods","Maximizing a scalar reward is not the same as behaving well: a capable optimizer will find and exploit any gap between the reward and what its designer actually meant, a failure called specification gaming or reward hacking. The remedy is to add explicit cost constraints — the constrained MDP — maximizing return subject to an expected-cost budget. This lesson builds the core toolkit: the CMDP itself, Lagrangian primal-dual methods that learn a multiplier on the constraint (RCPO), and constrained policy optimization (CPO) with its trust-region cost bound. A companion lesson covers risk-sensitivity, safe exploration, and the alignment framing.\n",{"path":6752,"title":6753,"module":6673,"summary":6754},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2","Safe RL: Risk, Safe Exploration, and Alignment","A companion to the constrained-MDP lesson. Constraining the mean cost is not enough: a policy safe on average can be catastrophic in the tail, and a policy safe at convergence can violate its limits wildly while learning. This lesson optimizes the tail with risk-sensitive objectives (CVaR), then makes exploration itself safe with shields, Lyapunov methods, and safety layers that project unsafe actions onto the feasible set — closing with benchmarks, safe RLHF, robustness, and the alignment framing that ties safety back to the problem of incompletely specified reward.\n",{"path":6756,"title":6757,"module":6673,"summary":6758},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization","Meta-RL and Generalization","An agent that masters one task often fails on the next; it has overfit to a single environment. This lesson treats fast adaptation as a meta-problem over a distribution of tasks: meta-train so that a few episodes at meta-test time suffice. We cover the two families — optimization-based (MAML learns an initialization) and context-based (RL-squared and PEARL infer a latent task) — the exploration cost of adaptation, and the parallel problem of generalization: why deep RL memorizes environments and what fixes it (domain randomization, procedural generation, augmentation, regularization). It closes on foundation models and sequence-model agents as the generalist endpoint.\n",{"path":6760,"title":6761,"module":6762,"summary":6763},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement","The Psychology of Reinforcement","Reinforcement Learning in Minds and Brains","Reinforcement learning is both an engineering method and a theory of how animals learn. The prediction\u002Fcontrol split of the algorithms mirrors the psychologist's split between classical and instrumental conditioning. We trace the correspondence: the Rescorla–Wagner model as a prediction-error rule that explains blocking, its real-time TD extension, Thorndike's Law of Effect behind trial-and-error control, and the habitual\u002Fgoal-directed distinction that maps onto model-free versus model-based learning.\n",{"path":6765,"title":6766,"module":6762,"summary":6767},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control","The Psychology of Reinforcement: Instrumental Control","Classical conditioning was prediction; instrumental conditioning is control. Thorndike's Law of Effect is trial-and-error control — selection plus association, search plus memory — and Skinner's shaping and schedules are reward engineering. The habitual\u002Fgoal-directed distinction maps onto model-free versus model-based control, dissociated by outcome devaluation and arbitrated by uncertainty. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and secondary reinforcers of animal-learning theory are eligibility traces and value functions.\n",{"path":6769,"title":6770,"module":6762,"summary":6771},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error","Dopamine and the TD Error","The TD error was invented as an algorithm; a decade later it turned out to closely describe the firing of the brain's dopamine neurons. We follow Schultz's experiments — dopamine fires at an unpredicted reward, shifts to the earliest predictive cue, and dips below baseline when a predicted reward is withheld — and match each result to the TD error term by term. We then read the basal ganglia as a neural actor–critic with dopamine as its shared training signal, and close on addiction as a hijacking of that signal.\n",{"path":6773,"title":6774,"module":6762,"summary":6775},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain","Dopamine in the Brain: The Neural Actor–Critic","If phasic dopamine is a TD error, where does it go and what does it change? We follow the axons into the basal ganglia, read the corticostriatal synapse as the place where state, action, and error meet, and map the ventral and dorsal striatum onto the critic and the actor of an actor–critic. Addiction becomes a broken cancellation in the same learning signal, and distributional dopamine extends the scalar RPE into a population code.\n",{"path":6777,"title":6778,"module":6762,"summary":6779},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition","Animal Learning and Cognition","Three classic associative phenomena turn out to be reinforcement-learning mechanisms seen in behavior. Blocking says learning is driven by prediction error, not co-occurrence, and reduces to least-squares regression fitting a collinear feature. Higher-order conditioning and conditioned reinforcement make a value estimate a secondary reinforcer — bootstrapping in an animal. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and goal gradients of Pavlov and Hull are eligibility traces and TD-learned value functions.\n",{"path":6781,"title":6782,"module":6762,"summary":6783},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning","Cognitive Maps and Model-Based Learning","Tolman's rats learned the layout of a maze with no reward, then used it the moment food appeared — latent learning, a cognitive map, and the behavioral face of model-based reinforcement learning. The map is learned by system identification (stimulus–stimulus associations), which fills in whether or not reward is present, and queried by planning, which re-solves a route from a single changed reward. The successor representation sits between cache and model, and hippocampal predictive maps and scaled-up world models carry the same idea into brain and machine.\n",{"path":6785,"title":6786,"module":6762,"summary":6787},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement","The Neuroscience of Reinforcement","The dopamine story is one contact point between reinforcement learning and the brain; this lesson fills in the surrounding neuroscience so the mapping stands on its own. We build a working primer of neurons, synapses, and neuromodulation; separate four signals that casual usage conflates — reward, reinforcement, value, and prediction error; and read the actor and critic as corticostriatal synapses updated by two- and three-factor rules, grounded in spike-timing-dependent and reward-modulated plasticity.\n",{"path":6789,"title":6790,"module":6762,"summary":6791},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems","The Brain's Several Learning Systems","The actor's three-factor rule has an ancestor in Klopf's hedonistic neuron — a single cell as a reinforcement-seeking agent — and a bacterium's run-and-twiddle shows the Law of Effect with no synapses at all. Teams of such neurons implement policy gradient collectively, the broadcast reward replacing backpropagation. And the brain is not only model-free: outcome devaluation, prefrontal value coding, and hippocampal forward sweeps localize a model-based system. The recurring conclusion is that the brain is several interacting learning systems, not one algorithm.\n",{"path":6793,"title":5949,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6795,"title":6796,"module":5,"summary":6797},"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai","What Is Artificial Intelligence?","Eight definitions of AI fall into a two-by-two grid: think versus act, and measure success against human performance versus an ideal standard of rationality. We work through all four schools — the Turing test, cognitive modelling, the laws of thought, and the rational agent — and adopt the last as the frame for the whole course: AI is the study and design of rational agents.\n",{"path":6799,"title":6800,"module":5,"summary":6801},"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai","The Foundations of AI","Where the rational-agent idea came from and what surrounds it. AI inherited its core tools from eight older disciplines — philosophy, mathematics, economics, neuroscience, psychology, computer engineering, control theory, and linguistics. Its history runs in cycles of boom and winter, from the 1956 Dartmouth workshop through expert systems to the statistical turn. And the deep-learning era — AlexNet, the Transformer, GPT-3, AlphaGo — is a new way of computing the agent function at scale, not a new definition of AI.\n",{"path":6803,"title":6804,"module":5,"summary":6805},"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents","Intelligent Agents","An agent perceives an environment through sensors and acts on it through actuators; its behavior is an agent function mapping percept sequences to actions. A rational agent chooses, for each percept sequence, the action that maximizes its expected performance measure given its knowledge. We build the first half of the vocabulary the whole course rests on — the agent function, rationality, PEAS task specifications, and the six axes along which task environments vary.\n",{"path":6807,"title":6808,"module":5,"summary":6809},"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures","Agent Architectures","How to build a program that computes a good agent function without storing an astronomically large lookup table. Four skeleton architectures in order of increasing power — simple reflex, model-based, goal-based, and utility-based — plus the learning agent that improves any of them, the scale of world representations (atomic, factored, structured) they rest on, and how a modern language-model agent fits the same frame.\n",{"path":6811,"title":6812,"module":6813,"summary":6814},"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search","Uninformed Search","Search","A goal-based agent that cannot see which action is best turns the problem into a state space — an initial state, a set of actions, a transition model, a goal test, and a path cost — and searches for a sequence of actions reaching the goal. We build the state-space formulation on the 8-puzzle and route-finding, give the one TREE-SEARCH \u002F GRAPH-SEARCH skeleton every algorithm specializes, and measure strategies by completeness, optimality, and complexity. This lesson develops the first two frontier disciplines — breadth-first and uniform-cost search; the rest follow in the next lesson.\n",{"path":6816,"title":6817,"module":6813,"summary":6818},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared","Search Strategies Compared","Breadth-first and uniform-cost search pay for optimality in memory. This lesson develops the strategies that trade memory for depth: depth-first search, which keeps only the current path; depth-limited and iterative-deepening search, which fix DFS's failure on infinite paths; and bidirectional search, which meets in the middle for a square-root saving. It closes by lining up all six uninformed strategies against completeness, optimality, and complexity, and tracing where the algorithms came from and where they went.\n",{"path":6820,"title":6821,"module":6813,"summary":6822},"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search","Informed Search and A*","An informed search uses a heuristic $h(n)$, an estimate of the cost from a node to the goal, to decide what to expand next. Greedy best-first search follows the heuristic blindly and gives up optimality; A* corrects it by ranking nodes on $f(n) = g(n) + h(n)$, and is optimal when the heuristic is admissible (tree search) or consistent (graph search). This lesson defines the heuristic, builds best-first search, and proves why A* is optimal, with the contour picture that explains its pruning. Where good heuristics come from is the next lesson.\n",{"path":6824,"title":6825,"module":6813,"summary":6826},"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions","Heuristic Functions and Memory-Bounded Search","A* is only as good as its heuristic, so this lesson answers where good heuristics come from: relaxed problems, whose exact solution cost is an admissible heuristic, and pattern databases, which precompute subproblem costs. It measures heuristic quality with dominance and the effective branching factor, then tackles A*'s memory problem with IDA*, RBFS, and SMA*. It closes with modern heuristic search — weighted A*, learned and disjoint pattern-database heuristics, and bidirectional A*.\n",{"path":6828,"title":6829,"module":6813,"summary":6830},"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search","Local Search and Optimization","When the path to a goal is irrelevant and only the final state matters, we can discard the search tree entirely and keep just the current state, moving to a better neighbor at each step. This lesson builds the state-space landscape metaphor, works through hill climbing and the three obstacles that defeat it (local maxima, ridges, plateaus), then develops the first escapes: random restarts and simulated annealing with its temperature schedule. The population-based methods and continuous-space calculus follow in the next lesson.\n",{"path":6832,"title":6833,"module":6813,"summary":6834},"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search","Population and Continuous Search","Single-state local search escapes a trap by restarting or tolerating downhill moves. This lesson develops the alternatives that keep several states at once — local beam search, which shares successors across parallel threads, and genetic algorithms, which recombine two parents through crossover and mutation — then crosses into continuous spaces, where calculus replaces the finite neighbor set: gradient ascent, line search, and Newton's method. It closes with the industrial descendants of these methods and the loop they all share.\n",{"path":6836,"title":6837,"module":6813,"summary":6838},"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search","Adversarial Search and Games","When another agent plans against you, search becomes a game. We formalize two-player, zero-sum, perfect-information games as search problems, define the minimax value that optimal play backs up through the game tree, and give the MINIMAX algorithm that computes it. Alpha–beta pruning then cuts the cost of that search roughly in half in the exponent without changing the answer, and a heuristic evaluation function plus a cutoff test turns the exact algorithm into a real-time player that copes with the horizon effect.\n",{"path":6840,"title":6841,"module":6813,"summary":6842},"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information","Games of Chance and Imperfect Information","Minimax and alpha–beta assume a deterministic game both players can see in full. Drop either assumption and search must change. This lesson adds chance nodes and the expectiminimax value for games with dice, then belief-state reasoning for partially observable games — Kriegspiel and card games — where averaging over clairvoyance both helps and misleads. It closes with the line from Deep Blue's alpha–beta to AlphaGo's learned evaluation and Monte Carlo tree search, and the provable-pruning and self-play research around each end of that story.\n",{"path":6844,"title":6845,"module":6813,"summary":6846},"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction","Constraint Satisfaction Problems","A constraint satisfaction problem replaces the black-box state with a factored one: variables, domains, and constraints. That structure supports inference before any search runs. This lesson defines the CSP on map coloring, Sudoku, and scheduling, then develops constraint propagation: node and arc consistency, the AC-3 algorithm that makes a whole network arc-consistent, and the way one deleted value cascades across the graph to prune impossible options ahead of search.\n",{"path":6848,"title":6849,"module":6813,"summary":6850},"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure","CSP Search and Structure","Propagation prunes a CSP but rarely finishes it, so we search. This lesson builds backtracking search over partial assignments and the general-purpose heuristics that make it fast — MRV, degree, least-constraining-value, forward checking, MAC, and intelligent backtracking. It then shows how the shape of the constraint graph controls difficulty: tree-structured problems fall in linear time, cutset conditioning handles the rest, and min-conflicts local search solves a million queens in a constant number of steps.\n",{"path":6852,"title":6853,"module":6813,"summary":6854},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty","Search Under Uncertainty","Classical search assumes the agent knows the state it is in and exactly what each action does. Drop the second assumption and a plan can no longer be a fixed sequence of actions. This lesson develops the first response: AND-OR search over nondeterministic actions, which returns a branching contingency plan rather than a straight line. We build it on the erratic vacuum world, show how OR nodes (the agent's choices) alternate with AND nodes (nature's outcomes), trace the recursion that finds a plan, and handle the case where the only solution is a cyclic \"try, try again.\"\n",{"path":6856,"title":6857,"module":6813,"summary":6858},"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search","Belief-State and Online Search","When the agent cannot see the full state, a plan can no longer test where it actually is — it must reason over the set of states it might be in. This lesson develops belief-state search, from sensorless (conformant) planning that coerces an unknown world into a goal, through the predict-observe-update cycle of contingent planning with percepts, to online search in unknown environments, where the agent must act in order to learn. It closes with LRTA*, which refines its own heuristic as it explores, one step from reinforcement learning.\n",{"path":6860,"title":6861,"module":6862,"summary":6863},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic","Logical Agents and Propositional Logic","Logic and Planning","A knowledge-based agent keeps a store of sentences and acts by asking it what to do. To make \"asking\" mean something we need entailment — the relation $KB \\models \\alpha$ that holds when every model of the knowledge base is a model of the query. Propositional logic gives a syntax and a truth-table semantics for which entailment is decidable. This first part builds the foundations: the agent loop, the Wumpus World, models and entailment, the connectives and truth tables, theorem proving by refutation, and the resolution rule with its CNF conversion — a single complete inference procedure for all of propositional logic.\n",{"path":6865,"title":6866,"module":6862,"summary":6867},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference","Propositional Inference and Logical Agents","Model checking and resolution decide entailment, but both can blow up. This part turns propositional logic into a practical engine and a working agent. Horn clauses give linear-time forward and backward chaining — the basis of logic programming. DPLL and WalkSAT make satisfiability testing fast in the common case. Then we make the agent situated: time-indexed fluents, the frame problem and its solution by successor-state axioms, a hybrid agent that deduces a safe map and plans a route through it, and SATPlan, which finds a plan by asking a SAT solver for a satisfying model.\n",{"path":6869,"title":6870,"module":6862,"summary":6871},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic","First-Order Logic","Propositional logic can only say that facts hold; it cannot talk about the objects a fact is about, or state a rule once and have it cover every object. First-order logic fixes this by committing to a world of objects, relations, and functions. This first part builds the language from the ground up: the ontology it commits to, the model that gives a sentence a truth value, the syntax of terms and sentences, the two quantifiers with their standard mistakes, and equality.\n",{"path":6873,"title":6874,"module":6862,"summary":6875},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use","First-Order Logic in Use","With the language of first-order logic in hand, this part is about using it well. Database semantics trades expressive power for the convenience of a single intended model; higher-order logic shows what first-order logic gives up for decidability. Then we put the language to work: the Tell\u002FAsk interface, the kinship domain axiomatized from scratch, and the seven-step knowledge-engineering process applied to a digital circuit.\n",{"path":6877,"title":6878,"module":6862,"summary":6879},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution","Inference in First-Order Logic","Propositional inference lifts to first-order logic once we can make terms match. Unification is that machinery: the algorithm that finds the substitution making two expressions identical, and the basis of generalized modus ponens. This first part builds the lifted inference rules and the two chaining algorithms they drive — forward chaining, the data-driven procedure behind production systems and Datalog, and backward chaining, the goal-driven procedure behind Prolog.\n",{"path":6881,"title":6882,"module":6862,"summary":6883},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution","First-Order Resolution","Chaining is complete only for Horn knowledge bases. General first-order sentences — with disjunctive conclusions and negations — need a single sound and complete rule: resolution. This part converts arbitrary sentences to CNF by skolemizing away the existentials, lifts the resolution rule with unification, and proves entailment by refuting the negated goal. The result is the proof procedure Gödel's completeness theorem guarantees will find any entailment, together with the search strategies that make it usable.\n",{"path":6885,"title":6886,"module":6862,"summary":6887},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning","Classical Planning","Classical planning represents a problem in a factored language, PDDL: states are sets of ground fluents, and actions are lifted schemas with a precondition and an effect. That structure turns planning into search — forward through states or backward through goals — and lets a program read heuristics straight off the schemas by relaxing the problem. This first part develops the representation, the two search directions, and the domain-independent heuristics that come from ignoring preconditions or delete lists.\n",{"path":6889,"title":6890,"module":6862,"summary":6891},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan","Planning Heuristics and GraphPlan","Every relaxation heuristic can be inaccurate, and none can tell how far apart subgoals sit. The planning graph is a polynomial-size structure that does better: leveled off the problem, it yields admissible distance estimates and a record of which actions and fluents cannot coexist. This part builds the graph, reads heuristics from it, extracts plans with GraphPlan, and closes with the other classical approaches — SATPlan and partial-order planning — and the representational trade that makes all of it work.\n",{"path":6893,"title":6894,"module":6862,"summary":6895},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world","Planning and Acting in the Real World","Classical planning's clean theory rests on four assumptions: time is ignored, actions are atomic, the world is deterministic and fully observable, and the agent is alone. This first part drops the first two. We add durations and resource constraints — turning a plan into a schedule, solved by the critical-path method and, once resources contend, by NP-hard job-shop scheduling — and let a planner reason at multiple levels of abstraction through high-level actions and their angelic reachable sets.\n",{"path":6897,"title":6898,"module":6862,"summary":6899},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty","Planning Under Uncertainty","Classical planning assumed the world was deterministic, fully observable, and the agent alone. This part drops the last two assumptions. When the agent cannot see or predict the world, planning moves into belief-state space: sensorless plans that coerce the world into the goal without sensing, contingent plans that branch on what is sensed, and online agents that monitor and replan when execution diverges. Then we add other agents — joint plans, the coordination problem, and the conventions that let a team act without constant negotiation.\n",{"path":6901,"title":6902,"module":6862,"summary":6903},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation","Knowledge Representation","First-order logic gives you the language; this lesson is about what to say in it. This first part builds the content: a general upper ontology from the top down, categories as first-class objects with taxonomies and inheritance, physical composition and the count-noun\u002Fmass-noun split, events and time reified through the event calculus, and belief modeled with modal logic — the machinery for representing the world an agent reasons about.\n",{"path":6905,"title":6906,"module":6862,"summary":6907},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults","Reasoning Systems and Default Logic","Having represented the world, this part is about reasoning with it at scale. Semantic networks give a graphical notation with fast inheritance; description logics keep subsumption and classification tractable by design. Then we confront the fact that most useful rules hold only by default: circumscription and default logic give a logical account of nonmonotonic reasoning, and truth maintenance systems retract conclusions cleanly when the beliefs beneath them change.\n",{"path":6909,"title":6910,"module":6911,"summary":6912},"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes","Quantifying Uncertainty","Uncertainty","Logic breaks down in any domain where the rules have exceptions you cannot enumerate — the qualification problem. Probability replaces truth values with degrees of belief that obey Kolmogorov's axioms, and the full joint distribution becomes a knowledge base from which any query is answered by summing entries: marginalization, conditioning, and normalization. Independence factors that joint into smaller pieces — the first step toward a calculus of rational belief that an agent can actually compute with.\n",{"path":6914,"title":6915,"module":6911,"summary":6916},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes","Bayes' Rule and Naive Bayes","Bayes' rule inverts a causal model into a diagnostic one, turning \"how a cause produces its symptoms\" into \"which cause explains what I observed.\" Ignoring the prior is the base-rate fallacy behind overconfident test results. Conditional independence then lets several pieces of evidence combine by multiplying likelihood ratios instead of building an exponential joint, giving the naive Bayes model and pointing directly at Bayesian networks.\n",{"path":6918,"title":6919,"module":6911,"summary":6920},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks","Bayesian Networks","A Bayesian network is a directed acyclic graph of random variables in which each node carries a conditional probability table for itself given its parents. That structure factors the full joint distribution into a product of local terms, turning an exponential table into a linear one, and it makes the conditional independences of the domain explicit. We build the canonical burglary–alarm network, read compactness and d-separation off the graph, run exact inference by variable elimination, and, where that is intractable, estimate answers by sampling.\n",{"path":6922,"title":6923,"module":6911,"summary":6924},"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks","Bayesian Networks: Inference and Relational Models","When exact inference is intractable, sampling estimates the posterior instead: prior and rejection sampling, likelihood weighting, and Gibbs\u002FMCMC, whose error shrinks as one over the square root of the sample count. The same graphical idea then lifts from a fixed set of variables to whole populations — relational and open-universe probability models write dependencies once and unroll them over objects — and we close by placing probability against the rule-based, Dempster–Shafer, and fuzzy alternatives it displaced.\n",{"path":6926,"title":6927,"module":6911,"summary":6928},"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time","Probabilistic Reasoning over Time","A world that changes needs a state variable at every point in time. The Markov assumption cuts the dependence on history down to the previous slice, leaving a transition model and a sensor model that define a temporal Bayesian network. Four recursive tasks fall out — filtering, prediction, smoothing, and the most likely explanation — each a message passed along the sequence. We ground them in hidden Markov models and their matrix form, sketch the Kalman filter for continuous state, and reach dynamic Bayesian networks with particle filtering as the general approximate method.\n",{"path":6930,"title":6931,"module":6911,"summary":6932},"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association","Reasoning over Time: Tracking and Data Association","Dynamic Bayesian networks generalize HMMs and Kalman filters to arbitrarily many state variables per slice, and when exact inference blows up, particle filtering approximates the belief state with a population of weighted samples that propagate, reweight, and resample. Tracking several objects at once adds the data-association problem — which observation came from which object — whose combinatorics defeat any exact filter, so particle filters and MCMC keep many hypotheses alive. We close with SLAM and learned state-space models.\n",{"path":6934,"title":6935,"module":6911,"summary":6936},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions","Making Decisions: Utility Theory","A rational agent chooses the action that maximizes expected utility — the probability of each outcome weighted by how much the agent wants it. We derive the utility function from six axioms on preferences, so maximizing expected utility is forced by consistency rather than assumed; look at risk aversion in the utility-of-money curve; package one-shot choices into decision networks; and quantify what an observation is worth with the value of information.\n",{"path":6938,"title":6527,"module":6911,"summary":6939},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes","When an agent must act repeatedly in a stochastic world, a fixed plan is useless — it needs a policy, an action for every state. The Markov decision process makes this precise with a transition model, a reward, and a discount factor; the Bellman equation characterizes the optimal state utilities, and value iteration and policy iteration solve it. Partial observability lifts the problem to belief states, and bandits, Monte-Carlo tree search, and scalable POMDP solvers extend it — this is the model-known half of reinforcement learning.\n",{"path":6941,"title":6942,"module":6911,"summary":6943},"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory","Decision Analysis: Multi-Attribute Utility and Decision Networks","Decision analysis takes the single-agent utility framework and makes it practical: utility over several attributes, dominance and additive value functions, influence diagrams that fold Bayesian networks together with decision and utility nodes, and the value of information that tells an agent which questions are worth asking. Structure in an agent's preferences — dominance, preferential and utility independence — collapses an exponential utility table into a few one-dimensional functions, the same move that made Bayesian networks compact.\n",{"path":6945,"title":6946,"module":6911,"summary":6947},"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design","Game Theory and Mechanism Design","When outcomes depend on other rational agents, single-agent utility maximization no longer suffices. Game theory studies decisions among agents — normal-form games, dominant strategies, Nash and maximin equilibria, and repeated games — and mechanism design runs the logic backwards, engineering rules (auctions, VCG) so that self-interested play produces a good collective outcome. Algorithmic game theory then asks whether equilibria can be computed, what selfishness costs society, and how the mechanisms deployed at internet scale actually behave.\n",{"path":6949,"title":6950,"module":6951,"summary":6952},"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples","Learning from Examples","Learning","An agent that improves with experience does not need its designer to anticipate every situation. Inductive learning takes that ambition and narrows it to one tractable problem: from labelled input-output pairs, recover a function that predicts the output for inputs never seen. This first part builds the foundation around a single organizing question — generalization — through decision trees and information gain, and the training\u002Fvalidation\u002Ftest discipline for evaluating and choosing hypotheses. A second part takes up the theory of learning and the main model families.\n",{"path":6954,"title":6955,"module":6951,"summary":6956},"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families","The Theory of Learning and Model Families","Cross-validation measures generalization but does not explain it. This part supplies the theory — PAC learning, sample complexity, and the VC dimension — that says when a hypothesis consistent with enough data is probably approximately correct, and why an unrestricted hypothesis space can never generalize. It then surveys the model families a practitioner reaches for: linear regression and gradient descent, the perceptron and logistic regression, support vector machines and the kernel trick, and ensembles by bagging and boosting — closing with what deep learning changed about the classical picture.\n",{"path":6958,"title":6959,"module":6951,"summary":6960},"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning","Learning Probabilistic Models","A [Bayesian network](\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks) is useless until its numbers are filled in, and those numbers come from data. This first part casts learning itself as probabilistic inference: hypotheses carry a prior, data update it to a posterior, and predictions average over what remains. From that frame fall the standard estimators — maximum likelihood by counting, MAP with a conjugate prior, full Bayesian updating — for the case where every variable is observed. A second part takes up the harder case of hidden variables and the EM algorithm.\n",{"path":6962,"title":6963,"module":6951,"summary":6964},"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization","Learning with Hidden Variables: The EM Algorithm","Complete data can be learned by counting; real data usually hide some variables — the disease behind the symptoms, the cluster behind the points. This part develops the expectation-maximization algorithm, which learns those models by alternating an expected completion of the missing data with a re-estimation of the parameters. It works the idea through mixtures of Gaussians, Bayesian networks, and hidden Markov models, proves the monotone-likelihood guarantee from the evidence lower bound, and traces the line from EM to variational inference and the variational autoencoder.\n",{"path":6966,"title":5949,"module":6951,"summary":6967},"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning","Reinforcement learning is an MDP with the model unknown: the agent knows neither how its actions move the world nor which states are rewarded, and must recover good behaviour from experienced transitions and rewards alone. This first part builds the classical tabular theory — passive learning (fix a policy, learn its value, by direct estimation, adaptive dynamic programming, and temporal differences) and active learning (choose actions, trade exploration against exploitation, and learn control with Q-learning and SARSA). A second part lifts it off the lookup table with function approximation and policy search.\n",{"path":6969,"title":6970,"module":6951,"summary":6971},"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search","Reinforcement Learning: Generalization and Policy Search","Tabular reinforcement learning stores one number per state, which is hopeless for backgammon or chess. This part lifts RL off the lookup table with function approximation, so that updating one state generalizes to related ones, then turns to policy search — representing and optimizing the policy directly, up to the REINFORCE policy gradient and correlated sampling. It closes with the bridge to deep reinforcement learning (deep Q-networks, actor-critic, PPO), the classic applications, and the hand-off to the dedicated RL subject.\n",{"path":6973,"title":6974,"module":6951,"summary":6975},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning","Knowledge in Learning","Pure induction learns a function from labelled examples while knowing almost nothing to begin with. This first part brings prior knowledge into the loop by recasting learning as logical inference — hypotheses, examples, and classifications as sentences. It develops current-best-hypothesis search, the version space and its general\u002Fspecific boundary maintained by candidate elimination, and states the three entailment constraints that fix how background knowledge enters. A second part builds the three knowledge-based methods those constraints define.\n",{"path":6977,"title":6978,"module":6951,"summary":6979},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods","Knowledge-Based Learning: EBL, Relevance, and ILP","Once learning is cast as logical inference, three methods follow from the three ways prior knowledge can enter. Explanation-based learning generalizes a single example by explaining it with the domain theory, gaining speed but nothing new. Relevance-based learning uses determinations to shrink the hypothesis space and converge from fewer examples. Inductive logic programming learns genuinely new first-order rules — top-down with FOIL, bottom-up by inverting resolution, even inventing new predicates — and connects to modern statistical relational and neuro-symbolic learning.\n",{"path":6981,"title":6982,"module":6983,"summary":6984},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception","Vision and Perception","Frontiers","Perception connects an agent to the physical world. We follow one modality — vision — from the physics of image formation (the pinhole camera, perspective projection, lenses, shading, color) through the early operations that turn a pixel array into edges, texture, and motion, and into recognition by appearance. The recurring problem is inversion: a camera collapses a 3-D world onto a 2-D grid, and an agent that wants to act must build the scene back up. Rebuilding the scene is the subject of the companion lesson.\n",{"path":6986,"title":6987,"module":6983,"summary":6988},"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world","Vision: Reconstructing the 3D World","A camera collapses a three-dimensional world onto a flat grid; this lesson inverts that collapse. We build the camera projection matrix (intrinsics and extrinsics), triangulate a point from two views, then work through the toolbox of depth cues — motion parallax, binocular stereopsis, multiple views, texture, shading, and contour — that turn an ambiguous image back into a scene. We add structural recognition (pictorial-structure \"cardboard people\"), the task-driven use of vision in cars and robots, and the shift from hand-built pipelines to learned deep-vision networks.\n",{"path":6990,"title":6991,"module":6983,"summary":6992},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics","Robotics","A robot is an agent with a body: sensors that read the physical world and effectors that push back on it. This lesson grounds the abstract AI machinery in that body. We build up the hardware (range finders, proprioception, degrees of freedom), then cast perception as probabilistic filtering — the kinematic motion and sensor models, Monte Carlo localization, the extended Kalman filter, and simultaneous localization and mapping (SLAM). The companion lesson takes the estimated pose forward into planning and control.\n",{"path":6994,"title":6995,"module":6983,"summary":6996},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control","Robotics: Planning and Control","A robot that knows where it is still has to decide how to move, and then make a slipping, sensing-imperfect body actually go there. This lesson takes the pose estimate forward: planning motion in configuration space with cell decomposition and sampling-based roadmaps (PRMs and RRTs), planning under uncertainty with most-likely-state and online replanning, closing the loop with P\u002FPD\u002FPID control and potential fields, and finally the software architectures — subsumption, three-layer, and pipeline — that assemble it all, plus the learning-based turn in modern robotics.\n",{"path":6998,"title":6999,"module":6983,"summary":7000},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai","Natural Language for AI Agents","Language is how agents acquire the knowledge already written down and how they communicate with the humans they serve. This lesson gives the classical AI account of language as a source of information: n-gram language models and the information-seeking tasks built on them — text classification, information retrieval (BM25, the inverted index, PageRank), and information extraction with finite-state templates and hidden Markov models. Throughout, we point to the dedicated NLP subject for the modern deep-learning treatment; the companion lesson takes up grammar, translation, and speech.\n",{"path":7002,"title":7003,"module":6983,"summary":7004},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech","Language for AI Agents: Grammar, Translation, and Speech","N-gram models see only a local window; they cannot say why \"black dog\" is well-formed English and \"dog black\" is not, because that is a fact about structure. This lesson takes up structure: phrase-structure and probabilistic context-free grammars, syntactic analysis by chart parsing and CYK, augmented grammars and compositional semantics, then the two major statistical successes — machine translation and speech recognition — cast as noisy-channel problems. It closes with the bridge from n-grams to transformers and where the classical account sits relative to modern NLP.\n",{"path":7006,"title":7007,"module":6983,"summary":7008},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future","Philosophy, Ethics, and the Future of AI","Two questions have shadowed the field since its founding: can machines act intelligently (weak AI), and can they really think (strong AI)? We work through Turing's objections and their rebuttals — the arguments from disability, mathematics, and informality — then the strong-AI debate: the mind-body problem, functionalism and the brain prosthesis, Searle's Chinese Room and the systems reply, and consciousness and qualia. The companion lesson turns from what AI can do to what it should, and closes the course.\n",{"path":7010,"title":7011,"module":6983,"summary":7012},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future","The Ethics and Future of AI","Having asked whether machines can act intelligently and really think, we turn to whether we should build them at all. This lesson works through the six ethical risks — lost jobs, autonomous weapons, surveillance and privacy, biased decisions, the safety of superintelligence, and the erosion of accountability — then the value-alignment problem in the LLM era, and where the classical agent components could go next. It closes the course by tying search, logic, probability, and learning into a single picture of intelligence as rational agency.\n",{"path":7014,"title":7015,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":7017,"title":7018,"module":7019,"summary":7020},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart","Nuclear Composition and Ground-State Properties","Nuclear Properties","The nucleus is a bound assembly of Z protons and N neutrons packed to a radius R = R0 A^(1\u002F3) at a nearly constant density of about 10^17 kg\u002Fm^3. We fix the vocabulary of nuclides, derive nuclear size from mirror-nuclide and electron-scattering data, read the binding-energy-per-nucleon curve, and model it with the liquid-drop semiempirical mass formula.\n",{"path":7022,"title":7023,"module":7019,"summary":7024},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions","Nuclear Size, Shape, and Charge Distributions","Elastic electron scattering resolves the nucleus by its de Broglie wavelength. The measured cross section is the Mott point-charge cross section modulated by a form factor, and that form factor is the Fourier transform of the charge density. Diffraction minima fix the radius, the small-angle slope fixes the mean-square radius, and the fitted Woods-Saxon profile gives a central density and a skin thickness. Mirror-nucleus Coulomb energies, muonic-atom X-rays, and optical isotope shifts give independent radii that all track R = R0 A^(1\u002F3).\n",{"path":7026,"title":7027,"module":7019,"summary":7028},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy","Nuclear Masses, Mass Excess, and Separation Energies","The atomic mass unit fixes the scale, and the mass excess collects the small binding-driven deviation from the integer mass number. Penning-trap cyclotron frequencies now measure masses to parts in a billion, and every decay and reaction Q-value is a difference of these masses. One- and two-nucleon separation energies read the binding difference between neighbouring nuclides directly, showing the even-odd pairing stagger and the sharp drops at magic numbers, and their vanishing marks the neutron and proton drip lines that bound the chart of the nuclides.\n",{"path":7030,"title":7031,"module":7019,"summary":7032},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula","The Semi-Empirical Mass Formula and the Valley of Stability","Five physical terms reproduce nuclear binding across the chart: a volume term from saturation, a surface term from the deficit of edge neighbours, a Coulomb term from the electrostatic self-energy of a charged sphere, an asymmetry term from the Pauli cost of unequal proton and neutron filling, and a pairing term. The formula is quadratic in Z at fixed A, so isobars lie on a mass parabola whose minimum sets the most stable charge and whose slope dictates the direction of beta decay. The same competition between surface and Coulomb energy defines the fissility parameter and the onset of fission.\n",{"path":7034,"title":7035,"module":7019,"summary":7036},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles","Nuclear Spin, Magnetic Dipole, and Electric Quadrupole Moments","The ground state of a nucleus carries a definite spin and parity, a magnetic dipole moment of order the nuclear magneton, and, when its spin exceeds one-half, an electric quadrupole moment that measures its shape. The single-particle Schmidt lines predict the magnetic moment of an odd-A nucleus from the last unpaired nucleon, and the measured moments fall between them. The quadrupole moment distinguishes prolate from oblate deformation, and hyperfine structure is the experimental handle that fixes the spin and the moments from an atomic spectrum.\n",{"path":7038,"title":7039,"module":7040,"summary":7041},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview","The Nuclear Force and the Shell Model","The Nuclear Force","The strong force between nucleons is short-range, charge-independent, saturated, and repulsive at its core, about a hundred times stronger than Coulomb. Yukawa explained it as an exchange of massive mesons, tying the force's range to the meson mass through the uncertainty principle. Layered on top, an independent-particle shell model with strong spin-orbit coupling reproduces the magic numbers 2, 8, 20, 28, 50, 82, 126.\n",{"path":7043,"title":7044,"module":7040,"summary":7045},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron","The Deuteron and the Tensor Force","The deuteron is the only bound two-nucleon state: one shallow level at 2.22 MeV, no excited states. A square-well fit fixes a depth near 35 MeV over a 2 fm range, yet the wavefunction leaks so far past the edge that most of the probability lies outside the force. Its spin-1 ground state, magnetic moment close to the sum of the free-nucleon moments, and small but nonzero electric quadrupole moment together force a D-state admixture and a non-central tensor force.\n",{"path":7047,"title":7048,"module":7040,"summary":7049},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering","Nucleon-Nucleon Scattering and the Interaction's Structure","Scattering probes the nuclear force above threshold. Partial-wave analysis reduces low-energy data to a single s-wave phase shift, and the effective-range expansion packages that into a scattering length and an effective range. The triplet channel binds (the deuteron) while the singlet is only virtual, which together explain the anomalously large free neutron-proton cross section. Comparing pp, nn, and np results establishes charge symmetry and charge independence, and polarization experiments expose the spin-orbit and tensor pieces.\n",{"path":7051,"title":7052,"module":7040,"summary":7053},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin","Meson Exchange, the Yukawa Potential, and Isospin","Yukawa's massive-field propagator turns the range of the nuclear force into a meson mass: the exchanged quantum's Compton wavelength is the range. One-pion exchange fixes the long-range tail, complete with the tensor structure the deuteron demanded, while heavier mesons build the intermediate attraction and the repulsive core. Charge independence becomes an isospin symmetry, the force is diagonalized by the total isospin through a tau-dot-tau interaction, and the whole picture sits inside QCD as a residual color force between color-neutral nucleons.\n",{"path":7055,"title":7056,"module":7057,"summary":7058},"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model","The Fermi Gas Model","Nuclear Models","Treating the nucleus as two degenerate Fermi gases of protons and neutrons confined in a common well fixes the Fermi momentum near 250 MeV\u002Fc and the Fermi energy near 33 MeV from the nuclear density alone. The average kinetic energy per nucleon is about 20 MeV, the well depth is the Fermi energy plus the separation energy, and unequal proton and neutron Fermi levels reproduce the asymmetry term of the mass formula.\n",{"path":7060,"title":7061,"module":7057,"summary":7062},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates","The Liquid-Drop Model and Collective Deformation","Deforming a charged liquid drop into a spheroid raises its surface energy and lowers its Coulomb energy; the two effects compete through the deformation parameter to set a stability minimum and a fission barrier. The ratio of Coulomb to twice the surface energy is the fissility Z-squared over A, which crosses one near 49 and marks the point where the sphere is unstable. The same surface tension that restores small deformations quantizes into collective vibrations, carrying the static mass formula into dynamic collective motion.\n",{"path":7064,"title":7065,"module":7057,"summary":7066},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle","The Shell Model: Single-Particle States and Spin-Orbit Coupling","A harmonic-oscillator well reproduces the first three magic numbers but fails above twenty; adding a strong inverted spin-orbit term that drives the stretched j equals l plus one-half level down closes the gaps at 28, 50, 82, and 126. The filled shells couple to zero, so the last unpaired nucleon fixes the ground-state spin and parity, and its single-particle magnetic moment falls on the Schmidt lines. Configuration mixing sets the limits of the extreme single-particle model.\n",{"path":7068,"title":7069,"module":7057,"summary":7070},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations","The Collective Model: Rotations, Vibrations, and Deformed Nuclei","Deformed nuclei rotate with energies proportional to I times I plus one, giving the ground-state band its characteristic level ratios, while near-spherical nuclei vibrate in quantized surface phonons that build one- and two-phonon multiplets. The Nilsson model tracks single-particle levels as the well deforms, moments of inertia fall between the rigid and irrotational limits, backbending marks the sudden alignment of a broken pair, and giant resonances are the bulk dipole and quadrupole modes of the whole nucleus.\n",{"path":7072,"title":7073,"module":7074,"summary":7075},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes","Radioactivity and Decay Modes","Radioactive Decay","Unstable nuclei decay at a rate proportional to how many remain, giving the exponential law N(t) = N0 e^(-lambda t) with half-life t = 0.693\u002Flambda. We work through the three common modes: alpha decay as Coulomb-barrier tunneling with the Geiger-Nuttall rule, beta decay whose continuous spectrum demands the neutrino, and gamma de-excitation, and follow a decay chain across the chart of nuclides.\n",{"path":7077,"title":7078,"module":7074,"summary":7079},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium","Serial Decay, the Bateman Equations, and Radioactive Equilibrium","A radioactive parent that decays into a radioactive daughter obeys a coupled pair of rate equations whose solution is the Bateman formula. Depending on the half-life ordering the chain settles into secular equilibrium (equal activities), transient equilibrium (a fixed activity ratio), or no equilibrium. Constant production under irradiation drives the activity toward a saturation value equal to the production rate, competing decay modes split the total decay constant into partial constants, and the natural decay series in secular equilibrium underpin radiometric dating.\n",{"path":7081,"title":7082,"module":7083,"summary":7084},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory","Alpha Decay and the Gamow Theory of Tunneling","Alpha Decay","The alpha Q-value turns positive above mass number 150 because the emitted helium-4 is exceptionally tightly bound. Emission proceeds by quantum tunneling through the Coulomb barrier: a WKB integral from the nuclear surface to the outer turning point gives the Gamow factor, and multiplying its penetrability by the assault frequency yields half-lives spanning more than twenty orders of magnitude. The leading term reproduces the Geiger-Nuttall relation, log t½ proportional to the daughter charge over the square root of Q.\n",{"path":7086,"title":7087,"module":7083,"summary":7088},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance","Fine Structure, Angular Momentum, and Hindrance Factors","A single parent emits several alpha groups of slightly different energy, each feeding a distinct level of the daughter, so the alpha spectrum maps the daughter's low-lying states. Emission with orbital angular momentum L raises the barrier by a centrifugal term and is allowed only when angular-momentum and parity selection rules permit. Comparing the measured partial half-life to the Gamow estimate defines a hindrance factor near unity for even-even ground-state transitions and large for odd-A decays that must rearrange the unpaired nucleon.\n",{"path":7090,"title":7091,"module":7092,"summary":7093},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino","Beta Decay Energetics and the Neutrino","Beta Decay and the Weak Interaction","Beta decay converts a neutron into a proton or the reverse, adjusting Z at fixed A along an isobaric mass parabola. We write the three processes (beta-minus, beta-plus, electron capture), reduce every Q-value to a difference of neutral atomic masses, and read the continuous electron spectrum as the fingerprint of a third, nearly massless particle. Pauli's neutrino, its detection by Reines and Cowan, and the endpoint bound on its mass close the lesson.\n",{"path":7095,"title":7096,"module":7092,"summary":7097},"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay","Fermi's Theory: Kurie Plots and ft Values","Fermi treated beta decay as a point-contact weak transition and read its rate from the golden rule. The electron spectrum then follows from phase space and the Coulomb Fermi function; the Kurie plot straightens it to a line whose intercept is the endpoint. Integrating the spectrum gives the comparative half-life ft, whose logarithm sorts transitions into superallowed, allowed, and forbidden classes governed by the Fermi and Gamow-Teller selection rules.\n",{"path":7099,"title":7100,"module":7092,"summary":7101},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation","The Weak Interaction and Parity Violation","Beta decay violates mirror symmetry. The Wu experiment on polarized cobalt-60 showed electrons emitted preferentially against the nuclear spin, a pseudoscalar correlation forbidden if parity were conserved. The result fixes the weak charged current as left-handed V minus A, forces neutrinos to be left-handed and antineutrinos right-handed (measured by Goldhaber), and places beta decay within the electroweak theory as W-boson exchange turning a down quark into an up quark.\n",{"path":7103,"title":7104,"module":7092,"summary":7105},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass","Double Beta Decay and Neutrino Mass","For even-A isobars the pairing term splits the mass parabola into two curves, and a handful of even-even nuclides sit below their odd-odd neighbor yet above the next even-even one: single beta decay is forbidden but second-order double beta decay is allowed. The two-neutrino mode is a standard-model process with the longest measured lifetimes in nature; the neutrinoless mode would require the neutrino to be its own antiparticle and its rate measures the effective Majorana mass, the sharpest probe of the absolute neutrino mass scale.\n",{"path":7107,"title":7108,"module":7109,"summary":7110},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation","Multipole Radiation and Selection Rules","Gamma Decay","Gamma decay carries a nucleus from an excited state to a lower one by emitting a photon of definite angular momentum and parity. We correct the photon energy for nuclear recoil, expand the radiation field into electric and magnetic multipoles, and read off how the transition rate collapses with each increase in multipole order. The Weisskopf single-particle estimates set the scale, and angular-momentum and parity conservation fix which multipole dominates.\n",{"path":7112,"title":7113,"module":7109,"summary":7114},"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers","Internal Conversion and Isomers","A nucleus can shed excitation energy without emitting a photon by handing it directly to an atomic electron. We define the internal-conversion coefficient, trace its growth with atomic number, multipole order, and decreasing energy, and treat the electron-only E0 transitions and internal pair formation. When the lowest allowed multipole is high and the energy low, the gamma rate falls so far that the excited state survives as a metastable isomer.\n",{"path":7116,"title":7117,"module":7109,"summary":7118},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer","Angular Correlations and the Mössbauer Effect","Two gammas emitted in cascade are not independent in direction: detecting the first selects magnetic substates of the intermediate level and makes the second anisotropic, so the correlation function fixes the intermediate spin. The same nuclear resonance that recoil normally destroys is recovered when the emitter is locked in a lattice, giving the Mössbauer effect and its part-in-a-trillion resolution of isomer shifts and hyperfine fields.\n",{"path":7120,"title":7121,"module":7122,"summary":7123},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections","Nuclear Reactions, Fission, and Fusion","Nuclear Reactions","A nuclear reaction X(x, y)Y is governed by its Q value and its cross section, the effective target area for a given process. Splitting the curve of binding energy near iron in either direction releases energy: fission of heavy nuclei by neutron capture and a chain reaction, and fusion of light nuclei that powers the Sun and needs Lawson's density-confinement criterion to be practical.\n",{"path":7125,"title":7126,"module":7122,"summary":7127},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances","The Compound Nucleus and Resonance Reactions","Low-energy reactions proceed through a long-lived intermediate state whose decay forgets how it formed. Bohr's independence hypothesis factorizes the cross section into a formation step and a branching ratio, an isolated level gives the single-level Breit-Wigner line shape with total width Γ tied to the lifetime by Γτ = ħ, and at high excitation overlapping levels merge into a statistical continuum described by evaporation spectra and the Hauser-Feshbach average.\n",{"path":7129,"title":7130,"module":7122,"summary":7131},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model","Direct Reactions and the Optical Model","A complex optical potential replaces the many-body target by a single particle moving in an average field whose imaginary part removes flux into non-elastic channels, reproducing the diffraction pattern of elastic scattering. Direct reactions bypass the compound nucleus, transferring a nucleon in one step: stripping and pickup deposit or remove a single nucleon, the angle of the first peak in the distorted-wave angular distribution fixes the transferred orbital angular momentum, and its magnitude gives the spectroscopic factor.\n",{"path":7133,"title":7134,"module":7135,"summary":7136},"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics","The Fission Barrier and Fragment Energetics","Nuclear Fission","Fission is the large-amplitude collective deformation of a heavy nucleus into two fragments. The liquid-drop model sets a barrier from the competition between rising surface energy and falling Coulomb energy under quadrupole deformation, with the fissility parameter Z²\u002FA measuring how close a nucleus is to instability. Bohr-Wheeler theory separates spontaneous from neutron-induced fission, the fragment mass yield is double-humped and asymmetric, about 200 MeV is released per event, and shell corrections add a second minimum that produces fission isomers.\n",{"path":7138,"title":7139,"module":7135,"summary":7140},"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics","Chain Reactions and Reactor Physics","A self-sustaining chain reaction is a fixed point of neutron bookkeeping: the multiplication factor k counts the neutrons in one generation per neutron in the last, and criticality is k = 1. The four-factor formula tracks a neutron through fast fission, resonance escape, thermal utilization, and reproduction; moderation slows fission neutrons to the thermal energies where the fission cross section is largest; and the small delayed-neutron fraction sets the timescale that makes a reactor controllable. Breeding converts fertile U-238 and Th-232 into new fissile fuel.\n",{"path":7142,"title":7143,"module":7144,"summary":7145},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement","Fusion Reactions and Confinement","Fusion and Nucleosynthesis","Light nuclei release energy when they fuse because binding per nucleon rises steeply toward the iron peak, but the Coulomb barrier suppresses the rate at reactor temperatures. The thermonuclear rate is a convolution of the Maxwell distribution with the tunneling probability, sharply peaked at the Gamow energy. The deuterium-tritium reaction has the lowest barrier and largest cross section; sustained energy gain requires the Lawson triple product of density, temperature, and confinement time, reached by magnetic or inertial confinement.\n",{"path":7147,"title":7148,"module":7144,"summary":7149},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis","Stellar Nucleosynthesis","Main-sequence stars burn hydrogen to helium through the proton-proton chain and the CNO cycle, both releasing 26.7 MeV per helium nucleus. Helium burning bridges the mass-5 and mass-8 gaps by the triple-alpha process through the Beryllium-8 and Hoyle resonances, and successive carbon-to-silicon burning stages climb to the iron peak, where fusion stops. The elements beyond iron are built by slow and rapid neutron capture, and the solar neutrino flux confirms the reactions directly.\n",{"path":7151,"title":7152,"module":7144,"summary":7153},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis","Big-Bang Nucleosynthesis","In the first three minutes the expanding universe forged the light elements. The weak interaction froze the neutron-to-proton ratio near one in six when the reaction rate fell below the expansion rate, and free-neutron decay lowered it to about one in seven before the deuterium bottleneck broke. Almost every surviving neutron ended in helium-4, fixing the primordial helium mass fraction near 0.25, with trace deuterium, helium-3, and lithium-7. The deuterium abundance measures the cosmic baryon density.\n",{"path":7155,"title":7156,"module":7157,"summary":7158},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power","Stopping Power and the Range of Charged Particles","Radiation and Applications","A heavy charged particle loses energy in a dense sequence of small Coulomb collisions with atomic electrons, at a rate the Bethe-Bloch formula fixes from the particle's charge and speed and the medium's electron density and mean excitation energy. The rate scales as the inverse square of the speed, so most energy is deposited at the end of the track in the Bragg peak, and integrating the reciprocal rate gives a sharp range. Electrons differ: they also radiate, and above a critical energy bremsstrahlung dominates. Fast particles above the phase velocity of light in the medium emit Cherenkov radiation.\n",{"path":7160,"title":7161,"module":7157,"summary":7162},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions","Interactions of Photons and Neutrons","Photons are removed from a beam in single events, so their intensity falls exponentially with a linear attenuation coefficient built from three processes: the photoelectric effect at low energy, Compton scattering at intermediate energy, and pair production above twice the electron rest energy, each with its own atomic-number and energy dependence. Neutrons carry no charge and interact only with nuclei, moderating by elastic scattering and being captured with a cross section that rises as one over speed away from resonances.\n",{"path":7164,"title":7165,"module":7157,"summary":7166},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors","Radiation Detectors and Nuclear Spectroscopy","Every detector converts the energy a radiation deposits into a measurable electrical signal. Gas counters read the ionization directly, in three operating regions set by the applied voltage; scintillators convert the energy to light read out by a photomultiplier; semiconductor detectors collect electron-hole pairs and give the best energy resolution because so many carriers are made per event. The resolution is governed by the number of independent charge carriers, and the pulse-height spectrum of a gamma line shows a full-energy photopeak, a Compton continuum with its edge, and escape peaks.\n",{"path":7168,"title":7169,"module":7157,"summary":7170},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology","Dosimetry, Radiation Biology, and Protection","Absorbed dose is the energy deposited per unit mass, measured in gray. Equal absorbed doses do unequal biological damage because densely ionizing radiation deposits its energy along short tracks: weighting the dose by a radiation factor gives the equivalent dose, and weighting by tissue sensitivity gives the effective dose, both in sieverts. Deterministic effects have a threshold and a severity that grows with dose; stochastic effects are assumed to follow a linear-no-threshold probability. Natural background dominates the dose to the population, and protection rests on time, distance, and shielding.\n",{"path":7172,"title":7173,"module":7157,"summary":7174},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine","Applications — Dating, Analysis, and Nuclear Medicine","Charged particles lose energy continuously and stop at a well-defined range with a Bragg peak, while gamma rays are attenuated exponentially. These interactions define radiation detectors and dosimetry (gray and sievert) and drive the applications: neutron activation analysis, magnetic resonance imaging, PET, and radiometric dating with carbon-14 and long-lived rock clocks.\n",{"path":7176,"title":7177,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":7179,"title":7180,"module":5,"summary":7181},"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp","What Is Natural Language Processing?","Natural language processing is the computational treatment of human language: reading it, representing it, and generating it. We set up why the problem is hard — ambiguity at every level, from sound to intent — trace the field from ELIZA's pattern-matching through statistical methods to today's neural models, lay out the linguistic levels and task families the course covers, and fix the vocabulary of tokens, types, and corpora the rest of the notes rely on.\n",{"path":7183,"title":7184,"module":5,"summary":7185},"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization","Regular Expressions and Text Normalization","Before any model touches text, the text has to be found and cleaned. Regular expressions give an algebra for describing string patterns; tokenization, case folding, and stemming turn raw characters into the units a model counts; and byte-pair encoding builds a subword vocabulary that spells out any word. Measuring how far apart two strings are — minimum edit distance — is the next lesson.\n",{"path":7187,"title":7188,"module":5,"summary":7189},"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance","Minimum Edit Distance","Much of language processing needs to measure how similar two strings are — a speller ranking corrections, a diff tool, a coreference resolver. Minimum edit distance counts the insertions, deletions, and substitutions that turn one string into another, computed by a dynamic-programming table. We fill the table for intention to execution, backtrace to recover the alignment, and see how the same machinery generalizes to weighted edits, Viterbi, and biological sequence alignment.\n",{"path":7191,"title":7192,"module":5,"summary":7193},"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models","N-Gram Language Models","A language model assigns a probability to a sequence of words and, equivalently, predicts the next word from its history. The n-gram model makes this tractable by truncating the history to the last few words, estimates the resulting conditional probabilities by counting, and is scored by perplexity. We build the model from the chain rule, work a bigram example on a small corpus, and read perplexity as a branching factor. The next lesson covers the zero counts that break this model and the smoothing that repairs them.\n",{"path":7195,"title":7196,"module":5,"summary":7197},"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff","Smoothing and Backoff","Every finite corpus is missing good word sequences it simply never saw, so a raw n-gram model assigns them probability zero and breaks. Smoothing repairs the zeros: add-one and add-k shave mass off seen events, backoff and interpolation fall back on shorter contexts, and Kneser-Ney — worked here by hand — replaces raw frequency with how many contexts a word completes. We close on web-scale stupid backoff and the neural models that dissolve the zero problem rather than patch it.\n",{"path":7199,"title":7200,"module":7201,"summary":7202},"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment","Naive Bayes and Sentiment Classification","Text Classification","Text classification assigns a category to a document — positive or negative, spam or not, one topic among many. Naive Bayes is a generative solution: apply Bayes' rule, assume the words are conditionally independent given the class, and the winning class is the one maximizing the product of a prior and per-word likelihoods. We train it by counting with add-one smoothing, work a full sentiment example by hand, sharpen it for sentiment (binary counts, negation, lexicons), and place it among the transformer classifiers that came after.\n",{"path":7204,"title":7205,"module":7201,"summary":7206},"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers","Evaluating Classifiers","A trained classifier is only useful once we can measure how good it is. We build the confusion matrix, see why accuracy misleads on unbalanced data, and define precision, recall, and the F-measure that balances them. Multi-class tasks need macro- versus micro-averaging; reliable estimates need cross-validation. We close on statistical significance — the paired bootstrap test for whether one system's lead over another is significant.\n",{"path":7208,"title":7209,"module":7201,"summary":7210},"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression","Logistic Regression","Logistic regression is the discriminative counterpart to naive Bayes: instead of modelling how a document is generated, it learns weights that directly separate the classes. We build it from the sigmoid, derive the cross-entropy loss from maximum likelihood, learn the weights by stochastic gradient descent, regularize to curb overfitting, and generalize to many classes with the softmax. The two-class model is already a one-neuron network, so this is the bridge to neural language models.\n",{"path":7212,"title":7213,"module":7201,"summary":7214},"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons","Sentiment and Affect Lexicons","A sentiment lexicon is a list of words annotated with the affective meaning they carry — positive or negative, or scores along valence, arousal, and dominance. We fix what \"emotion\" means (basic-emotion versus dimensional models), survey the standard lexicons, and then build lexicons three ways: by human labeling with best-worst scaling, by semi-supervised induction from seed words over an embedding space, and by supervised learning from starred reviews. We close on connotation frames, which record the sentiment a verb implies about each of its arguments.\n",{"path":7216,"title":7217,"module":7218,"summary":7219},"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings","Vector Semantics and Embeddings","Semantics","Vector semantics represents a word's meaning as a point in space, derived from the company the word keeps. This first part builds the count-based side: the distributional hypothesis, co-occurrence matrices in their term-document and word-word forms, cosine as the similarity measure, and the two weightings — tf-idf and PPMI — that fix what raw counts get wrong. The result is a sparse, interpretable vector for every word, and the setup for the dense embeddings of the next lesson.\n",{"path":7221,"title":7222,"module":7218,"summary":7223},"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings","Static Word Embeddings: word2vec and After","Count-based vectors are long and sparse; embeddings are the short, dense alternative. This lesson builds them with word2vec's skip-gram and negative sampling — a classifier whose learned weights are the vectors — derives its gradient, and works one update by hand. It then reads relations off the analogy parallelogram, surveys the papers that framed the static-embedding era (word2vec, GloVe, the SGNS-as-PPMI equivalence, fastText, ELMo), and closes on the biases embeddings inherit and the single-vector-per-word ceiling that contextual models break.\n",{"path":7225,"title":7226,"module":7218,"summary":7227},"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models","Neural Networks and Neural Language Models","A neural network is a stack of units, each a weighted sum passed through a non-linearity — a single unit on its own is logistic regression. We build the network up from that unit: the activation functions that give it power, the XOR problem that forces a hidden layer, the feedforward forward pass in matrix form, and the Bengio-style feedforward neural language model that concatenates word embeddings and predicts the next word with a softmax. Training is cross-entropy minimized by gradient descent, with backpropagation supplying the gradient. Embeddings let the model share statistical strength across similar words, avoiding the sparsity that limits n-gram models.\n",{"path":7229,"title":7230,"module":3758,"summary":7231},"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling","Sequence Labeling: POS and NER","Sequence labeling assigns one tag to every token in a sentence. This first part sets up the task through its two canonical cases — part-of-speech tagging over the Penn Treebank tagset, and named-entity recognition reframed as token labeling with the BIO scheme — then builds the hidden Markov model, the classic probabilistic tagger. The HMM tags by Bayesian inference: transition and emission probabilities under two Markov assumptions, reducing tagging to an argmax over tag sequences. That argmax is exponential to enumerate, which sets up the Viterbi decoder, the CRF, and neural taggers of the next lesson.\n",{"path":7233,"title":7234,"module":3758,"summary":7235},"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers","Viterbi Decoding, CRFs, and Neural Taggers","The HMM reduced tagging to an argmax over exponentially many tag sequences. This lesson builds the decoder that makes it tractable — the Viterbi dynamic program, worked through a full numeric trace on real WSJ probabilities — then keeps that same decoder while replacing the HMM's rigid tables. The linear-chain conditional random field is a discriminative log-linear model whose global feature functions can inspect any part of the input, which is why CRFs win for NER. Finally it traces the shift to neural taggers (biLSTM-CRF, character-aware NER, ELMo), where hand-built features become learned representations while the Viterbi decoder carries over unchanged.\n",{"path":7237,"title":7238,"module":3758,"summary":7239},"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms","RNNs and LSTMs","A feedforward neural language model sees a fixed window of words and can look no further back. The recurrent neural network removes that limit: it carries a hidden state across time, so each word is read in the context of everything before it. We build the RNN from its one recurrent equation, use it as a language model, train it by backpropagation through time, and diagnose the vanishing-gradient problem that makes plain RNNs forget. The LSTM fixes the forgetting with a cell state and three gates, and the encoder-decoder stacks two RNNs into a sequence-to-sequence model — and its single-vector bottleneck is the problem attention was invented to remove.\n",{"path":7241,"title":7242,"module":4240,"summary":7243},"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention","Transformers and Self-Attention","Recurrence forced language models to read one word at a time and to squeeze every dependency through a chain of hidden states. Self-attention removes the recurrence: at every layer each position compares itself to every other and reads a weighted mixture of them, in a single parallel step. This first part builds the attention operation from the ground up — the soft lookup, queries and keys and values, the scaled dot-product, the numeric trace, the matrix form, and the causal mask — and sets up the full transformer architecture that follows.\n",{"path":7245,"title":5795,"module":4240,"summary":7246},"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture","This part takes the scaled dot-product attention of the previous lesson and assembles the full transformer architecture around it: multi-head attention so several relations can be read at once, the transformer block of residual connections and layer norm that makes deep stacks trainable, positional embeddings that restore word order, the decoder-only language model, and the encoder, decoder, and encoder-decoder shapes — closing with the 2017 paper and the pre-norm, FlashAttention, and RoPE refinements that scaled it up.\n",{"path":7248,"title":5903,"module":4240,"summary":7249},"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models","A large language model is a decoder-only transformer trained on one objective — predict the next token. This first part assembles the inference side: the language-modeling head that turns a hidden state into a distribution over the vocabulary, autoregressive generation, and the decoding strategies — greedy, beam, and sampling with temperature, top-k, and nucleus — that read text back out of that distribution. Training the distribution at web scale comes next.\n",{"path":7251,"title":7252,"module":4240,"summary":7253},"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling","Large Language Models: Pretraining and Scaling","A language model's next-token distribution is only as good as the parameters behind it. This part is where those parameters come from: self-supervised pretraining on web-scale text with teacher forcing and cross-entropy, the scaling laws that make test loss a predictable power law in parameters, data, and compute, the KV cache that keeps long-context inference affordable, and how a finished model is evaluated by perplexity and benchmarks — closing with the Kaplan, Chinchilla, GPT-3, and emergence papers behind the scaling story.\n",{"path":7255,"title":7256,"module":4240,"summary":7257},"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting","Fine-Tuning and Prompting","A pretrained transformer is a general-purpose knowledge source; a task is what you do with it. There are two ways to adapt one, and this first part covers the one that updates the weights: fine-tuning. A bidirectional encoder like BERT is pretrained by masked language modeling, then a small task head is bolted on and the whole thing is trained on labelled data for classification, sequence labeling, or span-based question answering — with parameter-efficient variants (adapters, LoRA) that touch only a sliver of the weights. Prompting, the family that leaves the weights frozen, comes next.\n",{"path":7259,"title":7260,"module":4240,"summary":7261},"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment","Prompting and Alignment","Fine-tuning adapts a model by changing its weights. The second family of adaptation changes nothing: a large frozen model performs a task from an instruction and a few examples placed in its context. This part covers prompting and in-context learning, chain-of-thought that elicits reasoning, and the two training stages — instruction tuning and RLHF — that turn a fluent base predictor into an aligned assistant, closing with the BERT, LoRA, chain-of-thought, InstructGPT, and retrieval-augmentation papers behind the modern adaptation pipeline.\n",{"path":7263,"title":7264,"module":7265,"summary":7266},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing","Constituency Parsing","Linguistic Structure","A constituency parse groups a sentence into nested phrases described by a context-free grammar. We build the CFG formalism, read the phrase structure of English off a treebank, confront the structural ambiguity that makes parsing hard, convert to Chomsky normal form, and then solve it with CKY — the dynamic-programming chart that fills a triangular table bottom-up. Probabilistic and neural span parsers, evaluation, and shallow parsing follow in the companion lesson.\n",{"path":7268,"title":7269,"module":7265,"summary":7270},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation","CKY Scoring, Evaluation, and Shallow Parsing","The CKY chart returns every parse but does not say which is correct. Disambiguation needs a score on trees. This lesson attaches probabilities to a grammar (the PCFG and lexicalization), replaces the grammar with a neural span scorer over a pretrained encoder, states the self-attentive results that made it the state of the art, evaluates parsers against a treebank with PARSEVAL, and closes with chunking and shallow parsing for tasks that need only the flat phrases.\n",{"path":7272,"title":7273,"module":7265,"summary":7274},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing","Dependency Parsing","A dependency parse throws away phrases and keeps only directed, labeled arcs from heads to their dependents, so the subject and object of a verb hang off the verb directly. We fix the formalism (rooted trees, typed Universal-Dependency relations, projectivity), then build the first parser family: transition-based arc-standard and arc-eager parsing, a greedy stack-and-buffer machine trained from an oracle. Graph-based and neural dependency parsing follow in the companion lesson.\n",{"path":7276,"title":7277,"module":7265,"summary":7278},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing","Graph-Based and Neural Dependency Parsing","Greedy transition parsing commits locally; the graph-based family scores whole trees instead. This lesson scores every candidate head-dependent edge and extracts the maximum spanning tree with Chu-Liu\u002FEdmonds, develops the biaffine neural scorer that made graph-based parsing the accuracy leader, evaluates parsers with the unlabeled and labeled attachment scores (UAS and LAS), and closes on where the two parser families sit and what they feed downstream.\n",{"path":7280,"title":7281,"module":7265,"summary":7282},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd","Word Senses and Disambiguation","A word is not an atom of meaning: \"bass\" names a fish, a voice, and an instrument, and one static embedding blurs them into a single point. This lesson pulls those senses apart. We define polysemy and the relations that organize senses — synonymy, antonymy, hyponymy, meronymy — build them into WordNet's synset graph, measure similarity along that graph, and then solve the core of word sense disambiguation: the most-frequent-sense baseline, the Lesk gloss-overlap algorithm, feature-based classifiers, and the nearest-neighbor method over BERT embeddings. WSD variants, embeddings, and evaluation follow in the companion lesson.\n",{"path":7284,"title":7285,"module":7265,"summary":7286},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction","WSD in Practice and Word Sense Induction","Beyond core word sense disambiguation lie the variants and loose ends: the sense-inventory-free Word-in-Context task, retrofitting static embeddings to a thesaurus, discovering senses without a fixed inventory (word sense induction), the gloss-aware and bi-encoder neural systems that hold the state of the art, and how WSD and its cousins are evaluated. Together they connect one-vector-per-word embeddings to sense-aware contextual representations.\n",{"path":7288,"title":7289,"module":7265,"summary":7290},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction","Semantic Roles and Information Extraction","Semantic roles answer \"who did what to whom\" for a single event, abstracting away the syntax that expresses it. We show why syntax alone is not enough, generalize over diathesis alternations with thematic roles, number a predicate's arguments with PropBank and group predicates into frames with FrameNet, tag each argument automatically with semantic role labeling, and factor predicates into primitives. Information extraction scales the idea to a corpus in the companion lesson.\n",{"path":7292,"title":7293,"module":7265,"summary":7294},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates","Relations, Events, and Templates","Semantic roles answer \"who did what\" for one predicate; information extraction scales the idea to a whole corpus. This lesson turns unstructured text into structured data: relation extraction pulls entity-relation-entity triples out of sentences by patterns, supervision, and distant supervision; event and temporal extraction place those facts on a timeline; and template filling and knowledge-base population assemble them into a database a downstream system can query.\n",{"path":7296,"title":7297,"module":7265,"summary":7298},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse","Coreference and Discourse","A text is more than a bag of sentences: entities recur under different names. Coreference resolution links every mention to the discourse entity it evokes — the linguistic background of pronouns, definite NPs, and names; mention detection; the mention-pair, mention-ranking, and entity-based architectures; a neural end-to-end span model that scores candidate antecedents; features, evaluation by the CoNLL F1, gender bias, and the neural coreference lineage. Discourse coherence follows in the companion lesson.\n",{"path":7300,"title":7301,"module":7265,"summary":7302},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure","Coherence and Discourse Structure","Coherence is what makes a run of sentences a discourse rather than an arbitrary collection. This lesson develops coherence relations and Rhetorical Structure Theory trees, discourse-structure parsing, Centering and the entity grid for entity-based coherence, and representation-learning models of local coherence, measured in part over the coreference chains recovered in the companion lesson.\n",{"path":7304,"title":7305,"module":7265,"summary":7306},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics","Logical Representations of Meaning","A meaning representation turns a sentence into a formal structure a machine can check against a world and reason over. We set the desiderata a good representation must meet, ground truth in a model, build up first-order logic for sentences with its connectives, quantifiers, and inference, and reify events with the neo-Davidsonian event variable to escape fixed predicate arity. The compositional lambda calculus, quantifier scope, and description logics follow in the companion lesson.\n",{"path":7308,"title":7309,"module":7265,"summary":7310},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics","Compositional Semantics and Description Logics","How do you compute a logical form from a sentence automatically? This lesson builds the compositional machinery: the lambda calculus that assembles a formula from a parse tree one beta-reduction at a time, the quantifier-scope ambiguity a single syntax tree leaves open, and the decidable description logics — TBox, ABox, subsumption, role restrictions — behind the Web Ontology Language, closing with how the map from string to logical form can be learned.\n",{"path":7312,"title":7313,"module":7265,"summary":7314},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing","Semantic Parsing","Turning a sentence into a structured, executable meaning, the grammar-based way. We take the logical forms defined earlier and build them compositionally: a rule-based parser that walks a syntax tree applying lambda terms, then Combinatory Categorial Grammar (CCG), which fuses syntax and semantics so one lexicalized derivation produces both — including supertagging and A* parsing. Learned and neural semantic parsers follow in the companion lesson.\n",{"path":7316,"title":7317,"module":7265,"summary":7318},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing","Learned and Neural Semantic Parsing","Hand-writing a lexicon of lambda terms does not scale, so this lesson learns the parser instead. We cover the two supervision regimes (from logical forms and from denotations), Abstract Meaning Representation as a rooted concept graph, neural sequence-to-sequence parsing with constrained decoding and copy mechanisms, executable text-to-SQL and knowledge-based question answering, the practical systems that made learned parsers accurate, and how the task is evaluated.\n",{"path":7320,"title":7321,"module":7265,"summary":7322},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction","Information Extraction","Information extraction turns free text into a database, and the first step is relation extraction: pulling entity-relation-entity triples out of sentences. We cover all five families — hand-built patterns, supervised classifiers, semi-supervised bootstrapping, distant supervision, and unsupervised Open IE — with worked bootstrapping and distant-supervision traces, then the neural and LLM systems that extended them. Times, events, and templates follow in the companion lesson.\n",{"path":7324,"title":7325,"module":7265,"summary":7326},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates","Extracting Times, Events, and Templates","Once relation extraction has produced typed triples, the information-extraction pipeline still has to place facts in time and assemble them into records. This lesson detects and normalizes temporal expressions to ISO 8601 values, detects events and orders them on a timeline with the 13 Allen relations, and fills slot-and-filler templates — flat and hierarchical — for stereotyped situations, closing the loop from text to a queryable database.\n",{"path":7328,"title":7329,"module":7265,"summary":7330},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence","Discourse Coherence","A text is more than a set of sentences. What binds a run of sentences into a discourse is coherence, and one of its sources is structured relations between clauses. This lesson develops relational coherence — RST and the PDTB models of coherence relations — and discourse-structure parsing: EDU segmentation and shift-reduce RST parsing, then PDTB relation classification. Entity-based and global coherence follow in the companion lesson.\n",{"path":7332,"title":7333,"module":7265,"summary":7334},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence","Entity-Based and Global Coherence","A text coheres not only through relations between clauses but by staying about the same entities and the same topic, and by obeying the macro-structure of its genre. This lesson develops Centering Theory and the entity grid for entity-based coherence, representation-learning models of local coherence, and global coherence — topic segmentation, narrative and argumentation structure, and scientific discourse — then the neural models that learn each.\n",{"path":7336,"title":7337,"module":7265,"summary":7338},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars","Constituency Grammars","A constituency grammar is the declarative theory of sentence structure that a parser operates on. We build the context-free grammar formalism from its four parts, show how derivations become parse trees, and work through the phrase structure of English — noun phrases, verb phrases and their subcategorization frames, agreement, coordination, and long-distance dependencies. The treebank, normal-form, and lexicalized views follow in the companion lesson.\n",{"path":7340,"title":7341,"module":7265,"summary":7342},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars","Treebanks and Lexicalized Grammars","Where does a grammar come from, and how is it prepared for a parser? We read a context-free grammar off the Penn Treebank, normalize it to Chomsky Normal Form for the CKY chart, then invert the phrase-structure emphasis with lexicalized grammars — Combinatory Categorial Grammar and its slash categories — and close with the grammar's fate in the neural era: span scoring, self-attention, and grammar induction.\n",{"path":7344,"title":7345,"module":5891,"summary":7346},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation","Machine Translation","Machine translation is the task that built the modern toolkit: the encoder-decoder was invented for it, attention was invented to fix its fixed-context bottleneck, and both were later folded into the general transformer. We work through why translation is hard (word order, morphology, lexical and structural divergences), the sequence-to-sequence model and its attention mechanism, transformer-based NMT with cross-attention, subword tokenization with a shared vocabulary, beam-search decoding, and evaluation by BLEU and its successors chrF, BERTScore, and COMET — closing on multilingual and low-resource translation and backtranslation.\n",{"path":7348,"title":7349,"module":5891,"summary":7350},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation","Machine Translation: Decoding, Evaluation, and Scale","Having built the transformer translation model, we now decode from it and measure the output. Beam search turns the decoder's per-step distributions into a single output string; length normalization keeps it from favoring short translations. We then score translations automatically — BLEU with its n-gram precision, clipping, and brevity penalty, worked through by hand, then its successors chrF, BERTScore, and COMET — and close on the parts of MT that scale beyond one language pair: multilingual and low-resource translation, backtranslation, gender bias, and the lineage from the Transformer to massively multilingual models like NLLB-200.\n",{"path":7352,"title":7353,"module":5891,"summary":7354},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering","Question Answering","A question-answering system takes a natural-language question and returns an answer, not a ranked list of documents. Almost every modern system is built on one pattern: retrieve then read. We start with the information-retrieval machinery that finds candidate text — tf-idf and BM25 term weighting, a worked ranking example, the inverted index, and dense embedding retrieval — then build the retriever-reader pipeline that extracts an answer span with BERT and trace a full retrieve-and-read example end to end.\n",{"path":7356,"title":7357,"module":5891,"summary":7358},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms","Question Answering: Knowledge Bases and Language Models","The retrieve-and-read pipeline extracts an answer span from prose, but not all knowledge lives in prose. This part covers the rest of the QA stack: entity linking (Wikification) that grounds a question's entities to a knowledge base, knowledge-based QA by semantic parsing a question into an executable query, and the modern default — closed-book QA and retrieval-augmented generation with a large language model — closing on the DPR\u002FRAG\u002Ffusion-in-decoder lineage and how factoid answers are scored by exact match and F1.\n",{"path":7360,"title":7361,"module":5891,"summary":7362},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots","Dialogue and Chatbots","Conversation is the most natural interface to a machine and one of the hardest to build. We set up what makes human dialogue work — turns, speech acts, grounding, and the local structure of adjacency pairs — then trace the two traditions that answer it: chatbots built to chat (ELIZA's pattern-matching, corpus retrieval, and seq2seq generation with its blandness problem) and task-oriented systems built to get something done (the GUS frame-and-slot architecture and the modern NLU \u002F state-tracker \u002F policy \u002F NLG pipeline that accumulates a frame across turns).\n",{"path":7364,"title":7365,"module":5891,"summary":7366},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants","Dialogue Systems: LLM Assistants, Evaluation, and Design","Two dialogue traditions — chatbots built to chat and task-oriented frame systems built to get something done — met in the aligned LLM assistant. Instruction tuning plus RLHF fold chit-chat and task dialogue into one model; the LaMDA \u002F InstructGPT \u002F ChatGPT lineage fills in how. The lesson then turns to evaluation (human ratings and acute-eval for chatbots, task success and slot error rate for task systems), user-centered design with Wizard-of-Oz prototyping, and the ethical stakes of building agents people talk to.\n",{"path":7368,"title":7369,"module":5891,"summary":7370},"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization","Text Summarization","Summarization compresses a document to its essential meaning, by either selecting sentences to keep (extractive) or writing new ones (abstractive). This part fixes the task and its flavors — single vs. multi-document, generic vs. query-focused, extractive vs. abstractive — then works through extractive summarization in full: scoring by position and centrality, the TextRank\u002FLexRank graph algorithm run as PageRank over a sentence-similarity graph with a worked iteration, and supervised sentence selection.\n",{"path":7372,"title":7373,"module":5891,"summary":7374},"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation","Abstractive Summarization and Evaluation","Extractive methods can only reuse the source's own sentences; to compress within a sentence or paraphrase, a summarizer has to generate. This part covers abstractive summarization: the sequence-to-sequence approach, the pointer-generator's copy switch and coverage mechanism, pretrained summarizers (BART, PEGASUS) and zero-shot LLM prompting, the long-document and factuality problems, and ROUGE evaluation with a worked example and its limits — closing on the abstractive lineage from See 2017 through faithfulness metrics.\n",{"path":7376,"title":7377,"module":7378,"summary":7379},"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics","Phonetics","Speech","Before a recognizer can read speech it has to know what speech is. This first part covers the linguistic substrate: phones and their transcription in the IPA and ARPAbet; articulatory phonetics — how the vocal tract shapes airflow into consonants and vowels; and prosody — stress, tune, and the F0 contour. The acoustic side — the waveform, its spectrum, formants, and the spectrogram — is the second part.\n",{"path":7381,"title":7382,"module":7378,"summary":7383},"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics","Acoustic Phonetics","Articulation is the cause; the acoustic signal is the effect, and the effect is all a microphone ever gets. This part follows the sound out of the mouth: waves, sampling and the Nyquist limit, F0 and the pitch track, the mel scale, the spectrum and Fourier analysis, the source-filter model that explains why each vowel carries its own formants, and the spectrogram the log-mel front end of every ASR system sits directly on top of — closing with neural TTS, wav2vec, HuBERT, and Whisper, where phonetics went in neural speech.\n",{"path":7385,"title":7386,"module":7378,"summary":7387},"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition","Automatic Speech Recognition","Speech recognition maps an acoustic waveform to a string of words, and once the waveform is turned into a sequence of log-mel spectrogram frames the problem is the same sequence-to-sequence transduction the rest of the course already solved. This first part builds the feature front end (framing, the DFT, the mel filterbank, the log), then the modern architectures: the attention-based encoder-decoder, the CTC alignment trick that collapses repeated and blank frames, and RNN-T for streaming. Training-data advances, evaluation, TTS, and the other speech tasks come next.\n",{"path":7389,"title":7390,"module":7378,"summary":7391},"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications","ASR Evaluation and Speech Applications","A recognizer turns a waveform into text; this part scores that text and puts the same machinery to other uses. It opens with the self-supervised and weakly- supervised systems (wav2vec 2.0, HuBERT, Whisper) that made ASR error rates fall. Word error rate reuses the edit distance from the first module, run over words. Text-to-speech runs the whole pipeline in reverse — text to mel spectrogram to waveform. And a family of smaller tasks — wake-word detection, speaker recognition and diarization, language identification — reuse the same log-mel front end without the decoder.\n",{"path":7393,"title":7394,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":7396,"title":7397,"module":5,"summary":7398},"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo","From the Electron to the Particle Zoo","A timeline of the subject, from J. J. Thomson's electron in 1897 to the Higgs boson in 2012. The electron, photon, nucleus, proton, and neutron gave a tidy picture that Yukawa's meson prediction and the muon–pion confusion complicated; strange particles in cosmic rays and the accelerator-era flood of hadrons then produced a \"particle zoo\" that only the quark model organized.\n",{"path":7400,"title":7401,"module":5,"summary":7402},"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts","Basic Concepts and Particle Classification","Every particle has an antiparticle of equal mass and opposite charge, a consequence of the Dirac equation confirmed by the positron. Feynman diagrams track interactions in spacetime; the material particles sort into leptons and the composite hadrons built from quarks, with baryons carrying three quarks and mesons a quark-antiquark pair.\n",{"path":7404,"title":7405,"module":5,"summary":7406},"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers","Fundamental Interactions and Force Carriers","Four interactions account for every force in nature: strong, electromagnetic, weak, and gravitational, in decreasing strength. Each is carried by a boson — the gluon, photon, W and Z, and the graviton — with a range fixed by the carrier's mass through the Yukawa relation, and a coupling constant that itself varies with distance.\n",{"path":7408,"title":7409,"module":7410,"summary":7411},"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales","Natural Units and Scales","Units and Kinematics","Setting $\\hbar = c = 1$ collapses mass, momentum, and energy into a single unit, the GeV, and turns lengths and times into inverse energies through the conversion $\\hbar c = 197.3$ MeV·fm. This lesson fixes the natural-unit conventions used for the rest of the course, converts cross sections between barns and GeV$^{-2}$, and shows how to restore factors of $\\hbar$ and $c$ by dimensional analysis.\n",{"path":7413,"title":7414,"module":7410,"summary":7415},"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass","Four-Vectors and Invariant Mass","The energy and momentum of a particle form a four-vector whose square is the frame-independent quantity $p^2 = m^2$. This lesson develops the metric and four-vector products, the invariant mass of a multiparticle system, the center-of-momentum and laboratory frames, and the description of collinear boosts by rapidity, whose additivity replaces the awkward velocity-addition law.\n",{"path":7417,"title":7418,"module":7410,"summary":7419},"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam","Decay, Scattering, and Mandelstam Variables","Two-body decay in the rest frame fixes the daughter momenta from the three masses alone; production thresholds follow from the minimum invariant mass. This lesson works both, then introduces the Mandelstam invariants $s$, $t$, $u$ for $2\\to2$ scattering, proves the identity $s+t+u=\\sum m_i^2$, and maps the physical regions and the crossing that relates channels.\n",{"path":7421,"title":7422,"module":7410,"summary":7423},"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule","Cross Sections and the Golden Rule","The cross section measures how often a scattering happens and the decay width how fast a particle disintegrates. This lesson defines both, relates event rate to luminosity through $R=\\mathcal L\\,\\sigma$ and lifetime to width through $\\tau=\\hbar\u002F\\Gamma$, and states Fermi's golden rule with Lorentz-invariant phase space, giving the master formulas that turn an amplitude $\\mathcal M$ into a measurable rate for $1\\to2$ decay and $2\\to2$ scattering.\n",{"path":7425,"title":7426,"module":7427,"summary":7428},"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries","Conservation Laws and Symmetries","Symmetries and Conservation Laws","Which decays occur is decided by conservation laws, each tied by Noether's theorem to a symmetry of physical law. Energy, charge, baryon number, and lepton number are conserved universally; strangeness, isospin, and parity hold in the strong and electromagnetic interactions but break in the weak one, whose parity and CP violation distinguish matter from antimatter.\n",{"path":7430,"title":7431,"module":7427,"summary":7432},"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt","Discrete Symmetries — C, P, T, and CPT","Parity reflects space, charge conjugation swaps particle for antiparticle, and time reversal runs the clock backward. Each assigns multiplicative quantum numbers that act as selection rules — intrinsic parities, the photon's C = −1, the C-parity argument fixing the pion's two-photon decay. Their product CPT is a theorem of any local relativistic field theory, forcing particle and antiparticle to share mass and lifetime.\n",{"path":7434,"title":7435,"module":7427,"summary":7436},"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak","Parity Violation and the Weak Force","The tau–theta puzzle forced a choice: two particles with identical mass but opposite parity, or one particle whose decay violates parity. Lee and Yang proposed the latter, Wu's polarized cobalt-60 confirmed it, and the violation proved maximal. The charged weak force couples only to left-handed chirality — the Goldhaber experiment showed the neutrino is left-handed — which is why the mirror image of a weak decay is something nature never produces.\n",{"path":7438,"title":7439,"module":7427,"summary":7440},"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry","Isospin, SU(2), and Flavor SU(3)","The near-equal masses of the proton and neutron, and of the three pions, signal a continuous internal symmetry of the strong force: isospin, an SU(2) whose ladder operators move between the members of a multiplet. Adding strangeness enlarges it to an approximate SU(3) flavor symmetry, and the Gell-Mann–Nishijima relation Q = I3 + Y\u002F2 places every hadron on a weight diagram in the isospin–hypercharge plane — the language in which the quark model is written.\n",{"path":7442,"title":7443,"module":7444,"summary":7445},"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3","The Eightfold Way and SU(3) Flavor","The Quark Model","Gell-Mann and Ne'eman's classification of the hadrons into geometric multiplets, read as representations of an approximate flavor SU(3). The fundamental triplet (u, d, s) and its antitriplet combine into the meson nonet from 3⊗3̄ = 8⊕1 and the baryon octet and decuplet from 3⊗3⊗3, and the empty corner of the decuplet forecast the Ω⁻.\n",{"path":7447,"title":7448,"module":7444,"summary":7449},"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy","Meson Multiplets and Quantum Numbers","Mesons as quark–antiquark bound states. The spin singlet and triplet, orbital excitations, and the assignment of J^PC from the quark spins and orbital angular momentum, giving the pseudoscalar and vector nonets. The η–η' and ω–φ mixing problems, and the charmonium and bottomonium spectra read as heavy-quark positronium.\n",{"path":7451,"title":7452,"module":7444,"summary":7453},"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy","Baryon Multiplets, Spin, and the Color Puzzle","Baryons as three-quark states, with a wavefunction factored into space, spin, flavor, and color. The spin-3\u002F2 Δ⁺⁺ = uuu forces a totally symmetric state that the Pauli principle forbids, and the resolution is an antisymmetric color factor — the first evidence for color. The octet and decuplet spin content, and baryon magnetic moments as a quantitative test of the model.\n",{"path":7455,"title":7456,"module":7444,"summary":7457},"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics","Color, Confinement, and Exotic Hadrons","Color as the gauged SU(3) charge, and the requirement that every physical hadron be a color singlet — which selects q-qbar mesons and qqq baryons as the simplest states. The R-ratio of e⁺e⁻ annihilation measures three colors directly. Beyond the simplest singlets lie glueballs, tetraquarks, and pentaquarks, and the recent XYZ states, read as either compact multiquarks or loose hadronic molecules.\n",{"path":7459,"title":7460,"module":7461,"summary":7462},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation","The Klein-Gordon Equation","Relativistic Wave Equations","Quantizing the relativistic energy relation $E^2 = p^2 + m^2$ produces the Klein-Gordon equation for a scalar field. Its plane-wave solutions come in positive- and negative-energy branches, and the conserved density it supplies is not positive-definite — the two difficulties that first drove physicists to seek a first-order equation. The static Klein-Gordon equation with a point source gives the Yukawa potential, and the free equation gives the scalar propagator that later modules attach to exchanged lines.\n",{"path":7464,"title":7465,"module":7461,"summary":7466},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors","The Dirac Equation and Spinors","Dirac demanded a wave equation first order in time to fix the Klein-Gordon density problem. Factorizing $E^2 = p^2 + m^2$ into a linear form forces the coefficients to be anticommuting matrices — the gamma matrices of the Clifford algebra — so the wavefunction becomes a four-component spinor. The plane-wave solutions split into two particle and two antiparticle states, spin appears automatically with the correct $g = 2$ magnetic moment, and the chirality projectors that the weak interaction later needs fall straight out of the fifth gamma matrix.\n",{"path":7468,"title":7469,"module":7461,"summary":7470},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory","Antiparticles and Hole Theory","The negative-energy solutions of the Dirac equation refuse to go away, so they must mean something. Dirac read them as a filled sea of occupied negative-energy states whose holes are positive-energy antiparticles, predicting the positron before its discovery. The picture works for fermions but not bosons, and the Feynman-Stückelberg interpretation replaces it: an antiparticle is a negative-energy solution propagating backward in time, equivalent to a positive-energy antiparticle going forward. Crossing symmetry ties incoming particles to outgoing antiparticles in a single amplitude.\n",{"path":7472,"title":7473,"module":7474,"summary":7475},"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed","Feynman Rules for QED","Quantum Electrodynamics","Quantum electrodynamics computes a process by summing diagrams, each a term in a power series in the coupling. Every diagram translates into an amplitude by a fixed dictionary: spinors and polarization vectors for external lines, propagators for internal lines, and the vertex factor $ie\\gamma^\\mu$ for each photon-fermion junction. Squaring the amplitude and feeding it to Fermi's golden rule produces a cross section or decay rate, with each extra vertex costing one power of $\\alpha$.\n",{"path":7477,"title":7478,"module":7474,"summary":7479},"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes","Tree-Level QED Processes","The Feynman rules become numbers on the reference reactions of QED. Muon pair production $e^+e^-\\to\\mu^+\\mu^-$ sets the scale with its $1+\\cos^2\\theta$ distribution and $4\\pi\\alpha^2\u002F3s$ total cross section, and its ratio to hadron production counts colors. Compton scattering gives the Klein-Nishina formula and the Thomson limit; Bhabha scattering shows $s$- and $t$-channel interference. Casimir's trick turns every spin-averaged square into a trace of gamma matrices.\n",{"path":7481,"title":7482,"module":7474,"summary":7483},"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling","Renormalization and the Running Coupling","Beyond tree level, QED loops diverge. The three primitive one-loop diagrams — vacuum polarization, electron self-energy, and vertex correction — carry ultraviolet divergences that regularization exposes as logarithms of a cutoff. Renormalization absorbs them into the measured mass, charge, and field normalization, leaving finite predictions. The surviving physical content is that the coupling runs: vacuum polarization screens charge, so $\\alpha$ grows from $1\u002F137$ at low energy to about $1\u002F128$ at the $Z$ mass.\n",{"path":7485,"title":7486,"module":7474,"summary":7487},"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2","The Anomalous Magnetic Moment","The Dirac equation predicts $g=2$; loops shift it. Schwinger's one-loop vertex correction gives the anomaly $a=(g-2)\u002F2=\\alpha\u002F2\\pi$, and the QED series continues to five loops. The electron $a_e$ agrees with theory to better than a part in a billion, the most precise confrontation of theory and experiment in physics. The muon $a_\\mu$, heavier and so more sensitive to virtual heavy states, is dominated by hadronic uncertainty and sits at the center of a long-running comparison with the Standard Model prediction.\n",{"path":7489,"title":7490,"module":7491,"summary":7492},"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak","The V–A Charged Weak Current","The Weak Interaction","Fermi modelled beta decay as a four-fermion contact interaction, but a coupling with dimensions of inverse mass squared makes cross sections grow without bound and the theory fails near 300 GeV. The cure is a heavy mediator: the $W$ boson, whose propagator collapses to Fermi's contact term at low energy and fixes $G_F\u002F\\sqrt2 = g^2\u002F8M_W^2$. Parity violation dictates the current's form — vector minus axial-vector, coupling only to left-chiral fields — and universality of the coupling ties muon decay, beta decay, and pion decay to one constant. Pion decay's helicity suppression of the electron channel is the sharpest test.\n",{"path":7494,"title":7495,"module":7491,"summary":7496},"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays","The W and Z Bosons","The contact theory hides a massive mediator. The charged $W^\\pm$ carries the current that changes flavour; the neutral $Z^0$ carries a current that does not. Both were found at CERN's proton–antiproton collider in 1983 at the masses the electroweak theory demanded. Their decay widths partition into leptonic and hadronic channels, and the $Z$ carries a decisive extra: an invisible width from decays to neutrinos that counts the number of light generations at exactly three. Beta decay and muon decay are re-read at the parton level as $W$ exchange.\n",{"path":7498,"title":7499,"module":7491,"summary":7500},"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix","Quark Mixing and the CKM Matrix","The quark eigenstates the weak force acts on are not the mass eigenstates. Cabibbo captured this with one rotation angle; the GIM mechanism added a fourth quark to cancel dangerous flavour-changing neutral currents and predicted charm before its discovery. Three generations promote the rotation to the unitary Cabibbo–Kobayashi–Maskawa matrix — three angles and one irreducible complex phase, the sole source of Standard-Model CP violation. The Wolfenstein parametrization exposes its steep hierarchy, and unitarity closes into a triangle whose area measures the phase.\n",{"path":7502,"title":7503,"module":7491,"summary":7504},"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons","CP Violation in Kaons and B Mesons","The neutral kaon is its own laboratory for CP. Weak box diagrams mix $K^0$ and its antiparticle into short- and long-lived states that should be pure CP eigenstates decaying to two and three pions. In 1964 Cronin and Fitch caught the long-lived kaon decaying to two pions — CP is violated, at the two-per-mille level of $\\epsilon$. Direct violation ($\\epsilon'$) followed, and the $B$ factories turned the CKM phase into a large, clean time-dependent asymmetry measuring $\\sin 2\\beta$. The effect is real but far too small to explain why the universe is made of matter.\n",{"path":7506,"title":7507,"module":7508,"summary":7509},"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons","Color SU(3), Gluons, and the QCD Lagrangian","Quantum Chromodynamics","Color is the exact gauged SU(3) charge of the strong force. Gauging it forces eight massless gluons in the adjoint representation and, because the gauge group is non-abelian, three- and four-gluon self-couplings absent from QED. This lesson builds the QCD Lagrangian from the covariant derivative and the non-abelian field strength, states the Feynman rules with their color factors, and computes the Casimir invariants that set the strength of quark-gluon and gluon-gluon coupling.\n",{"path":7511,"title":7512,"module":7508,"summary":7513},"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement","Asymptotic Freedom and Confinement","The QCD beta function is negative: gluon self-interaction antiscreens color, so the coupling weakens at short distance (asymptotic freedom) and strengthens at long distance (confinement). This lesson computes the one-loop beta coefficient, solves for the running of alpha_s and the emergent scale Lambda_QCD, and reads the strong-coupling regime as the linear quark-antiquark potential of a color flux tube that breaks by pair creation.\n",{"path":7515,"title":7516,"module":7508,"summary":7517},"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons","Deep Inelastic Scattering and the Parton Model","Scattering electrons hard off a proton resolves pointlike constituents. This lesson sets up the deep-inelastic kinematics, defines the structure functions F1 and F2, and reads Bjorken scaling as the signature of free spin-half partons. The Callan-Gross relation fixes the parton spin, the structure function becomes a charge-weighted sum of parton distributions, and the slow logarithmic scaling violations expose the gluon through DGLAP evolution.\n",{"path":7519,"title":7520,"module":7508,"summary":7521},"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization","Jets, Hadronization, and Testing QCD","Quarks and gluons produced in a collision fragment into collimated sprays of hadrons — jets — whose directions track the underlying partons. This lesson reads two-jet events as the quark and antiquark of electron-positron annihilation, three-jet events as direct evidence of the radiated gluon, and the hadronization step as the flux tube breaking into color singlets. Jet algorithms and event-shape variables turn the pattern into precision measurements of alpha_s.\n",{"path":7523,"title":7524,"module":7525,"summary":7526},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1","The Electroweak Theory","Electroweak Unification and the Higgs","The electromagnetic and weak interactions are two faces of a single gauge theory built on $SU(2)_L \\times U(1)_Y$. Left-handed fermions sit in weak-isospin doublets and right-handed fermions in singlets, each carrying a hypercharge fixed by the Gell-Mann–Nishijima relation $Q = T_3 + Y\u002F2$. The four gauge fields $W^{1,2,3}$ and $B$ mix: the charged combinations $W^\\pm$ mediate the charged current, while $W^3$ and $B$ rotate through the Weinberg angle into the massless photon and the massive $Z$. The single angle $\\theta_W$ ties the couplings, the boson masses, and the neutral-current strengths together.\n",{"path":7528,"title":7529,"module":7525,"summary":7530},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking","Spontaneous Symmetry Breaking","A symmetry of the Lagrangian need not be a symmetry of the ground state. When the lowest-energy configuration sits away from the symmetric point, the symmetry is spontaneously broken and the vacuum is one of a degenerate family. Breaking a continuous global symmetry produces one massless scalar — a Goldstone boson — for every broken generator, the flat direction along the vacuum manifold. The Mexican-hat potential and the ferromagnet below its Curie point are the working pictures.\n",{"path":7532,"title":7533,"module":7525,"summary":7534},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism","The Higgs Mechanism","Gauging a spontaneously broken symmetry converts the would-be Goldstone bosons into the longitudinal polarizations of the gauge fields, which thereby acquire mass. Applied to $SU(2)_L \\times U(1)_Y$ with a single Higgs doublet, three of the four scalar degrees of freedom are eaten by the $W^\\pm$ and $Z$; the fourth survives as the physical Higgs boson, and the photon stays massless. Fermion masses come from Yukawa couplings to the same field, each mass proportional to its coupling times the vacuum expectation value $v \\approx 246$ GeV.\n",{"path":7536,"title":7537,"module":7525,"summary":7538},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery","The Higgs Boson","The Higgs boson is produced at the LHC chiefly through gluon fusion, with vector-boson fusion and associated production as cleaner but rarer channels. It decays most often to $b\\bar b$ and $WW^\\ast$, but the discovery rested on two rare clean modes, $H \\to \\gamma\\gamma$ and $H \\to ZZ^\\ast \\to 4\\ell$, whose narrow invariant-mass peaks emerged over smooth backgrounds. ATLAS and CMS announced a boson near 125 GeV in 2012; its measured spin-parity $0^+$ and its couplings, which scale with particle mass, identify it as the Standard Model Higgs.\n",{"path":7540,"title":7541,"module":7525,"summary":7542},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model","The Standard Model","The Standard Model combines the quark model, quantum chromodynamics, and the electroweak theory. SU(3) symmetry sorts the hadrons and predicted the omega; color explains why only colorless quark combinations exist; QCD gives asymptotic freedom and confinement; and spontaneous symmetry breaking through the Higgs field gives the weak bosons their mass.\n",{"path":7544,"title":7545,"module":7546,"summary":7547},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations","Neutrino Oscillations","Neutrino Physics","Neutrinos are produced and detected in flavour states, but they propagate as mass states, and the two bases are misaligned. A flavour therefore evolves coherently into a superposition of other flavours with a probability set by the mass-squared splitting and the ratio L\u002FE. This lesson derives the two-flavour oscillation formula, applies it to the solar and atmospheric neutrino deficits, shows how the SNO neutral-current measurement resolved the solar problem, and works out the MSW resonance that amplifies mixing inside the Sun.\n",{"path":7549,"title":7550,"module":7546,"summary":7551},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns","Neutrino Mass and the PMNS Matrix","Three-flavour mixing promotes the single oscillation angle to the unitary Pontecorvo–Maki–Nakagawa–Sakata matrix, parametrised by three angles and a Dirac CP phase. This lesson decomposes the PMNS matrix into three rotations, records the measured angles and mass-squared splittings, lays out the normal and inverted mass orderings, contrasts the large leptonic mixing with the near-diagonal CKM matrix, and collects the absolute-mass bounds from beta decay and cosmology.\n",{"path":7553,"title":7554,"module":7546,"summary":7555},"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments","Dirac, Majorana, and Neutrino Experiments","A neutral fermion can carry a mass term forbidden to every charged particle, so the neutrino may be its own antiparticle. This lesson contrasts the Dirac and Majorana mass terms and their state content, derives the seesaw mechanism that ties a tiny light mass to a heavy right-handed partner, presents neutrinoless double-beta decay as the decisive lepton-number test, surveys the reactor, accelerator, solar, and atmospheric sources on a baseline–energy map, and explains why neutrino mass is physics beyond the original Standard Model.\n",{"path":7557,"title":7558,"module":7559,"summary":7560},"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity","Accelerators, Colliders, and Luminosity","Accelerators and Detectors","Fixed-target machines waste energy in the center-of-mass motion of the whole system, so the reachable $\\sqrt s$ grows only as the square root of the beam energy, while colliders put the full beam energy into the collision. Circular electron machines are limited by synchrotron radiation scaling as $E^4\u002Fm^4R$; proton machines are limited by bending fields. Luminosity, set by beam current and focusing, converts a cross section into an event rate through $R=\\mathcal L\\,\\sigma$, and integrated luminosity sets the total event count.\n",{"path":7562,"title":7563,"module":7559,"summary":7564},"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems","Particle Detectors and Subsystems","A detector reads a collision by the energy particles deposit as they cross matter. Charged particles ionize at the Bethe-Bloch rate, radiate in the field of nuclei above a critical energy, and emit Cherenkov light above a velocity threshold; electrons and photons build electromagnetic showers over a radiation length, and hadrons build wider showers over a nuclear interaction length. The onion of tracker, electromagnetic and hadronic calorimeters, and outer muon chambers turns these processes into momentum, energy, and identity, with neutrinos inferred from missing transverse momentum.\n",{"path":7566,"title":7567,"module":7559,"summary":7568},"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made","From Collisions to Discoveries","A discovery is a peak that survives statistics. Events are reconstructed into invariant masses, a signal accumulates as a bump over a smooth background, and its significance is judged by a p-value; the field's threshold is five sigma. The expected yield is a product — luminosity times cross section times branching ratio times acceptance and efficiency — that must be balanced by a trigger and data-reduction chain against an overwhelming rate. Worked reconstructions of $Z\\to\\ell\\ell$, the $J\u002F\\psi$, and the Higgs show the same peak-over-background logic at three scales.\n",{"path":7570,"title":7571,"module":7571,"summary":7572},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model","Beyond the Standard Model","The Standard Model leaves the four interactions ununified and the neutrinos massless, both now known to be wrong. Grand unification predicts the couplings merge near ten-to-the-sixteen GeV and the proton decays; supersymmetry pairs each particle with a superpartner; and the confirmed oscillation of neutrinos proves they carry mass, the first crack in the model.\n",{"path":7574,"title":7575,"module":7571,"summary":7576},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories","Grand Unified Theories and Proton Decay","The Standard Model gauge group is a product of three factors with three independent couplings. A grand unified theory embeds them in a single simple group — SU(5) is the minimal choice — so that one coupling runs into all three and the fractional quark charges follow from a tracelessness condition. The same embedding places quarks and leptons in shared multiplets, mediates baryon-number violation through superheavy gauge bosons, and predicts the proton decays with a lifetime that Super-Kamiokande has pushed past ten-to-the-thirty-four years.\n",{"path":7578,"title":7579,"module":7571,"summary":7580},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry","Supersymmetry","Supersymmetry relates fermions and bosons, pairing every Standard Model particle with a superpartner whose spin differs by one half. The pairing makes the scalar and fermion loop corrections to the Higgs mass cancel, removing the quadratic sensitivity to high scales; it sharpens the meeting of the three gauge couplings; and, when R-parity is conserved, it leaves the lightest superpartner stable and neutral, a natural dark-matter candidate. The LHC has excluded gluinos and light squarks below roughly two TeV.\n",{"path":7582,"title":7583,"module":7571,"summary":7584},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness","The Hierarchy Problem and Naturalness","The electroweak scale sits sixteen orders of magnitude below the Planck scale, and nothing in the Standard Model protects that gap. The Higgs mass squared picks up quadratic corrections proportional to the highest scale in the theory, so keeping it at the observed value requires the bare mass and its counterterm to cancel to some thirty significant figures. Naturalness treats that cancellation as a symptom of missing physics. Supersymmetry, compositeness, and extra dimensions each remove the quadratic sensitivity, but the LHC has found none of them at the predicted scale.\n",{"path":7586,"title":7587,"module":7571,"summary":7588},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates","Dark Matter and Particle Candidates","Flat galactic rotation curves, gravitational lensing, the cosmic microwave background, and structure formation all require about five times more matter than the visible baryons, none of it interacting electromagnetically. A stable weakly interacting particle of roughly weak-scale mass freezes out of the early universe with close to the observed abundance — the WIMP miracle — and is the leading candidate, with axions and sterile neutrinos as alternatives. Direct, indirect, and collider searches have so far only tightened the limits.\n",{"path":7590,"title":7591,"module":7571,"summary":7592},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions","Matter-Antimatter Asymmetry and Open Questions","The universe is made of matter, with about one extra baryon for every billion photons and no antimatter regions. Sakharov identified the three conditions any dynamical explanation must meet: baryon-number violation, C and CP violation, and a departure from thermal equilibrium. The Standard Model contains all three in principle, but its CP violation falls short by some ten orders of magnitude, so baryogenesis requires new physics — leptogenesis being the leading route. A closing survey collects the open questions and the experiments aimed at them.\n",{"path":7594,"title":7595,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7597,"title":7598,"module":7599,"summary":7600},"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars","The Sun and the Life of Stars","Orientation","The Sun is the one star close enough to study in detail: its luminosity fixes a surface temperature of 5780 K, and the proton-proton fusion cycle in its 1.5-million-kelvin core supplies its power. Measuring other stars needs the magnitude scale, parallax, and the distance ladder; plotting luminosity against temperature builds the Hertzsprung-Russell diagram, on which a star's mass sets its lifetime and its evolutionary track off the main sequence.\n",{"path":7602,"title":7603,"module":7599,"summary":7604},"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states","Cataclysmic Events and the Final States of Stars","A star's death is set by its mass. In close binaries, matter poured across the Roche lobe onto a white dwarf produces novae and, at the Chandrasekhar limit of 1.4 solar masses, a Type Ia supernova; a massive star fusing to an iron core collapses into a Type II supernova. The remnant is a white dwarf held by electron degeneracy, a neutron star held by neutron degeneracy, or, above the neutron-star limit, a black hole inside its Schwarzschild radius.\n",{"path":7606,"title":7607,"module":7599,"summary":7608},"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology","Galaxies, Cosmology, and the Evolving Universe","Galaxies come in elliptical, spiral, and irregular forms, and their redshifts obey Hubble's law, evidence that space itself is expanding. The critical density and the density parameter decide whether the universe is open, flat, or closed; baryons, dark matter, and dark energy each contribute. The cosmic microwave background and primordial helium anchor the Big Bang, whose thermal history runs from inflation through nucleosynthesis to the atoms of today.\n",{"path":7610,"title":7611,"module":7612,"summary":7613},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus","Magnitudes, Fluxes, and the Distance Modulus","Observational Foundations","The brightness of a star reaches us as a radiant flux that falls off as the inverse square of distance. The magnitude scale encodes flux logarithmically through the Pogson ratio; the apparent and absolute magnitudes differ by the distance modulus, which converts a measured brightness into a distance. The bolometric correction folds a filtered magnitude into a total luminosity, and the difference of two magnitudes in different bands, the color index, measures surface temperature.\n",{"path":7615,"title":7616,"module":7612,"summary":7617},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification","Stellar Spectra and Spectral Classification","A stellar spectrum is a continuum crossed by absorption lines whose strengths are set by the temperature of the atmosphere. The Boltzmann factor governs how atoms populate excited states, and the Saha equation governs how they ionize; their product explains why each line, such as the hydrogen Balmer series, peaks in strength at a characteristic temperature. This behavior orders stars into the OBAFGKM sequence, and the luminosity classes of the MK system add a second dimension for surface gravity.\n",{"path":7619,"title":7620,"module":7612,"summary":7621},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum","Telescopes and Detectors Across the Spectrum","A telescope collects light in proportion to its collecting area and resolves detail down to the diffraction limit set by its aperture and the observing wavelength. The atmosphere blurs and blocks large parts of the spectrum, which drives the choice between ground and space and between refractors, reflectors, and radio dishes. CCDs record the light with high quantum efficiency, and interferometry synthesizes an aperture as large as the separation of two telescopes.\n",{"path":7623,"title":7624,"module":7612,"summary":7625},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder","The Cosmic Distance Ladder","No single method measures distances from the nearest stars to the far reaches of the universe. Instead a ladder of overlapping techniques, each calibrated by the one below it, extends the scale rung by rung: trigonometric parallax, main-sequence fitting, pulsating variables, the tip of the red-giant branch, the Tully-Fisher relation, and Type Ia supernovae. Each rung inherits the uncertainty of every rung beneath it, so the whole chain sets the accuracy of the Hubble constant.\n",{"path":7627,"title":7628,"module":7629,"summary":7630},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity","Blackbody Radiation and Specific Intensity","Radiation and Matter","Specific intensity is the fundamental measure of a radiation field: energy per unit area, time, frequency, and solid angle. It is conserved along a ray in empty space, and its angular moments give the mean intensity, flux, and radiation pressure. In thermal equilibrium the intensity equals the Planck function, whose limits and integrals reproduce the Rayleigh-Jeans law, the Wien law, Stefan-Boltzmann, and Wien's displacement law.\n",{"path":7632,"title":7633,"module":7629,"summary":7634},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation","Radiative Transfer and the Transfer Equation","Along a ray, matter adds intensity through emission and removes it through absorption. Measuring path length in optical depth turns this into the transfer equation, whose formal solution superposes an attenuated background on the source function integrated along the line of sight. In local thermodynamic equilibrium the source function is the Planck function, and the Eddington-Barbier relation shows that the emergent intensity samples the source function at optical depth of order unity, explaining absorption lines and solar limb darkening.\n",{"path":7636,"title":7637,"module":7629,"summary":7638},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening","Spectral-Line Formation and Broadening","A spectral line is a bound-bound transition whose strength is set by an oscillator strength and whose shape is set by three broadening mechanisms: the Lorentzian natural and collisional wings, the Gaussian thermal Doppler core, and their Voigt convolution. Equivalent width measures the total absorption, and the curve of growth relates it to the number of absorbers through a linear, saturated, and damping regime, turning line strengths into abundances.\n",{"path":7640,"title":7641,"module":7629,"summary":7642},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean","Opacity Sources and the Rosseland Mean","Stellar opacity comes from four processes: bound-bound line absorption, bound-free photoionization, free-free absorption, and electron scattering. The bound-free and free-free terms follow a Kramers law, electron scattering sets a frequency-flat floor, and the negative hydrogen ion dominates cool photospheres. The Rosseland mean averages these harmonically, weighting transparent frequencies because they carry the flux, and its value fixes the radiative temperature gradient and decides where a star becomes convective.\n",{"path":7644,"title":7645,"module":7646,"summary":7647},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem","Hydrostatic Equilibrium and the Virial Theorem","Stellar Structure","A star holds itself up by balancing the inward pull of gravity against an outward pressure gradient. This balance, hydrostatic equilibrium, fixes a lower bound on the central pressure and, combined with the gravitational potential energy, yields the virial theorem. The virial relation gives a star a negative heat capacity, so that losing energy makes it hotter, and sets the Kelvin-Helmholtz timescale over which contraction alone can power the Sun.\n",{"path":7649,"title":7650,"module":7646,"summary":7651},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure","The Equations of Stellar Structure","A static star is described by four coupled first-order differential equations in the interior mass or radius: mass conservation, hydrostatic equilibrium, energy generation, and energy transport. Closed with an equation of state, opacity, and reaction rates, and subject to central and surface boundary conditions, they determine the structure uniquely from mass and composition, the Vogt-Russell theorem. Energy moves by radiation until the temperature gradient exceeds the Schwarzschild limit, where convection takes over.\n",{"path":7653,"title":7654,"module":7646,"summary":7655},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes","The Equation of State and Polytropes","Stellar pressure comes from gas, radiation, and, at high density, degenerate electrons. When pressure depends on density as a power law, hydrostatic equilibrium reduces to the Lane-Emden equation, whose solutions describe polytropes of index n. The relativistic degenerate case, n equal to three, gives a mass independent of radius, the Chandrasekhar mass. Eddington's standard model treats a radiation-supported star as an n equal to three polytrope and yields the quartic relating radiation fraction to mass.\n",{"path":7657,"title":7658,"module":7646,"summary":7659},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model","The Standard Solar Model","The standard solar model integrates the structure equations for one solar mass and calibrates the composition and convection parameter to reproduce the Sun's observed luminosity, radius, and age. Helioseismology tests the model's sound speed through the Sun's acoustic p-mode oscillations, and the model predicts a neutrino flux by production channel. The measured deficit, the solar-neutrino problem, is resolved by matter-enhanced flavor oscillation, confirmed when SNO measured the total flux across all flavors.\n",{"path":7661,"title":7662,"module":7663,"summary":7664},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak","Thermonuclear Reaction Rates and the Gamow Peak","Nuclear Astrophysics","Stellar fusion proceeds only by quantum tunneling through the Coulomb barrier, because thermal energies are a thousand times smaller than the barrier height. The reaction rate is an integral over the Maxwell–Boltzmann distribution and the tunneling probability, whose product is sharply peaked at the Gamow energy. The astrophysical S-factor isolates the nuclear physics from the barrier penetration, and the steep temperature dependence follows from the width and position of the Gamow peak.\n",{"path":7666,"title":7667,"module":7663,"summary":7668},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno","Hydrogen Burning: pp Chains and the CNO Cycle","Four protons fuse into one helium-4 nucleus, releasing 26.7 MeV, through two competing networks. The pp chain begins with a weak-interaction bottleneck and branches three ways; the CNO cycle uses carbon, nitrogen, and oxygen as catalysts and is limited by nitrogen-14 proton capture. Their steep and gentle temperature dependences cross near 1.8e7 K, which divides pp-powered lower-main-sequence stars from CNO-powered upper-main-sequence stars.\n",{"path":7670,"title":7671,"module":7663,"summary":7672},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process","Helium Burning and the Triple-Alpha Process","Helium fuses to carbon in two steps through the unbound beryllium-8 nucleus and a resonant excited state of carbon-12, the Hoyle state, whose existence was predicted from the observed carbon abundance. The rate scales as roughly the fortieth power of temperature, and in a degenerate low-mass core this drives the runaway helium flash. A competing alpha capture on carbon-12 sets the carbon-to-oxygen ratio and the composition of the resulting white dwarf.\n",{"path":7674,"title":7675,"module":7663,"summary":7676},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis","Advanced Burning, the Iron Peak, and the s\u002Fr Processes","Massive stars burn carbon, neon, oxygen, and silicon in ever-shorter stages, building an onion-shell interior and reaching nuclear statistical equilibrium at the iron peak, where the binding-energy-per-nucleon curve turns over and fusion can release no more energy. Elements beyond iron form by neutron capture: the slow s-process in AGB stars tracks the valley of stability, while the rapid r-process in supernovae and neutron-star mergers builds the heaviest nuclei far from it.\n",{"path":7678,"title":7679,"module":7680,"summary":7681},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium","The Phases of the Interstellar Medium","The Interstellar Medium","The gas between the stars separates into distinct thermal phases, from cold molecular clouds at 10 K to a diffuse million-degree corona, held near a common pressure by a balance of photoelectric heating and radiative cooling. Neutral hydrogen is traced by the 21-cm hyperfine line, dust reddens and extinguishes starlight along a characteristic wavelength law, and the ultraviolet output of hot stars carves ionized Strömgren spheres out of the surrounding gas.\n",{"path":7683,"title":7684,"module":7680,"summary":7685},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse","Molecular Clouds and Gravitational Collapse","Stars form in cold, dense molecular clouds when self-gravity overcomes thermal and magnetic support. The virial theorem fixes the Jeans mass and length at which a clump becomes unstable, the free-fall time sets how fast it collapses, and a fragmentation cascade — cut off at a minimum mass by the onset of opacity — turns one cloud into a whole cluster, imprinting the stellar initial mass function.\n",{"path":7687,"title":7688,"module":7680,"summary":7689},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence","Protostars and Pre-Main-Sequence Evolution","A collapsing core becomes optically thick and forms a protostar that grows by accretion through a disk while driving bipolar outflows. The newborn star appears on the birthline and contracts down the fully convective Hayashi track, then crosses the radiative Henyey track to the zero-age main sequence, powered by gravitational contraction until hydrogen ignites. Below about 0.08 solar masses degeneracy halts contraction before ignition, dividing stars from brown dwarfs.\n",{"path":7691,"title":7692,"module":7693,"summary":7694},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure","The Main Sequence and Its Structure","Stellar Evolution","A star settles onto the zero-age main sequence when core hydrogen ignition halts contraction. Homology scaling of the structure equations reproduces the mass–luminosity relation, and the burning mode splits the sequence into an upper branch with a convective core and a lower branch with a convective envelope. The main-sequence lifetime falls steeply with mass, and the turnoff of a coeval cluster serves as a clock.\n",{"path":7696,"title":7697,"module":7693,"summary":7698},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution","Post-Main-Sequence Evolution of Low-Mass Stars","When a low-mass star exhausts core hydrogen, burning moves to a shell, the core contracts, and the envelope swells into a red giant. A degenerate helium core ignites in a flash, settles onto the horizontal branch, and after a second contraction the star climbs the asymptotic giant branch with two burning shells. Thermal pulses and dredge-up enrich the surface, and mass loss ejects a planetary nebula, leaving a carbon–oxygen white dwarf.\n",{"path":7700,"title":7701,"module":7693,"summary":7702},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars","The Evolution of Massive Stars","Stars above about eight solar masses burn through hydrogen, helium, carbon, neon, oxygen, and silicon in stages that grow shorter as neutrino losses accelerate contraction. The interior becomes an onion of concentric burning shells around an inert iron core. Radiation pressure near the Eddington limit drives fierce winds that can strip the hydrogen envelope entirely, and silicon burning builds an iron core toward the threshold of collapse.\n",{"path":7704,"title":7705,"module":7693,"summary":7706},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip","Stellar Pulsation and the Instability Strip","Radial pulsation is a standing sound wave whose period scales inversely with the square root of the mean density. The kappa mechanism, an opacity valve seated in the helium partial-ionization zone, turns a star into a heat engine that pumps the oscillation. Stars in the instability strip pulsate as Cepheids, RR Lyrae, and Mira variables, and the Cepheid period–luminosity relation calibrates the distance ladder.\n",{"path":7708,"title":6124,"module":7709,"summary":7710},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","Stellar Death and Compact Remnants","A white dwarf is held up by the degeneracy pressure of its electrons, a quantum-mechanical stiffness that survives to zero temperature. Filling the Fermi sea sets a pressure that scales as density to the five-thirds power when the electrons are slow and only four-thirds when they are relativistic. The softer relativistic law produces the inverted mass-radius relation and a maximum mass, the Chandrasekhar limit near 1.4 solar masses, above which no cold equilibrium exists. Cooling and crystallization then turn the white-dwarf population into a clock for the Galactic disk.\n",{"path":7712,"title":7713,"module":7709,"summary":7714},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae","Core-Collapse Supernovae","When a massive star builds an iron core past the Chandrasekhar mass, degeneracy fails and the core collapses in less than a second. Photodisintegration and electron capture remove pressure support and neutronize the matter; the collapse halts abruptly at nuclear density, launching a shock that stalls and is revived by neutrino heating. The event is a Type II or stripped-envelope Ib\u002FIc supernova, and the neutrinos from SN 1987A confirmed the picture directly.\n",{"path":7716,"title":7717,"module":7709,"summary":7718},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia","Thermonuclear Supernovae","A carbon-oxygen white dwarf driven toward the Chandrasekhar mass ignites its degenerate fuel and unbinds itself in a thermonuclear runaway, the Type Ia supernova. The light curve is powered by the radioactive decay of nickel-56 to cobalt-56 to iron-56, and the Phillips relation between peak brightness and decline rate makes these events standardizable candles. Their near-uniform luminosity turns them into the distance indicators that revealed cosmic acceleration.\n",{"path":7720,"title":7721,"module":7709,"summary":7722},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars","Neutron Stars and Pulsars","A neutron star is held up by neutron degeneracy and the repulsive nuclear force, with a maximum mass, the Tolman-Oppenheimer-Volkoff limit, set by an uncertain dense-matter equation of state. Its rotating magnetic dipole sweeps a beam past Earth as a pulsar, and magnetic braking traces a track across the period-period- derivative diagram. Millisecond pulsars, magnetars, glitches, and the orbital decay of the Hulse-Taylor binary follow from the same structure.\n",{"path":7724,"title":7725,"module":7709,"summary":7726},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr","Black Holes, Schwarzschild and Kerr","Above the neutron-star mass limit gravity wins completely and the remnant is a black hole. The Schwarzschild solution gives the event horizon, gravitational redshift, and time dilation; the innermost stable circular orbit sets the efficiency of accretion. Rotating Kerr black holes drag spacetime and carry an ergosphere. Stellar-mass black holes are found in X-ray binaries, and the Event Horizon Telescope has imaged the shadow of a supermassive one.\n",{"path":7728,"title":7729,"module":7730,"summary":7731},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer","Binary Systems and Mass Transfer","Binaries and Gravitational Waves","Most stars are born in pairs, and a binary is the only setting where a stellar mass can be measured directly. Visual, spectroscopic, and eclipsing binaries each expose a different combination of the orbital elements, and together they calibrate the mass-luminosity relation. When one star swells to fill its Roche lobe, gas streams through the inner Lagrange point onto its companion. Conservative transfer widens or shrinks the orbit depending on the mass ratio, and the sign of that response explains the Algol paradox.\n",{"path":7733,"title":7734,"module":7730,"summary":7735},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects","Accreting Compact Objects","Gas falling onto a compact object converts gravitational binding energy into radiation with an efficiency set by the depth of the potential well, up to tens of percent of the rest mass for a neutron star or black hole. Angular momentum forces the flow into a disk, and viscous dissipation gives a temperature profile that falls as radius to the minus three-quarters, producing a multicolor blackbody spectrum. Radiation pressure caps the steady luminosity at the Eddington limit. Unstable nuclear burning of the accreted fuel powers classical novae on white dwarfs and Type I X-ray bursts on neutron stars.\n",{"path":7737,"title":7738,"module":7730,"summary":7739},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries","Gravitational Waves from Inspiraling Binaries","A time-varying mass quadrupole radiates gravitational waves, ripples in spacetime that stretch and squeeze a ring of free masses along two polarizations. The radiated power drains a binary's orbital energy, shrinking the orbit and sweeping the wave frequency upward in a chirp whose rate fixes the chirp mass. Laser interferometers with kilometre arms measure the resulting strain of order ten to the minus twenty-one. The first detection, GW150914, matched a template for two merging black holes near thirty solar masses each.\n",{"path":7741,"title":7742,"module":7730,"summary":7743},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts","Multimessenger Astronomy and Gamma-Ray Bursts","Gamma-ray bursts split into two populations: long bursts from the collapse of massive stars and short bursts from merging compact objects. The compactness problem forces the emitting plasma to move at ultra-relativistic speed, beaming the radiation into a narrow jet. The neutron-star merger GW170817 tied a gravitational chirp to a short gamma-ray burst, a radioactive kilonova, and a broadband afterglow, confirming that mergers forge r-process elements. A merger with a measured redshift is a standard siren that reads the Hubble constant from gravitational data alone.\n",{"path":7745,"title":7746,"module":7747,"summary":7748},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way","The Milky Way Galaxy","Galaxies and Dark Matter","The Galaxy resolves into a thin disk of gas and young stars, a central bar and bulge, and a diffuse old halo studded with globular clusters. Star counts and the reddening of distant light map these components, while the differential rotation of the disk — encoded in the Oort constants and the flat rotation curve — measures the enclosed mass and reveals more than the stars can account for. Spiral arms are density waves, not material structures, and the innermost stellar orbits around Sgr A* weigh a four-million-solar-mass black hole.\n",{"path":7750,"title":7751,"module":7747,"summary":7752},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification","Galaxy Morphology and Classification","Galaxies sort along the Hubble tuning fork from smooth ellipticals through lenticulars to grand-design and barred spirals, with irregulars off the end. The light of a spheroid follows the de Vaucouleurs quarter-power law while a disk fades exponentially, and the general Sérsic profile interpolates between them. Virial scaling relations — Tully–Fisher for disks, Faber–Jackson and the fundamental plane for spheroids — tie luminosity to internal motions, and the Schechter function fixes the abundance of galaxies as a function of luminosity.\n",{"path":7754,"title":7755,"module":7747,"summary":7756},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter","Galaxy Rotation Curves and Dark Matter","The rotation curves of disk galaxies stay flat far beyond the light, demanding an extended halo whose density falls as the inverse square of radius. Decomposing the curve into disk, bulge, and halo, and fitting isothermal or NFW profiles, quantifies the missing mass. Gravitational lensing weighs the same mass without dynamics, the mass-to-light ratio climbs from stars to clusters, and the Bullet Cluster separates the collisionless dark matter from the colliding gas — evidence that MOND strains to match.\n",{"path":7758,"title":7759,"module":7747,"summary":7760},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes","Active Galactic Nuclei","A small fraction of galaxies pour out enormous luminosity from a region smaller than the solar system. Accretion onto a supermassive black hole, limited by the Eddington balance of radiation pressure and gravity, powers the Seyferts, quasars, radio galaxies, and blazars — one engine seen from different angles through an obscuring torus. Relativistic jets produce apparent superluminal motion, reverberation mapping and stellar dynamics weigh the central mass, and the M–sigma relation ties that mass to the host bulge.\n",{"path":7762,"title":7763,"module":7747,"summary":7764},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure","Galaxy Clusters and Large-Scale Structure","Galaxies gather into groups and rich clusters bound by a common dark halo and filled with hot X-ray gas. Three independent probes — the virial theorem, the hydrostatic X-ray temperature, and gravitational lensing — agree on a mass that dwarfs the stars. On the largest scales galaxies trace a cosmic web of filaments, walls, and voids, quantified by the two-point correlation function, whose baryon acoustic oscillation bump provides a standard ruler for cosmology.\n",{"path":7766,"title":7767,"module":7768,"summary":7769},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law","The Expanding Universe and Hubble's Law","Cosmic Expansion and Dynamics","The universe is homogeneous and isotropic on large scales, so its expansion is captured by a single function of time, the scale factor. Comoving coordinates stay fixed while proper distances grow in proportion to the scale factor, producing Hubble's law and a cosmological redshift that measures stretched space rather than a Doppler shift. A Newtonian energy argument reproduces the dynamics, and the same finite, expanding cosmos resolves Olbers' paradox.\n",{"path":7771,"title":7772,"module":7768,"summary":7773},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift","The FRW Metric and Cosmological Redshift","The geometry of a homogeneous, isotropic universe is fixed by symmetry to the Robertson-Walker metric, with the entire freedom reduced to a scale factor and a single curvature constant selecting an open, flat, or closed space. From the metric the null geodesic of light gives comoving distance, the exact cosmological redshift, and the distinction between the proper distance we cannot measure and the redshift we can.\n",{"path":7775,"title":4842,"module":7768,"summary":7776},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics","The scale factor obeys the Friedmann equation, the acceleration equation, and the fluid equation, only two of which are independent. An equation of state fixes how each component behaves under expansion, so radiation dilutes as the inverse fourth power of the scale factor, matter as the inverse cube, and vacuum energy not at all. The critical density defines the density parameters, and the deceleration parameter encodes whether gravity or dark energy is winning.\n",{"path":7778,"title":7779,"module":7768,"summary":7780},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances","Cosmological Models and Distances","Integrating the Friedmann equation for particular mixtures gives the benchmark models, from the matter-only Einstein-de Sitter universe to the concordance Lambda-CDM, each with its own scale-factor history and age. Because the redshift is the only direct observable, several distance measures diverge at high redshift, and the angular-diameter distance even turns over so that the most distant objects look larger. The horizon and lookback time set what is causally and observationally reachable.\n",{"path":7782,"title":7783,"module":7768,"summary":7784},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe","Dark Energy and the Accelerating Universe","In 1998 two teams found that distant Type Ia supernovae are fainter than a decelerating universe predicts, revealing that the expansion is accelerating and that a component with negative pressure dominates the energy budget. The simplest candidate is the cosmological constant, or vacuum energy, with an equation of state near minus one. It works observationally but leaves two deep puzzles: why the vacuum energy is a hundred and twenty orders of magnitude smaller than expected, and why it is comparable to the matter density just now.\n",{"path":7786,"title":7787,"module":7788,"summary":7789},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe","The Thermal History of the Universe","The Hot Big Bang","Running the expansion backward compresses and heats the universe, so its past is a sequence of thermal epochs set by temperature. Temperature scales as the inverse scale factor; species stay in equilibrium while their interaction rate exceeds the expansion rate and freeze out when it drops below. The effective degrees of freedom count the relativistic species and step down through mass thresholds, and neutrino decoupling just before electron-positron annihilation leaves a relic neutrino background slightly cooler than the photons.\n",{"path":7791,"title":7792,"module":7788,"summary":7793},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis","Big Bang Nucleosynthesis","In the first three minutes the weak interactions freeze out the neutron-to-proton ratio, and once deuterium survives photodissociation a fast reaction network converts nearly all free neutrons into helium-4. The primordial abundances of deuterium, helium-3, helium-4, and lithium-7 depend on a single free parameter, the baryon-to-photon ratio, so measuring them fixes the baryon density. The predictions match observation across nine decades of abundance, with a persistent discrepancy in lithium-7.\n",{"path":7795,"title":7796,"module":7788,"summary":7797},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background","Recombination and the Cosmic Microwave Background","As the universe cooled through a few thousand kelvin the free electrons bound to protons, and the Saha equation tracks the falling ionization fraction. Once the plasma neutralized, photons stopped scattering and streamed freely from a spherical surface of last scattering at redshift about 1100. Those photons are the cosmic microwave background, an almost perfect blackbody at 2.725 kelvin with a dipole from our motion through it.\n",{"path":7799,"title":7800,"module":7788,"summary":7801},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters","CMB Anisotropies and Cosmological Parameters","The cosmic microwave background carries temperature fluctuations at the ten-parts-per-million level, imprinted by sound waves in the photon-baryon plasma before recombination. Decomposed into spherical harmonics, the fluctuations form an angular power spectrum whose acoustic peaks encode the geometry and contents of the universe: the first peak fixes spatial flatness, the odd-even peak ratio the baryon density, and the third peak the dark-matter density. Polarization adds an independent channel, and the Planck measurements pin the concordance parameters.\n",{"path":7803,"title":7804,"module":7788,"summary":7805},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation","Cosmic Inflation","The hot Big Bang leaves three initial-condition puzzles unexplained: why causally disconnected patches share a temperature, why the geometry is so nearly flat, and why no magnetic monopoles are seen. A brief epoch of accelerated expansion driven by a slowly rolling scalar field solves all three by stretching a small causal patch across the observable universe. The same accelerated expansion freezes quantum fluctuations into a near-scale-invariant spectrum of density perturbations, seeding all later structure.\n",{"path":7807,"title":7808,"module":7788,"summary":7809},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations","Structure Formation and the Growth of Perturbations","The near-uniform early universe grew its galaxies and clusters by gravitational instability acting on the tiny inflationary perturbations. In an expanding background the growth is slowed to a power law rather than the exponential of a static medium; perturbations stall during radiation domination and grow with the scale factor once matter dominates. The transfer function turns the primordial spectrum into the processed matter power spectrum, and cold dark matter builds structure from the bottom up.\n",{"path":7811,"title":7812,"module":7788,"summary":7813},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions","Dark Matter, Dark Energy, and Open Questions","Five independent lines of evidence converge on a universe whose energy budget is dominated by dark energy and dark matter, with ordinary baryons a small remainder. The candidate particles for dark matter range from WIMPs to axions to sterile neutrinos, each with its own detection strategy. The concordance model fits the data with six parameters but leaves the nature of dark energy, the Hubble tension, small-scale structure, and the matter-antimatter asymmetry unexplained.\n",{"path":7815,"title":7816,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7818,"title":7819,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":7821,"title":7822,"module":306,"summary":306},"\u002F","Study Notes","\u003Csvg style=\"width:100%;max-width:291.635px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 218.726 62.674\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.203-36.886H71.37V-59.65H-65.203Z\"\u002F>\u003Cg transform=\"translate(-9.257 2.733)\">\u003Cpath d=\"M6.060-48.212L4.036-53.169Q3.954-53.341 3.761-53.388Q3.567-53.435 3.259-53.435L3.259-53.732L5.450-53.732L5.450-53.435Q4.825-53.435 4.825-53.220Q4.829-53.205 4.831-53.191Q4.833-53.177 4.837-53.169L6.497-49.076L8.083-52.955Q8.106-53.001 8.106-53.068Q8.106-53.251 7.937-53.343Q7.767-53.435 7.556-53.435L7.556-53.732L9.267-53.732L9.267-53.435Q8.970-53.435 8.739-53.320Q8.509-53.205 8.403-52.955L6.466-48.212Q6.427-48.099 6.298-48.099L6.228-48.099Q6.099-48.099 6.060-48.212M12.177-48.267L9.794-48.267L9.794-48.564Q10.118-48.564 10.360-48.611Q10.603-48.658 10.603-48.826L10.603-53.169Q10.603-53.341 10.360-53.388Q10.118-53.435 9.794-53.435L9.794-53.732L12.739-53.732Q13.083-53.732 13.438-53.632Q13.794-53.533 14.089-53.341Q14.384-53.150 14.565-52.865Q14.747-52.580 14.747-52.220Q14.747-51.747 14.437-51.412Q14.126-51.076 13.661-50.904Q13.196-50.732 12.739-50.732L11.372-50.732L11.372-48.826Q11.372-48.658 11.614-48.611Q11.856-48.564 12.177-48.564L12.177-48.267M11.345-53.169L11.345-51.001L12.521-51.001Q13.208-51.001 13.546-51.277Q13.884-51.552 13.884-52.220Q13.884-52.884 13.546-53.160Q13.208-53.435 12.521-53.435L11.747-53.435Q11.528-53.435 11.437-53.392Q11.345-53.349 11.345-53.169M17.478-48.267L15.556-48.267L15.556-48.564Q16.364-48.564 16.364-49.044L16.364-53.388Q16.106-53.435 15.556-53.435L15.556-53.732L17.052-53.732Q17.110-53.712 17.122-53.701L20.130-49.513L20.130-52.955Q20.130-53.435 19.325-53.435L19.325-53.732L21.243-53.732L21.243-53.435Q20.435-53.435 20.435-52.955L20.435-48.372Q20.415-48.287 20.341-48.267L20.235-48.267Q20.181-48.279 20.165-48.306L16.669-53.162L16.669-49.044Q16.669-48.564 17.478-48.564\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M71.77-36.886h68.286V-59.65H71.77Z\"\u002F>\u003Cg transform=\"translate(93.45 2.733)\">\u003Cpath d=\"M6.060-48.212L4.036-53.169Q3.954-53.341 3.761-53.388Q3.567-53.435 3.259-53.435L3.259-53.732L5.450-53.732L5.450-53.435Q4.825-53.435 4.825-53.220Q4.829-53.205 4.831-53.191Q4.833-53.177 4.837-53.169L6.497-49.076L8.083-52.955Q8.106-53.001 8.106-53.068Q8.106-53.251 7.937-53.343Q7.767-53.435 7.556-53.435L7.556-53.732L9.267-53.732L9.267-53.435Q8.970-53.435 8.739-53.320Q8.509-53.205 8.403-52.955L6.466-48.212Q6.427-48.099 6.298-48.099L6.228-48.099Q6.099-48.099 6.060-48.212M12.177-48.267L9.794-48.267L9.794-48.564Q10.118-48.564 10.360-48.611Q10.603-48.658 10.603-48.826L10.603-53.169Q10.603-53.341 10.360-53.388Q10.118-53.435 9.794-53.435L9.794-53.732L12.739-53.732Q13.083-53.732 13.438-53.632Q13.794-53.533 14.089-53.341Q14.384-53.150 14.565-52.865Q14.747-52.580 14.747-52.220Q14.747-51.747 14.437-51.412Q14.126-51.076 13.661-50.904Q13.196-50.732 12.739-50.732L11.372-50.732L11.372-48.826Q11.372-48.658 11.614-48.611Q11.856-48.564 12.177-48.564L12.177-48.267M11.345-53.169L11.345-51.001L12.521-51.001Q13.208-51.001 13.546-51.277Q13.884-51.552 13.884-52.220Q13.884-52.884 13.546-53.160Q13.208-53.435 12.521-53.435L11.747-53.435Q11.528-53.435 11.437-53.392Q11.345-53.349 11.345-53.169M18.524-48.099Q17.942-48.099 17.425-48.326Q16.907-48.552 16.519-48.951Q16.130-49.349 15.911-49.874Q15.692-50.400 15.692-50.970Q15.692-51.740 16.067-52.417Q16.442-53.095 17.093-53.497Q17.743-53.900 18.524-53.900Q19.298-53.900 19.948-53.497Q20.599-53.095 20.974-52.417Q21.349-51.740 21.349-50.970Q21.349-50.400 21.128-49.869Q20.907-49.337 20.522-48.945Q20.138-48.552 19.620-48.326Q19.103-48.099 18.524-48.099M17.083-49.169Q17.247-48.939 17.478-48.763Q17.708-48.587 17.976-48.492Q18.243-48.396 18.524-48.396Q18.942-48.396 19.323-48.607Q19.704-48.818 19.954-49.169Q20.485-49.888 20.485-51.107Q20.485-51.736 20.270-52.314Q20.056-52.892 19.614-53.255Q19.173-53.619 18.524-53.619Q17.872-53.619 17.429-53.255Q16.985-52.892 16.770-52.314Q16.556-51.736 16.556-51.107Q16.556-49.888 17.083-49.169\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-64.954 -15.114)\">\u003Cpath d=\"M4.235-48.267L3.954-48.267L3.954-52.986Q3.954-53.201 3.892-53.296Q3.829-53.392 3.712-53.413Q3.595-53.435 3.349-53.435L3.349-53.732L4.571-53.818L4.571-51.330Q5.048-51.794 5.747-51.794Q6.228-51.794 6.636-51.550Q7.044-51.306 7.280-50.892Q7.517-50.478 7.517-49.994Q7.517-49.619 7.368-49.290Q7.220-48.962 6.950-48.710Q6.681-48.458 6.337-48.324Q5.993-48.189 5.634-48.189Q5.313-48.189 5.015-48.337Q4.716-48.486 4.509-48.747L4.235-48.267M4.595-50.939L4.595-49.099Q4.747-48.802 5.007-48.622Q5.267-48.443 5.579-48.443Q6.005-48.443 6.272-48.662Q6.540-48.880 6.655-49.226Q6.771-49.572 6.771-49.994Q6.771-50.642 6.522-51.091Q6.274-51.540 5.677-51.540Q5.341-51.540 5.052-51.382Q4.763-51.224 4.595-50.939M9.899-48.267L8.122-48.267L8.122-48.564Q8.396-48.564 8.563-48.611Q8.731-48.658 8.731-48.826L8.731-50.962Q8.731-51.177 8.675-51.273Q8.618-51.369 8.505-51.390Q8.392-51.412 8.146-51.412L8.146-51.708L9.345-51.794L9.345-48.826Q9.345-48.658 9.491-48.611Q9.638-48.564 9.899-48.564L9.899-48.267M8.458-53.189Q8.458-53.380 8.593-53.511Q8.728-53.642 8.923-53.642Q9.044-53.642 9.147-53.580Q9.251-53.517 9.313-53.413Q9.376-53.310 9.376-53.189Q9.376-52.994 9.245-52.859Q9.114-52.724 8.923-52.724Q8.724-52.724 8.591-52.857Q8.458-52.990 8.458-53.189M11.024-49.228L11.024-51.419L10.321-51.419L10.321-51.673Q10.677-51.673 10.919-51.906Q11.161-52.138 11.272-52.486Q11.384-52.833 11.384-53.189L11.665-53.189L11.665-51.716L12.841-51.716L12.841-51.419L11.665-51.419L11.665-49.244Q11.665-48.923 11.784-48.695Q11.903-48.466 12.185-48.466Q12.364-48.466 12.481-48.589Q12.599-48.712 12.651-48.892Q12.704-49.072 12.704-49.244L12.704-49.716L12.985-49.716L12.985-49.228Q12.985-48.974 12.880-48.734Q12.774-48.494 12.577-48.341Q12.380-48.189 12.122-48.189Q11.806-48.189 11.554-48.312Q11.302-48.435 11.163-48.669Q11.024-48.904 11.024-49.228\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.954 -15.114)\">\u003Cpath d=\"M18.474-48.267L16.619-48.267L16.619-48.564Q16.892-48.564 17.060-48.611Q17.228-48.658 17.228-48.826L17.228-50.962Q17.228-51.177 17.165-51.273Q17.103-51.369 16.984-51.390Q16.865-51.412 16.619-51.412L16.619-51.708L17.810-51.794L17.810-51.060Q17.923-51.275 18.117-51.443Q18.310-51.611 18.548-51.703Q18.786-51.794 19.040-51.794Q20.208-51.794 20.208-50.716L20.208-48.826Q20.208-48.658 20.378-48.611Q20.548-48.564 20.818-48.564L20.818-48.267L18.962-48.267L18.962-48.564Q19.236-48.564 19.404-48.611Q19.572-48.658 19.572-48.826L19.572-50.701Q19.572-51.083 19.451-51.312Q19.329-51.540 18.978-51.540Q18.665-51.540 18.411-51.378Q18.158-51.216 18.011-50.947Q17.865-50.677 17.865-50.380L17.865-48.826Q17.865-48.658 18.035-48.611Q18.204-48.564 18.474-48.564L18.474-48.267M23.376-49.716L21.122-49.716L21.122-50.267L23.376-50.267L23.376-49.716M27.451-48.267L24.658-48.267L24.658-48.564Q25.720-48.564 25.720-48.826L25.720-52.994Q25.290-52.779 24.611-52.779L24.611-53.076Q25.630-53.076 26.146-53.587L26.290-53.587Q26.365-53.568 26.384-53.490L26.384-48.826Q26.384-48.564 27.451-48.564\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(116.168 -15.114)\">\u003Cpath d=\"M4.235-48.267L3.954-48.267L3.954-52.986Q3.954-53.201 3.892-53.296Q3.829-53.392 3.712-53.413Q3.595-53.435 3.349-53.435L3.349-53.732L4.571-53.818L4.571-51.330Q5.048-51.794 5.747-51.794Q6.228-51.794 6.636-51.550Q7.044-51.306 7.280-50.892Q7.517-50.478 7.517-49.994Q7.517-49.619 7.368-49.290Q7.220-48.962 6.950-48.710Q6.681-48.458 6.337-48.324Q5.993-48.189 5.634-48.189Q5.313-48.189 5.015-48.337Q4.716-48.486 4.509-48.747L4.235-48.267M4.595-50.939L4.595-49.099Q4.747-48.802 5.007-48.622Q5.267-48.443 5.579-48.443Q6.005-48.443 6.272-48.662Q6.540-48.880 6.655-49.226Q6.771-49.572 6.771-49.994Q6.771-50.642 6.522-51.091Q6.274-51.540 5.677-51.540Q5.341-51.540 5.052-51.382Q4.763-51.224 4.595-50.939M9.899-48.267L8.122-48.267L8.122-48.564Q8.396-48.564 8.563-48.611Q8.731-48.658 8.731-48.826L8.731-50.962Q8.731-51.177 8.675-51.273Q8.618-51.369 8.505-51.390Q8.392-51.412 8.146-51.412L8.146-51.708L9.345-51.794L9.345-48.826Q9.345-48.658 9.491-48.611Q9.638-48.564 9.899-48.564L9.899-48.267M8.458-53.189Q8.458-53.380 8.593-53.511Q8.728-53.642 8.923-53.642Q9.044-53.642 9.147-53.580Q9.251-53.517 9.313-53.413Q9.376-53.310 9.376-53.189Q9.376-52.994 9.245-52.859Q9.114-52.724 8.923-52.724Q8.724-52.724 8.591-52.857Q8.458-52.990 8.458-53.189M11.024-49.228L11.024-51.419L10.321-51.419L10.321-51.673Q10.677-51.673 10.919-51.906Q11.161-52.138 11.272-52.486Q11.384-52.833 11.384-53.189L11.665-53.189L11.665-51.716L12.841-51.716L12.841-51.419L11.665-51.419L11.665-49.244Q11.665-48.923 11.784-48.695Q11.903-48.466 12.185-48.466Q12.364-48.466 12.481-48.589Q12.599-48.712 12.651-48.892Q12.704-49.072 12.704-49.244L12.704-49.716L12.985-49.716L12.985-49.228Q12.985-48.974 12.880-48.734Q12.774-48.494 12.577-48.341Q12.380-48.189 12.122-48.189Q11.806-48.189 11.554-48.312Q11.302-48.435 11.163-48.669Q11.024-48.904 11.024-49.228\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(116.168 -15.114)\">\u003Cpath d=\"M18.427-48.099Q17.724-48.099 17.324-48.499Q16.923-48.900 16.779-49.509Q16.634-50.119 16.634-50.818Q16.634-51.341 16.704-51.804Q16.775-52.267 16.968-52.679Q17.161-53.091 17.519-53.339Q17.876-53.587 18.427-53.587Q18.978-53.587 19.335-53.339Q19.693-53.091 19.884-52.681Q20.076-52.271 20.146-51.802Q20.216-51.333 20.216-50.818Q20.216-50.119 20.074-49.511Q19.931-48.904 19.531-48.501Q19.130-48.099 18.427-48.099M18.427-48.357Q18.900-48.357 19.132-48.792Q19.365-49.228 19.419-49.767Q19.474-50.306 19.474-50.947Q19.474-51.943 19.290-52.636Q19.107-53.330 18.427-53.330Q18.060-53.330 17.839-53.091Q17.619-52.853 17.523-52.496Q17.427-52.138 17.402-51.767Q17.376-51.396 17.376-50.947Q17.376-50.306 17.431-49.767Q17.486-49.228 17.718-48.792Q17.951-48.357 18.427-48.357\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-63.403-29.573H69.57\"\u002F>\u003Cpath stroke=\"none\" d=\"m-65.403-29.573 3.2 1.6-1.2-1.6 1.2-1.6M71.57-29.573l-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-14.427 27.783)\">\u003Cpath d=\"M5.251-48.267L3.396-48.267L3.396-48.564Q3.669-48.564 3.837-48.611Q4.005-48.658 4.005-48.826L4.005-50.962Q4.005-51.177 3.942-51.273Q3.880-51.369 3.761-51.390Q3.642-51.412 3.396-51.412L3.396-51.708L4.587-51.794L4.587-51.060Q4.700-51.275 4.894-51.443Q5.087-51.611 5.325-51.703Q5.563-51.794 5.817-51.794Q6.985-51.794 6.985-50.716L6.985-48.826Q6.985-48.658 7.155-48.611Q7.325-48.564 7.595-48.564L7.595-48.267L5.739-48.267L5.739-48.564Q6.013-48.564 6.181-48.611Q6.349-48.658 6.349-48.826L6.349-50.701Q6.349-51.083 6.228-51.312Q6.106-51.540 5.755-51.540Q5.442-51.540 5.188-51.378Q4.935-51.216 4.788-50.947Q4.642-50.677 4.642-50.380L4.642-48.826Q4.642-48.658 4.812-48.611Q4.981-48.564 5.251-48.564L5.251-48.267M10.153-49.716L7.899-49.716L7.899-50.267L10.153-50.267L10.153-49.716M12.755-46.716L10.899-46.716L10.899-47.009Q11.169-47.009 11.337-47.054Q11.505-47.099 11.505-47.275L11.505-51.099Q11.505-51.306 11.349-51.359Q11.192-51.412 10.899-51.412L10.899-51.708L12.122-51.794L12.122-51.330Q12.353-51.552 12.667-51.673Q12.981-51.794 13.321-51.794Q13.794-51.794 14.198-51.548Q14.603-51.302 14.835-50.886Q15.067-50.470 15.067-49.994Q15.067-49.619 14.919-49.290Q14.771-48.962 14.501-48.710Q14.231-48.458 13.888-48.324Q13.544-48.189 13.185-48.189Q12.896-48.189 12.624-48.310Q12.353-48.431 12.146-48.642L12.146-47.275Q12.146-47.099 12.313-47.054Q12.481-47.009 12.755-47.009L12.755-46.716M12.146-50.931L12.146-49.091Q12.298-48.802 12.560-48.622Q12.821-48.443 13.130-48.443Q13.415-48.443 13.638-48.581Q13.860-48.720 14.013-48.951Q14.165-49.181 14.243-49.453Q14.321-49.724 14.321-49.994Q14.321-50.326 14.196-50.683Q14.071-51.040 13.823-51.277Q13.575-51.513 13.228-51.513Q12.903-51.513 12.608-51.357Q12.313-51.201 12.146-50.931\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-14.427 27.783)\">\u003Cpath d=\"M19.347-48.267L19.066-48.267L19.066-52.986Q19.066-53.201 19.004-53.296Q18.941-53.392 18.824-53.413Q18.707-53.435 18.461-53.435L18.461-53.732L19.683-53.818L19.683-51.330Q20.160-51.794 20.859-51.794Q21.340-51.794 21.748-51.550Q22.156-51.306 22.392-50.892Q22.629-50.478 22.629-49.994Q22.629-49.619 22.480-49.290Q22.332-48.962 22.062-48.710Q21.793-48.458 21.449-48.324Q21.105-48.189 20.746-48.189Q20.425-48.189 20.127-48.337Q19.828-48.486 19.621-48.747L19.347-48.267M19.707-50.939L19.707-49.099Q19.859-48.802 20.119-48.622Q20.379-48.443 20.691-48.443Q21.117-48.443 21.384-48.662Q21.652-48.880 21.767-49.226Q21.883-49.572 21.883-49.994Q21.883-50.642 21.634-51.091Q21.386-51.540 20.789-51.540Q20.453-51.540 20.164-51.382Q19.875-51.224 19.707-50.939M25.011-48.267L23.234-48.267L23.234-48.564Q23.508-48.564 23.675-48.611Q23.843-48.658 23.843-48.826L23.843-50.962Q23.843-51.177 23.787-51.273Q23.730-51.369 23.617-51.390Q23.504-51.412 23.258-51.412L23.258-51.708L24.457-51.794L24.457-48.826Q24.457-48.658 24.603-48.611Q24.750-48.564 25.011-48.564L25.011-48.267M23.570-53.189Q23.570-53.380 23.705-53.511Q23.840-53.642 24.035-53.642Q24.156-53.642 24.259-53.580Q24.363-53.517 24.425-53.413Q24.488-53.310 24.488-53.189Q24.488-52.994 24.357-52.859Q24.226-52.724 24.035-52.724Q23.836-52.724 23.703-52.857Q23.570-52.990 23.570-53.189M26.136-49.228L26.136-51.419L25.433-51.419L25.433-51.673Q25.789-51.673 26.031-51.906Q26.273-52.138 26.384-52.486Q26.496-52.833 26.496-53.189L26.777-53.189L26.777-51.716L27.953-51.716L27.953-51.419L26.777-51.419L26.777-49.244Q26.777-48.923 26.896-48.695Q27.015-48.466 27.297-48.466Q27.476-48.466 27.593-48.589Q27.711-48.712 27.763-48.892Q27.816-49.072 27.816-49.244L27.816-49.716L28.097-49.716L28.097-49.228Q28.097-48.974 27.992-48.734Q27.886-48.494 27.689-48.341Q27.492-48.189 27.234-48.189Q26.918-48.189 26.666-48.312Q26.414-48.435 26.275-48.669Q26.136-48.904 26.136-49.228M28.859-48.275L28.859-49.497Q28.859-49.525 28.890-49.556Q28.922-49.587 28.945-49.587L29.050-49.587Q29.121-49.587 29.136-49.525Q29.199-49.205 29.338-48.964Q29.476-48.724 29.709-48.583Q29.941-48.443 30.250-48.443Q30.488-48.443 30.697-48.503Q30.906-48.564 31.043-48.712Q31.179-48.861 31.179-49.107Q31.179-49.361 30.968-49.527Q30.758-49.693 30.488-49.747L29.867-49.861Q29.461-49.939 29.160-50.195Q28.859-50.451 28.859-50.826Q28.859-51.193 29.060-51.415Q29.261-51.638 29.586-51.736Q29.910-51.833 30.250-51.833Q30.715-51.833 31.011-51.626L31.234-51.810Q31.258-51.833 31.289-51.833L31.340-51.833Q31.371-51.833 31.398-51.806Q31.425-51.779 31.425-51.747L31.425-50.763Q31.425-50.732 31.400-50.703Q31.375-50.673 31.340-50.673L31.234-50.673Q31.199-50.673 31.172-50.701Q31.144-50.728 31.144-50.763Q31.144-51.162 30.892-51.382Q30.640-51.603 30.242-51.603Q29.886-51.603 29.603-51.480Q29.320-51.357 29.320-51.052Q29.320-50.833 29.521-50.701Q29.722-50.568 29.968-50.525L30.593-50.412Q31.023-50.322 31.332-50.025Q31.640-49.728 31.640-49.314Q31.640-48.744 31.242-48.466Q30.843-48.189 30.250-48.189Q29.699-48.189 29.347-48.525L29.050-48.212Q29.027-48.189 28.992-48.189L28.945-48.189Q28.922-48.189 28.890-48.220Q28.859-48.251 28.859-48.275\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M73.57-29.573h64.686\"\u002F>\u003Cpath stroke=\"none\" d=\"m71.57-29.573 3.2 1.6-1.2-1.6 1.2-1.6M140.256-29.573l-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(92.181 27.783)\">\u003Cpath d=\"M5.204-46.716L3.349-46.716L3.349-47.009Q3.618-47.009 3.786-47.054Q3.954-47.099 3.954-47.275L3.954-51.099Q3.954-51.306 3.798-51.359Q3.642-51.412 3.349-51.412L3.349-51.708L4.571-51.794L4.571-51.330Q4.802-51.552 5.116-51.673Q5.431-51.794 5.771-51.794Q6.243-51.794 6.647-51.548Q7.052-51.302 7.284-50.886Q7.517-50.470 7.517-49.994Q7.517-49.619 7.368-49.290Q7.220-48.962 6.950-48.710Q6.681-48.458 6.337-48.324Q5.993-48.189 5.634-48.189Q5.345-48.189 5.073-48.310Q4.802-48.431 4.595-48.642L4.595-47.275Q4.595-47.099 4.763-47.054Q4.931-47.009 5.204-47.009L5.204-46.716M4.595-50.931L4.595-49.091Q4.747-48.802 5.009-48.622Q5.271-48.443 5.579-48.443Q5.864-48.443 6.087-48.581Q6.310-48.720 6.462-48.951Q6.614-49.181 6.692-49.453Q6.771-49.724 6.771-49.994Q6.771-50.326 6.646-50.683Q6.521-51.040 6.272-51.277Q6.024-51.513 5.677-51.513Q5.353-51.513 5.058-51.357Q4.763-51.201 4.595-50.931\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(92.181 27.783)\">\u003Cpath d=\"M11.791-48.267L11.510-48.267L11.510-52.986Q11.510-53.201 11.448-53.296Q11.385-53.392 11.268-53.413Q11.151-53.435 10.905-53.435L10.905-53.732L12.127-53.818L12.127-51.330Q12.604-51.794 13.303-51.794Q13.784-51.794 14.192-51.550Q14.600-51.306 14.836-50.892Q15.073-50.478 15.073-49.994Q15.073-49.619 14.924-49.290Q14.776-48.962 14.506-48.710Q14.237-48.458 13.893-48.324Q13.549-48.189 13.190-48.189Q12.869-48.189 12.571-48.337Q12.272-48.486 12.065-48.747L11.791-48.267M12.151-50.939L12.151-49.099Q12.303-48.802 12.563-48.622Q12.823-48.443 13.135-48.443Q13.561-48.443 13.828-48.662Q14.096-48.880 14.211-49.226Q14.326-49.572 14.326-49.994Q14.326-50.642 14.078-51.091Q13.830-51.540 13.233-51.540Q12.897-51.540 12.608-51.382Q12.319-51.224 12.151-50.939M17.455-48.267L15.678-48.267L15.678-48.564Q15.951-48.564 16.119-48.611Q16.287-48.658 16.287-48.826L16.287-50.962Q16.287-51.177 16.231-51.273Q16.174-51.369 16.061-51.390Q15.948-51.412 15.701-51.412L15.701-51.708L16.901-51.794L16.901-48.826Q16.901-48.658 17.047-48.611Q17.194-48.564 17.455-48.564L17.455-48.267M16.014-53.189Q16.014-53.380 16.149-53.511Q16.284-53.642 16.479-53.642Q16.600-53.642 16.703-53.580Q16.807-53.517 16.869-53.413Q16.932-53.310 16.932-53.189Q16.932-52.994 16.801-52.859Q16.670-52.724 16.479-52.724Q16.280-52.724 16.147-52.857Q16.014-52.990 16.014-53.189M18.580-49.228L18.580-51.419L17.877-51.419L17.877-51.673Q18.233-51.673 18.475-51.906Q18.717-52.138 18.828-52.486Q18.940-52.833 18.940-53.189L19.221-53.189L19.221-51.716L20.397-51.716L20.397-51.419L19.221-51.419L19.221-49.244Q19.221-48.923 19.340-48.695Q19.459-48.466 19.741-48.466Q19.920-48.466 20.037-48.589Q20.155-48.712 20.207-48.892Q20.260-49.072 20.260-49.244L20.260-49.716L20.541-49.716L20.541-49.228Q20.541-48.974 20.436-48.734Q20.330-48.494 20.133-48.341Q19.936-48.189 19.678-48.189Q19.362-48.189 19.110-48.312Q18.858-48.435 18.719-48.669Q18.580-48.904 18.580-49.228M21.303-48.275L21.303-49.497Q21.303-49.525 21.334-49.556Q21.366-49.587 21.389-49.587L21.494-49.587Q21.565-49.587 21.580-49.525Q21.643-49.205 21.782-48.964Q21.920-48.724 22.153-48.583Q22.385-48.443 22.694-48.443Q22.932-48.443 23.141-48.503Q23.350-48.564 23.487-48.712Q23.623-48.861 23.623-49.107Q23.623-49.361 23.412-49.527Q23.201-49.693 22.932-49.747L22.311-49.861Q21.905-49.939 21.604-50.195Q21.303-50.451 21.303-50.826Q21.303-51.193 21.504-51.415Q21.705-51.638 22.030-51.736Q22.354-51.833 22.694-51.833Q23.159-51.833 23.455-51.626L23.678-51.810Q23.701-51.833 23.733-51.833L23.784-51.833Q23.815-51.833 23.842-51.806Q23.869-51.779 23.869-51.747L23.869-50.763Q23.869-50.732 23.844-50.703Q23.819-50.673 23.784-50.673L23.678-50.673Q23.643-50.673 23.616-50.701Q23.588-50.728 23.588-50.763Q23.588-51.162 23.336-51.382Q23.084-51.603 22.686-51.603Q22.330-51.603 22.047-51.480Q21.764-51.357 21.764-51.052Q21.764-50.833 21.965-50.701Q22.166-50.568 22.412-50.525L23.037-50.412Q23.467-50.322 23.776-50.025Q24.084-49.728 24.084-49.314Q24.084-48.744 23.686-48.466Q23.287-48.189 22.694-48.189Q22.143-48.189 21.791-48.525L21.494-48.212Q21.471-48.189 21.436-48.189L21.389-48.189Q21.366-48.189 21.334-48.220Q21.303-48.251 21.303-48.275\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">An n-bit virtual address splits into the high virtual page number (VPN) and the low p-bit virtual page offset (VPO). The VPN names a page; the VPO names a byte inside it. Page size P = 2^p, so p = log2(P).\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:370.236px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 277.677 66.124\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-40.772h45.524V-72.07h-45.524Z\"\u002F>\u003Cg transform=\"translate(-9.143 2.733)\">\u003Cpath d=\"M-42.168-59.155Q-42.168-59.749-41.936-60.280Q-41.703-60.812-41.287-61.212Q-40.871-61.612-40.338-61.833Q-39.805-62.054-39.200-62.054Q-38.762-62.054-38.364-61.872Q-37.965-61.691-37.657-61.358L-37.184-62.023Q-37.153-62.054-37.121-62.054L-37.075-62.054Q-37.047-62.054-37.016-62.023Q-36.985-61.991-36.985-61.964L-36.985-59.827Q-36.985-59.804-37.016-59.773Q-37.047-59.741-37.075-59.741L-37.192-59.741Q-37.219-59.741-37.250-59.773Q-37.282-59.804-37.282-59.827Q-37.282-60.093-37.424-60.446Q-37.567-60.800-37.746-61.038Q-38-61.370-38.350-61.564Q-38.700-61.757-39.106-61.757Q-39.610-61.757-40.063-61.538Q-40.516-61.319-40.809-60.925Q-41.305-60.257-41.305-59.155Q-41.305-58.624-41.168-58.157Q-41.032-57.691-40.756-57.325Q-40.481-56.960-40.061-56.755Q-39.641-56.550-39.098-56.550Q-38.610-56.550-38.186-56.794Q-37.762-57.038-37.514-57.458Q-37.266-57.878-37.266-58.374Q-37.266-58.409-37.237-58.435Q-37.207-58.460-37.176-58.460L-37.075-58.460Q-37.032-58.460-37.008-58.431Q-36.985-58.401-36.985-58.358Q-36.985-57.921-37.161-57.532Q-37.336-57.144-37.647-56.860Q-37.957-56.577-38.368-56.415Q-38.778-56.253-39.200-56.253Q-39.789-56.253-40.330-56.474Q-40.871-56.694-41.287-57.099Q-41.703-57.503-41.936-58.032Q-42.168-58.562-42.168-59.155M-33.770-56.421L-36.153-56.421L-36.153-56.718Q-35.828-56.718-35.586-56.765Q-35.344-56.812-35.344-56.980L-35.344-61.323Q-35.344-61.495-35.586-61.542Q-35.828-61.589-36.153-61.589L-36.153-61.886L-33.207-61.886Q-32.864-61.886-32.508-61.786Q-32.153-61.687-31.858-61.495Q-31.563-61.304-31.381-61.019Q-31.200-60.733-31.200-60.374Q-31.200-59.901-31.510-59.566Q-31.821-59.230-32.286-59.058Q-32.750-58.886-33.207-58.886L-34.575-58.886L-34.575-56.980Q-34.575-56.812-34.332-56.765Q-34.090-56.718-33.770-56.718L-33.770-56.421M-34.602-61.323L-34.602-59.155L-33.426-59.155Q-32.739-59.155-32.401-59.431Q-32.063-59.706-32.063-60.374Q-32.063-61.038-32.401-61.314Q-32.739-61.589-33.426-61.589L-34.200-61.589Q-34.418-61.589-34.510-61.546Q-34.602-61.503-34.602-61.323M-29.582-58.230L-29.582-61.323Q-29.582-61.495-29.827-61.542Q-30.071-61.589-30.391-61.589L-30.391-61.886L-28.008-61.886L-28.008-61.589Q-28.328-61.589-28.573-61.540Q-28.817-61.491-28.817-61.323L-28.817-58.253Q-28.817-57.530-28.473-57.040Q-28.129-56.550-27.430-56.550Q-26.965-56.550-26.594-56.780Q-26.223-57.011-26.014-57.403Q-25.805-57.796-25.805-58.253L-25.805-61.108Q-25.805-61.589-26.614-61.589L-26.614-61.886L-24.703-61.886L-24.703-61.589Q-25.512-61.589-25.512-61.108L-25.512-58.230Q-25.512-57.710-25.766-57.253Q-26.020-56.796-26.461-56.525Q-26.903-56.253-27.430-56.253Q-27.840-56.253-28.221-56.396Q-28.602-56.538-28.914-56.808Q-29.227-57.077-29.405-57.444Q-29.582-57.812-29.582-58.230\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M28.49-40.772h51.215V-72.07H28.491Z\"\u002F>\u003Cg transform=\"translate(85.772 2.733)\">\u003Cpath d=\"M-40.344-56.421L-42.266-56.421L-42.266-56.718Q-41.457-56.718-41.457-57.198L-41.457-61.323Q-41.457-61.495-41.700-61.542Q-41.942-61.589-42.266-61.589L-42.266-61.886L-40.770-61.886Q-40.661-61.886-40.602-61.773L-38.754-57.230L-36.914-61.773Q-36.852-61.886-36.746-61.886L-35.243-61.886L-35.243-61.589Q-35.563-61.589-35.805-61.542Q-36.047-61.495-36.047-61.323L-36.047-56.980Q-36.047-56.812-35.805-56.765Q-35.563-56.718-35.243-56.718L-35.243-56.421L-37.543-56.421L-37.543-56.718Q-36.739-56.718-36.739-56.980L-36.739-61.573L-38.786-56.534Q-38.821-56.421-38.953-56.421Q-39.094-56.421-39.129-56.534L-41.153-61.511L-41.153-57.198Q-41.153-56.718-40.344-56.718L-40.344-56.421M-32.567-56.421L-34.489-56.421L-34.489-56.718Q-33.680-56.718-33.680-57.198L-33.680-61.323Q-33.680-61.495-33.922-61.542Q-34.164-61.589-34.489-61.589L-34.489-61.886L-32.993-61.886Q-32.883-61.886-32.825-61.773L-30.977-57.230L-29.137-61.773Q-29.075-61.886-28.969-61.886L-27.465-61.886L-27.465-61.589Q-27.786-61.589-28.028-61.542Q-28.270-61.495-28.270-61.323L-28.270-56.980Q-28.270-56.812-28.028-56.765Q-27.786-56.718-27.465-56.718L-27.465-56.421L-29.766-56.421L-29.766-56.718Q-28.961-56.718-28.961-56.980L-28.961-61.573L-31.008-56.534Q-31.043-56.421-31.176-56.421Q-31.317-56.421-31.352-56.534L-33.375-61.511L-33.375-57.198Q-33.375-56.718-32.567-56.718L-32.567-56.421M-25.942-58.230L-25.942-61.323Q-25.942-61.495-26.186-61.542Q-26.430-61.589-26.750-61.589L-26.750-61.886L-24.368-61.886L-24.368-61.589Q-24.688-61.589-24.932-61.540Q-25.176-61.491-25.176-61.323L-25.176-58.253Q-25.176-57.530-24.832-57.040Q-24.489-56.550-23.789-56.550Q-23.325-56.550-22.953-56.780Q-22.582-57.011-22.373-57.403Q-22.164-57.796-22.164-58.253L-22.164-61.108Q-22.164-61.589-22.973-61.589L-22.973-61.886L-21.063-61.886L-21.063-61.589Q-21.871-61.589-21.871-61.108L-21.871-58.230Q-21.871-57.710-22.125-57.253Q-22.379-56.796-22.821-56.525Q-23.262-56.253-23.789-56.253Q-24.200-56.253-24.580-56.396Q-24.961-56.538-25.274-56.808Q-25.586-57.077-25.764-57.444Q-25.942-57.812-25.942-58.230\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M136.61-40.772h62.597V-72.07h-62.596Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(195.553 6.75)\">\u003Cpath d=\"M-40.422-64.370L-42.277-64.370L-42.277-64.663Q-42.008-64.663-41.840-64.708Q-41.672-64.753-41.672-64.929L-41.672-68.753Q-41.672-68.960-41.828-69.013Q-41.984-69.066-42.277-69.066L-42.277-69.362L-41.055-69.448L-41.055-68.984Q-40.824-69.206-40.510-69.327Q-40.195-69.448-39.855-69.448Q-39.383-69.448-38.979-69.202Q-38.574-68.956-38.342-68.540Q-38.109-68.124-38.109-67.648Q-38.109-67.273-38.258-66.944Q-38.406-66.616-38.676-66.364Q-38.945-66.112-39.289-65.978Q-39.633-65.843-39.992-65.843Q-40.281-65.843-40.553-65.964Q-40.824-66.085-41.031-66.296L-41.031-64.929Q-41.031-64.753-40.863-64.708Q-40.695-64.663-40.422-64.663L-40.422-64.370M-41.031-68.585L-41.031-66.745Q-40.879-66.456-40.617-66.276Q-40.355-66.097-40.047-66.097Q-39.762-66.097-39.539-66.235Q-39.316-66.374-39.164-66.605Q-39.012-66.835-38.934-67.107Q-38.855-67.378-38.855-67.648Q-38.855-67.980-38.980-68.337Q-39.105-68.694-39.354-68.931Q-39.602-69.167-39.949-69.167Q-40.273-69.167-40.568-69.011Q-40.863-68.855-41.031-68.585M-35.656-65.921L-37.512-65.921L-37.512-66.218Q-37.238-66.218-37.070-66.265Q-36.902-66.312-36.902-66.480L-36.902-70.640Q-36.902-70.855-36.965-70.950Q-37.027-71.046-37.147-71.067Q-37.266-71.089-37.512-71.089L-37.512-71.386L-36.289-71.472L-36.289-68.769Q-36.164-68.980-35.977-69.130Q-35.789-69.280-35.563-69.364Q-35.336-69.448-35.090-69.448Q-33.922-69.448-33.922-68.370L-33.922-66.480Q-33.922-66.312-33.752-66.265Q-33.582-66.218-33.313-66.218L-33.313-65.921L-35.168-65.921L-35.168-66.218Q-34.895-66.218-34.727-66.265Q-34.559-66.312-34.559-66.480L-34.559-68.355Q-34.559-68.737-34.680-68.966Q-34.801-69.194-35.152-69.194Q-35.465-69.194-35.719-69.032Q-35.973-68.870-36.119-68.601Q-36.266-68.331-36.266-68.034L-36.266-66.480Q-36.266-66.312-36.096-66.265Q-35.926-66.218-35.656-66.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(195.553 6.75)\">\u003Cpath d=\"M-32.679-64.624Q-32.565-64.546-32.390-64.546Q-32.101-64.546-31.880-64.759Q-31.659-64.972-31.534-65.273L-31.245-65.921L-32.519-68.808Q-32.601-68.984-32.745-69.028Q-32.890-69.073-33.159-69.073L-33.159-69.370L-31.440-69.370L-31.440-69.073Q-31.862-69.073-31.862-68.890Q-31.862-68.878-31.847-68.808L-30.909-66.683L-30.077-68.593Q-30.038-68.683-30.038-68.761Q-30.038-68.901-30.140-68.987Q-30.241-69.073-30.382-69.073L-30.382-69.370L-29.030-69.370L-29.030-69.073Q-29.284-69.073-29.478-68.948Q-29.671-68.823-29.776-68.593L-31.222-65.273Q-31.335-65.019-31.501-64.796Q-31.667-64.573-31.896-64.431Q-32.124-64.288-32.390-64.288Q-32.687-64.288-32.927-64.480Q-33.167-64.671-33.167-64.960Q-33.167-65.116-33.062-65.218Q-32.956-65.319-32.808-65.319Q-32.702-65.319-32.622-65.273Q-32.542-65.226-32.495-65.148Q-32.448-65.069-32.448-64.960Q-32.448-64.839-32.509-64.751Q-32.569-64.663-32.679-64.624M-28.573-65.929L-28.573-67.151Q-28.573-67.179-28.542-67.210Q-28.511-67.241-28.487-67.241L-28.382-67.241Q-28.312-67.241-28.296-67.179Q-28.233-66.859-28.095-66.618Q-27.956-66.378-27.724-66.237Q-27.491-66.097-27.183-66.097Q-26.944-66.097-26.735-66.157Q-26.526-66.218-26.390-66.366Q-26.253-66.515-26.253-66.761Q-26.253-67.015-26.464-67.181Q-26.675-67.347-26.944-67.401L-27.565-67.515Q-27.972-67.593-28.273-67.849Q-28.573-68.105-28.573-68.480Q-28.573-68.847-28.372-69.069Q-28.171-69.292-27.847-69.390Q-27.523-69.487-27.183-69.487Q-26.718-69.487-26.421-69.280L-26.198-69.464Q-26.175-69.487-26.144-69.487L-26.093-69.487Q-26.062-69.487-26.034-69.460Q-26.007-69.433-26.007-69.401L-26.007-68.417Q-26.007-68.386-26.032-68.357Q-26.058-68.327-26.093-68.327L-26.198-68.327Q-26.233-68.327-26.261-68.355Q-26.288-68.382-26.288-68.417Q-26.288-68.816-26.540-69.036Q-26.792-69.257-27.190-69.257Q-27.546-69.257-27.829-69.134Q-28.112-69.011-28.112-68.706Q-28.112-68.487-27.911-68.355Q-27.710-68.222-27.464-68.179L-26.839-68.066Q-26.409-67.976-26.101-67.679Q-25.792-67.382-25.792-66.968Q-25.792-66.398-26.190-66.120Q-26.589-65.843-27.183-65.843Q-27.733-65.843-28.085-66.179L-28.382-65.866Q-28.405-65.843-28.440-65.843L-28.487-65.843Q-28.511-65.843-28.542-65.874Q-28.573-65.905-28.573-65.929M-23.405-65.921L-25.183-65.921L-25.183-66.218Q-24.909-66.218-24.741-66.265Q-24.573-66.312-24.573-66.480L-24.573-68.616Q-24.573-68.831-24.630-68.927Q-24.687-69.023-24.800-69.044Q-24.913-69.066-25.159-69.066L-25.159-69.362L-23.960-69.448L-23.960-66.480Q-23.960-66.312-23.814-66.265Q-23.667-66.218-23.405-66.218L-23.405-65.921M-24.847-70.843Q-24.847-71.034-24.712-71.165Q-24.577-71.296-24.382-71.296Q-24.261-71.296-24.157-71.234Q-24.054-71.171-23.991-71.067Q-23.929-70.964-23.929-70.843Q-23.929-70.648-24.060-70.513Q-24.190-70.378-24.382-70.378Q-24.581-70.378-24.714-70.511Q-24.847-70.644-24.847-70.843M-22.862-67.648Q-22.862-68.144-22.612-68.569Q-22.362-68.995-21.942-69.241Q-21.523-69.487-21.023-69.487Q-20.483-69.487-20.093-69.362Q-19.702-69.237-19.702-68.823Q-19.702-68.718-19.753-68.626Q-19.804-68.534-19.896-68.484Q-19.987-68.433-20.097-68.433Q-20.202-68.433-20.294-68.484Q-20.386-68.534-20.437-68.626Q-20.487-68.718-20.487-68.823Q-20.487-69.046-20.319-69.151Q-20.542-69.210-21.015-69.210Q-21.312-69.210-21.526-69.071Q-21.741-68.933-21.872-68.702Q-22.003-68.472-22.062-68.202Q-22.120-67.933-22.120-67.648Q-22.120-67.253-21.987-66.903Q-21.855-66.554-21.583-66.337Q-21.312-66.120-20.913-66.120Q-20.538-66.120-20.263-66.337Q-19.987-66.554-19.886-66.913Q-19.870-66.976-19.808-66.976L-19.702-66.976Q-19.667-66.976-19.642-66.948Q-19.616-66.921-19.616-66.882L-19.616-66.859Q-19.749-66.378-20.134-66.110Q-20.519-65.843-21.023-65.843Q-21.386-65.843-21.720-65.980Q-22.054-66.116-22.314-66.366Q-22.573-66.616-22.718-66.952Q-22.862-67.288-22.862-67.648M-19.030-66.753Q-19.030-67.237-18.628-67.532Q-18.226-67.827-17.675-67.946Q-17.124-68.066-16.632-68.066L-16.632-68.355Q-16.632-68.581-16.747-68.788Q-16.862-68.995-17.060-69.114Q-17.257-69.234-17.487-69.234Q-17.913-69.234-18.198-69.128Q-18.128-69.101-18.081-69.046Q-18.034-68.991-18.009-68.921Q-17.983-68.851-17.983-68.776Q-17.983-68.671-18.034-68.579Q-18.085-68.487-18.177-68.437Q-18.269-68.386-18.374-68.386Q-18.480-68.386-18.571-68.437Q-18.663-68.487-18.714-68.579Q-18.765-68.671-18.765-68.776Q-18.765-69.194-18.376-69.341Q-17.987-69.487-17.487-69.487Q-17.155-69.487-16.802-69.357Q-16.448-69.226-16.220-68.972Q-15.991-68.718-15.991-68.370L-15.991-66.569Q-15.991-66.437-15.919-66.327Q-15.847-66.218-15.718-66.218Q-15.593-66.218-15.524-66.323Q-15.456-66.429-15.456-66.569L-15.456-67.081L-15.175-67.081L-15.175-66.569Q-15.175-66.366-15.292-66.208Q-15.409-66.050-15.591-65.966Q-15.773-65.882-15.976-65.882Q-16.206-65.882-16.358-66.054Q-16.511-66.226-16.542-66.456Q-16.702-66.175-17.011-66.009Q-17.319-65.843-17.671-65.843Q-18.183-65.843-18.606-66.066Q-19.030-66.288-19.030-66.753M-18.343-66.753Q-18.343-66.468-18.116-66.282Q-17.890-66.097-17.597-66.097Q-17.351-66.097-17.126-66.214Q-16.901-66.331-16.767-66.534Q-16.632-66.737-16.632-66.991L-16.632-67.823Q-16.898-67.823-17.183-67.769Q-17.468-67.714-17.739-67.585Q-18.011-67.456-18.177-67.249Q-18.343-67.042-18.343-66.753M-12.968-65.921L-14.800-65.921L-14.800-66.218Q-14.526-66.218-14.358-66.265Q-14.190-66.312-14.190-66.480L-14.190-70.640Q-14.190-70.855-14.253-70.950Q-14.315-71.046-14.435-71.067Q-14.554-71.089-14.800-71.089L-14.800-71.386L-13.577-71.472L-13.577-66.480Q-13.577-66.312-13.409-66.265Q-13.241-66.218-12.968-66.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(195.553 6.75)\">\u003Cpath d=\"M-40.473-56.421L-42.328-56.421L-42.328-56.718Q-42.055-56.718-41.887-56.765Q-41.719-56.812-41.719-56.980L-41.719-59.116Q-41.719-59.331-41.782-59.427Q-41.844-59.523-41.963-59.544Q-42.082-59.566-42.328-59.566L-42.328-59.862L-41.137-59.948L-41.137-59.214Q-41.024-59.429-40.830-59.597Q-40.637-59.765-40.399-59.857Q-40.161-59.948-39.907-59.948Q-38.946-59.948-38.770-59.237Q-38.586-59.566-38.258-59.757Q-37.930-59.948-37.551-59.948Q-36.375-59.948-36.375-58.870L-36.375-56.980Q-36.375-56.812-36.207-56.765Q-36.039-56.718-35.770-56.718L-35.770-56.421L-37.625-56.421L-37.625-56.718Q-37.352-56.718-37.184-56.763Q-37.016-56.808-37.016-56.980L-37.016-58.855Q-37.016-59.241-37.141-59.468Q-37.266-59.694-37.618-59.694Q-37.922-59.694-38.178-59.532Q-38.434-59.370-38.582-59.101Q-38.731-58.831-38.731-58.534L-38.731-56.980Q-38.731-56.812-38.561-56.765Q-38.391-56.718-38.121-56.718L-38.121-56.421L-39.977-56.421L-39.977-56.718Q-39.703-56.718-39.536-56.765Q-39.368-56.812-39.368-56.980L-39.368-58.855Q-39.368-59.241-39.493-59.468Q-39.618-59.694-39.969-59.694Q-40.274-59.694-40.530-59.532Q-40.786-59.370-40.934-59.101Q-41.082-58.831-41.082-58.534L-41.082-56.980Q-41.082-56.812-40.912-56.765Q-40.743-56.718-40.473-56.718L-40.473-56.421M-35.325-58.175Q-35.325-58.655-35.092-59.071Q-34.860-59.487-34.450-59.737Q-34.039-59.987-33.563-59.987Q-32.832-59.987-32.434-59.546Q-32.036-59.105-32.036-58.374Q-32.036-58.269-32.129-58.245L-34.578-58.245L-34.578-58.175Q-34.578-57.765-34.457-57.409Q-34.336-57.054-34.065-56.837Q-33.793-56.620-33.364-56.620Q-33-56.620-32.703-56.849Q-32.407-57.077-32.305-57.429Q-32.297-57.476-32.211-57.491L-32.129-57.491Q-32.036-57.464-32.036-57.382Q-32.036-57.374-32.043-57.343Q-32.106-57.116-32.245-56.933Q-32.383-56.749-32.575-56.616Q-32.766-56.483-32.985-56.413Q-33.203-56.343-33.442-56.343Q-33.813-56.343-34.151-56.480Q-34.489-56.616-34.756-56.868Q-35.024-57.120-35.174-57.460Q-35.325-57.800-35.325-58.175M-34.571-58.483L-32.610-58.483Q-32.610-58.788-32.711-59.079Q-32.813-59.370-33.030-59.552Q-33.246-59.733-33.563-59.733Q-33.864-59.733-34.094-59.546Q-34.325-59.358-34.448-59.067Q-34.571-58.776-34.571-58.483M-29.618-56.421L-31.473-56.421L-31.473-56.718Q-31.200-56.718-31.032-56.765Q-30.864-56.812-30.864-56.980L-30.864-59.116Q-30.864-59.331-30.926-59.427Q-30.989-59.523-31.108-59.544Q-31.227-59.566-31.473-59.566L-31.473-59.862L-30.282-59.948L-30.282-59.214Q-30.168-59.429-29.975-59.597Q-29.782-59.765-29.543-59.857Q-29.305-59.948-29.051-59.948Q-28.090-59.948-27.914-59.237Q-27.731-59.566-27.403-59.757Q-27.075-59.948-26.696-59.948Q-25.520-59.948-25.520-58.870L-25.520-56.980Q-25.520-56.812-25.352-56.765Q-25.184-56.718-24.914-56.718L-24.914-56.421L-26.770-56.421L-26.770-56.718Q-26.496-56.718-26.328-56.763Q-26.161-56.808-26.161-56.980L-26.161-58.855Q-26.161-59.241-26.286-59.468Q-26.411-59.694-26.762-59.694Q-27.067-59.694-27.323-59.532Q-27.578-59.370-27.727-59.101Q-27.875-58.831-27.875-58.534L-27.875-56.980Q-27.875-56.812-27.705-56.765Q-27.536-56.718-27.266-56.718L-27.266-56.421L-29.121-56.421L-29.121-56.718Q-28.848-56.718-28.680-56.765Q-28.512-56.812-28.512-56.980L-28.512-58.855Q-28.512-59.241-28.637-59.468Q-28.762-59.694-29.114-59.694Q-29.418-59.694-29.674-59.532Q-29.930-59.370-30.078-59.101Q-30.227-58.831-30.227-58.534L-30.227-56.980Q-30.227-56.812-30.057-56.765Q-29.887-56.718-29.618-56.718L-29.618-56.421M-24.469-58.116Q-24.469-58.620-24.213-59.052Q-23.957-59.483-23.522-59.735Q-23.086-59.987-22.586-59.987Q-22.200-59.987-21.858-59.843Q-21.516-59.698-21.254-59.437Q-20.993-59.175-20.850-58.839Q-20.707-58.503-20.707-58.116Q-20.707-57.624-20.971-57.214Q-21.235-56.804-21.664-56.573Q-22.094-56.343-22.586-56.343Q-23.078-56.343-23.512-56.575Q-23.946-56.808-24.207-57.216Q-24.469-57.624-24.469-58.116M-22.586-56.620Q-22.129-56.620-21.877-56.843Q-21.625-57.066-21.537-57.417Q-21.450-57.769-21.450-58.214Q-21.450-58.644-21.543-58.982Q-21.637-59.319-21.891-59.526Q-22.145-59.733-22.586-59.733Q-23.235-59.733-23.479-59.317Q-23.723-58.901-23.723-58.214Q-23.723-57.769-23.635-57.417Q-23.547-57.066-23.295-56.843Q-23.043-56.620-22.586-56.620M-18.215-56.421L-20.196-56.421L-20.196-56.718Q-19.926-56.718-19.758-56.763Q-19.590-56.808-19.590-56.980L-19.590-59.116Q-19.590-59.331-19.653-59.427Q-19.715-59.523-19.832-59.544Q-19.950-59.566-20.196-59.566L-20.196-59.862L-19.028-59.948L-19.028-59.163Q-18.950-59.374-18.797-59.560Q-18.645-59.745-18.446-59.847Q-18.246-59.948-18.020-59.948Q-17.774-59.948-17.582-59.804Q-17.391-59.659-17.391-59.429Q-17.391-59.273-17.496-59.163Q-17.602-59.054-17.758-59.054Q-17.914-59.054-18.024-59.163Q-18.133-59.273-18.133-59.429Q-18.133-59.589-18.028-59.694Q-18.352-59.694-18.567-59.466Q-18.782-59.237-18.877-58.898Q-18.973-58.558-18.973-58.253L-18.973-56.980Q-18.973-56.812-18.746-56.765Q-18.520-56.718-18.215-56.718L-18.215-56.421M-16.493-55.124Q-16.379-55.046-16.203-55.046Q-15.914-55.046-15.694-55.259Q-15.473-55.472-15.348-55.773L-15.059-56.421L-16.332-59.308Q-16.414-59.483-16.559-59.528Q-16.703-59.573-16.973-59.573L-16.973-59.870L-15.254-59.870L-15.254-59.573Q-15.676-59.573-15.676-59.390Q-15.676-59.378-15.661-59.308L-14.723-57.183L-13.891-59.093Q-13.852-59.183-13.852-59.261Q-13.852-59.401-13.953-59.487Q-14.055-59.573-14.196-59.573L-14.196-59.870L-12.844-59.870L-12.844-59.573Q-13.098-59.573-13.291-59.448Q-13.485-59.323-13.590-59.093L-15.036-55.773Q-15.149-55.519-15.315-55.296Q-15.481-55.073-15.709-54.931Q-15.938-54.788-16.203-54.788Q-16.500-54.788-16.741-54.980Q-16.981-55.171-16.981-55.460Q-16.981-55.616-16.875-55.718Q-16.770-55.819-16.621-55.819Q-16.516-55.819-16.436-55.773Q-16.356-55.726-16.309-55.648Q-16.262-55.569-16.262-55.460Q-16.262-55.339-16.323-55.251Q-16.383-55.163-16.493-55.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-19.679-56.421h45.97\"\u002F>\u003Cpath stroke=\"none\" d=\"m28.29-56.421-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(41.052 -3.533)\">\u003Cpath d=\"M-39.664-56.366L-41.688-61.323Q-41.770-61.495-41.963-61.542Q-42.157-61.589-42.465-61.589L-42.465-61.886L-40.274-61.886L-40.274-61.589Q-40.899-61.589-40.899-61.374Q-40.895-61.358-40.893-61.345Q-40.891-61.331-40.887-61.323L-39.227-57.230L-37.641-61.108Q-37.618-61.155-37.618-61.222Q-37.618-61.405-37.787-61.497Q-37.957-61.589-38.168-61.589L-38.168-61.886L-36.457-61.886L-36.457-61.589Q-36.754-61.589-36.985-61.474Q-37.215-61.358-37.321-61.108L-39.258-56.366Q-39.297-56.253-39.426-56.253L-39.496-56.253Q-39.625-56.253-39.664-56.366\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(41.052 -3.533)\">\u003Cpath d=\"M-35.180-56.421L-36.930-56.421L-36.930-56.718Q-36.231-56.718-36.043-57.198L-34.242-62.023Q-34.188-62.132-34.074-62.132L-34.004-62.132Q-33.891-62.132-33.836-62.023L-31.946-56.980Q-31.867-56.812-31.664-56.765Q-31.461-56.718-31.149-56.718L-31.149-56.421L-33.371-56.421L-33.371-56.718Q-32.731-56.718-32.731-56.933Q-32.731-56.952-32.733-56.962Q-32.735-56.972-32.739-56.980L-33.203-58.214L-35.348-58.214L-35.731-57.198Q-35.735-57.183-35.740-57.153Q-35.746-57.124-35.746-57.101Q-35.746-56.960-35.657-56.876Q-35.567-56.792-35.434-56.755Q-35.301-56.718-35.180-56.718L-35.180-56.421M-34.274-61.077L-35.242-58.511L-33.317-58.511\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.905-56.421h54.506\"\u002F>\u003Cpath stroke=\"none\" d=\"m136.411-56.421-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(145.08 -3.533)\">\u003Cpath d=\"M-39.907-56.421L-42.289-56.421L-42.289-56.718Q-41.965-56.718-41.723-56.765Q-41.481-56.812-41.481-56.980L-41.481-61.323Q-41.481-61.495-41.723-61.542Q-41.965-61.589-42.289-61.589L-42.289-61.886L-39.344-61.886Q-39-61.886-38.645-61.786Q-38.289-61.687-37.995-61.495Q-37.700-61.304-37.518-61.019Q-37.336-60.733-37.336-60.374Q-37.336-59.901-37.647-59.566Q-37.957-59.230-38.422-59.058Q-38.887-58.886-39.344-58.886L-40.711-58.886L-40.711-56.980Q-40.711-56.812-40.469-56.765Q-40.227-56.718-39.907-56.718L-39.907-56.421M-40.739-61.323L-40.739-59.155L-39.563-59.155Q-38.875-59.155-38.537-59.431Q-38.200-59.706-38.200-60.374Q-38.200-61.038-38.537-61.314Q-38.875-61.589-39.563-61.589L-40.336-61.589Q-40.555-61.589-40.647-61.546Q-40.739-61.503-40.739-61.323\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.08 -3.533)\">\u003Cpath d=\"M-35.530-56.421L-37.280-56.421L-37.280-56.718Q-36.581-56.718-36.393-57.198L-34.592-62.023Q-34.538-62.132-34.424-62.132L-34.354-62.132Q-34.241-62.132-34.186-62.023L-32.296-56.980Q-32.217-56.812-32.014-56.765Q-31.811-56.718-31.499-56.718L-31.499-56.421L-33.721-56.421L-33.721-56.718Q-33.081-56.718-33.081-56.933Q-33.081-56.952-33.083-56.962Q-33.085-56.972-33.089-56.980L-33.553-58.214L-35.698-58.214L-36.081-57.198Q-36.085-57.183-36.090-57.153Q-36.096-57.124-36.096-57.101Q-36.096-56.960-36.007-56.876Q-35.917-56.792-35.784-56.755Q-35.651-56.718-35.530-56.718L-35.530-56.421M-34.624-61.077L-35.592-58.511L-33.667-58.511\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M167.909-40.572v21.34h-210.55v-19.34\"\u002F>\u003Cpath stroke=\"none\" d=\"m-42.641-40.572-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(-8.264 40.942)\">\u003Cpath d=\"M-40.586-56.343Q-41.067-56.343-41.475-56.587Q-41.883-56.831-42.121-57.245Q-42.360-57.659-42.360-58.148Q-42.360-58.640-42.102-59.056Q-41.844-59.472-41.412-59.710Q-40.981-59.948-40.489-59.948Q-39.868-59.948-39.418-59.511L-39.418-61.140Q-39.418-61.355-39.481-61.450Q-39.543-61.546-39.661-61.567Q-39.778-61.589-40.024-61.589L-40.024-61.886L-38.801-61.972L-38.801-57.163Q-38.801-56.952-38.739-56.857Q-38.676-56.761-38.559-56.739Q-38.442-56.718-38.192-56.718L-38.192-56.421L-39.442-56.343L-39.442-56.827Q-39.907-56.343-40.586-56.343M-40.520-56.597Q-40.180-56.597-39.887-56.788Q-39.594-56.980-39.442-57.276L-39.442-59.108Q-39.590-59.382-39.852-59.538Q-40.114-59.694-40.426-59.694Q-41.051-59.694-41.334-59.247Q-41.618-58.800-41.618-58.140Q-41.618-57.495-41.366-57.046Q-41.114-56.597-40.520-56.597M-37.586-57.253Q-37.586-57.737-37.184-58.032Q-36.782-58.327-36.231-58.446Q-35.680-58.566-35.188-58.566L-35.188-58.855Q-35.188-59.081-35.303-59.288Q-35.418-59.495-35.616-59.614Q-35.813-59.733-36.043-59.733Q-36.469-59.733-36.754-59.628Q-36.684-59.601-36.637-59.546Q-36.590-59.491-36.565-59.421Q-36.539-59.351-36.539-59.276Q-36.539-59.171-36.590-59.079Q-36.641-58.987-36.733-58.937Q-36.825-58.886-36.930-58.886Q-37.036-58.886-37.127-58.937Q-37.219-58.987-37.270-59.079Q-37.321-59.171-37.321-59.276Q-37.321-59.694-36.932-59.841Q-36.543-59.987-36.043-59.987Q-35.711-59.987-35.358-59.857Q-35.004-59.726-34.776-59.472Q-34.547-59.218-34.547-58.870L-34.547-57.069Q-34.547-56.937-34.475-56.827Q-34.403-56.718-34.274-56.718Q-34.149-56.718-34.080-56.823Q-34.012-56.929-34.012-57.069L-34.012-57.581L-33.731-57.581L-33.731-57.069Q-33.731-56.866-33.848-56.708Q-33.965-56.550-34.147-56.466Q-34.328-56.382-34.532-56.382Q-34.762-56.382-34.914-56.554Q-35.067-56.726-35.098-56.956Q-35.258-56.675-35.567-56.509Q-35.875-56.343-36.227-56.343Q-36.739-56.343-37.162-56.566Q-37.586-56.788-37.586-57.253M-36.899-57.253Q-36.899-56.968-36.672-56.782Q-36.446-56.597-36.153-56.597Q-35.907-56.597-35.682-56.714Q-35.457-56.831-35.323-57.034Q-35.188-57.237-35.188-57.491L-35.188-58.323Q-35.453-58.323-35.739-58.269Q-36.024-58.214-36.295-58.085Q-36.567-57.956-36.733-57.749Q-36.899-57.542-36.899-57.253M-32.813-57.382L-32.813-59.573L-33.516-59.573L-33.516-59.827Q-33.161-59.827-32.918-60.060Q-32.676-60.292-32.565-60.640Q-32.453-60.987-32.453-61.343L-32.172-61.343L-32.172-59.870L-30.996-59.870L-30.996-59.573L-32.172-59.573L-32.172-57.398Q-32.172-57.077-32.053-56.849Q-31.934-56.620-31.653-56.620Q-31.473-56.620-31.356-56.743Q-31.239-56.866-31.186-57.046Q-31.133-57.226-31.133-57.398L-31.133-57.870L-30.852-57.870L-30.852-57.382Q-30.852-57.128-30.957-56.888Q-31.063-56.648-31.260-56.495Q-31.457-56.343-31.715-56.343Q-32.032-56.343-32.284-56.466Q-32.536-56.589-32.674-56.823Q-32.813-57.058-32.813-57.382M-30.036-57.253Q-30.036-57.737-29.633-58.032Q-29.231-58.327-28.680-58.446Q-28.129-58.566-27.637-58.566L-27.637-58.855Q-27.637-59.081-27.752-59.288Q-27.868-59.495-28.065-59.614Q-28.262-59.733-28.493-59.733Q-28.918-59.733-29.203-59.628Q-29.133-59.601-29.086-59.546Q-29.039-59.491-29.014-59.421Q-28.989-59.351-28.989-59.276Q-28.989-59.171-29.039-59.079Q-29.090-58.987-29.182-58.937Q-29.274-58.886-29.379-58.886Q-29.485-58.886-29.577-58.937Q-29.668-58.987-29.719-59.079Q-29.770-59.171-29.770-59.276Q-29.770-59.694-29.381-59.841Q-28.993-59.987-28.493-59.987Q-28.161-59.987-27.807-59.857Q-27.453-59.726-27.225-59.472Q-26.996-59.218-26.996-58.870L-26.996-57.069Q-26.996-56.937-26.924-56.827Q-26.852-56.718-26.723-56.718Q-26.598-56.718-26.530-56.823Q-26.461-56.929-26.461-57.069L-26.461-57.581L-26.180-57.581L-26.180-57.069Q-26.180-56.866-26.297-56.708Q-26.414-56.550-26.596-56.466Q-26.778-56.382-26.981-56.382Q-27.211-56.382-27.364-56.554Q-27.516-56.726-27.547-56.956Q-27.707-56.675-28.016-56.509Q-28.325-56.343-28.676-56.343Q-29.188-56.343-29.612-56.566Q-30.036-56.788-30.036-57.253M-29.348-57.253Q-29.348-56.968-29.121-56.782Q-28.895-56.597-28.602-56.597Q-28.356-56.597-28.131-56.714Q-27.907-56.831-27.772-57.034Q-27.637-57.237-27.637-57.491L-27.637-58.323Q-27.903-58.323-28.188-58.269Q-28.473-58.214-28.745-58.085Q-29.016-57.956-29.182-57.749Q-29.348-57.542-29.348-57.253\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The MMU sits between the CPU and physical memory. The CPU emits a virtual address; the MMU translates it to a physical address; only the physical address reaches DRAM. Translation happens on every reference.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:311.315px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 233.486 115.472\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-46.748-49.308h113.81V-72.07h-113.81Z\"\u002F>\u003Cg transform=\"translate(-9.257 -42.791)\">\u003Cpath d=\"M13.134-15.109L11.110-20.066Q11.028-20.238 10.835-20.285Q10.641-20.332 10.333-20.332L10.333-20.629L12.524-20.629L12.524-20.332Q11.899-20.332 11.899-20.117Q11.903-20.102 11.905-20.088Q11.907-20.074 11.911-20.066L13.571-15.973L15.157-19.852Q15.180-19.898 15.180-19.965Q15.180-20.148 15.011-20.240Q14.841-20.332 14.630-20.332L14.630-20.629L16.341-20.629L16.341-20.332Q16.044-20.332 15.813-20.217Q15.583-20.102 15.477-19.852L13.540-15.109Q13.501-14.996 13.372-14.996L13.302-14.996Q13.173-14.996 13.134-15.109M19.251-15.164L16.868-15.164L16.868-15.461Q17.192-15.461 17.434-15.508Q17.677-15.555 17.677-15.723L17.677-20.066Q17.677-20.238 17.434-20.285Q17.192-20.332 16.868-20.332L16.868-20.629L19.813-20.629Q20.157-20.629 20.512-20.529Q20.868-20.430 21.163-20.238Q21.458-20.047 21.639-19.762Q21.821-19.477 21.821-19.117Q21.821-18.644 21.511-18.309Q21.200-17.973 20.735-17.801Q20.270-17.629 19.813-17.629L18.446-17.629L18.446-15.723Q18.446-15.555 18.688-15.508Q18.930-15.461 19.251-15.461L19.251-15.164M18.419-20.066L18.419-17.898L19.595-17.898Q20.282-17.898 20.620-18.174Q20.958-18.449 20.958-19.117Q20.958-19.781 20.620-20.057Q20.282-20.332 19.595-20.332L18.821-20.332Q18.602-20.332 18.511-20.289Q18.419-20.246 18.419-20.066M24.552-15.164L22.630-15.164L22.630-15.461Q23.438-15.461 23.438-15.941L23.438-20.285Q23.180-20.332 22.630-20.332L22.630-20.629L24.126-20.629Q24.184-20.609 24.196-20.598L27.204-16.410L27.204-19.852Q27.204-20.332 26.399-20.332L26.399-20.629L28.317-20.629L28.317-20.332Q27.509-20.332 27.509-19.852L27.509-15.269Q27.489-15.184 27.415-15.164L27.309-15.164Q27.255-15.176 27.239-15.203L23.743-20.059L23.743-15.941Q23.743-15.461 24.552-15.461\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M67.463-49.308h68.286V-72.07H67.463Z\"\u002F>\u003Cg transform=\"translate(82.07 -42.791)\">\u003Cpath d=\"M13.134-15.109L11.110-20.066Q11.028-20.238 10.835-20.285Q10.641-20.332 10.333-20.332L10.333-20.629L12.524-20.629L12.524-20.332Q11.899-20.332 11.899-20.117Q11.903-20.102 11.905-20.088Q11.907-20.074 11.911-20.066L13.571-15.973L15.157-19.852Q15.180-19.898 15.180-19.965Q15.180-20.148 15.011-20.240Q14.841-20.332 14.630-20.332L14.630-20.629L16.341-20.629L16.341-20.332Q16.044-20.332 15.813-20.217Q15.583-20.102 15.477-19.852L13.540-15.109Q13.501-14.996 13.372-14.996L13.302-14.996Q13.173-14.996 13.134-15.109M19.251-15.164L16.868-15.164L16.868-15.461Q17.192-15.461 17.434-15.508Q17.677-15.555 17.677-15.723L17.677-20.066Q17.677-20.238 17.434-20.285Q17.192-20.332 16.868-20.332L16.868-20.629L19.813-20.629Q20.157-20.629 20.512-20.529Q20.868-20.430 21.163-20.238Q21.458-20.047 21.639-19.762Q21.821-19.477 21.821-19.117Q21.821-18.644 21.511-18.309Q21.200-17.973 20.735-17.801Q20.270-17.629 19.813-17.629L18.446-17.629L18.446-15.723Q18.446-15.555 18.688-15.508Q18.930-15.461 19.251-15.461L19.251-15.164M18.419-20.066L18.419-17.898L19.595-17.898Q20.282-17.898 20.620-18.174Q20.958-18.449 20.958-19.117Q20.958-19.781 20.620-20.057Q20.282-20.332 19.595-20.332L18.821-20.332Q18.602-20.332 18.511-20.289Q18.419-20.246 18.419-20.066M25.598-14.996Q25.016-14.996 24.499-15.223Q23.981-15.449 23.593-15.848Q23.204-16.246 22.985-16.771Q22.766-17.297 22.766-17.867Q22.766-18.637 23.141-19.314Q23.516-19.992 24.167-20.394Q24.817-20.797 25.598-20.797Q26.372-20.797 27.022-20.394Q27.673-19.992 28.048-19.314Q28.423-18.637 28.423-17.867Q28.423-17.297 28.202-16.766Q27.981-16.234 27.596-15.842Q27.212-15.449 26.694-15.223Q26.177-14.996 25.598-14.996M24.157-16.066Q24.321-15.836 24.552-15.660Q24.782-15.484 25.050-15.389Q25.317-15.293 25.598-15.293Q26.016-15.293 26.397-15.504Q26.778-15.715 27.028-16.066Q27.559-16.785 27.559-18.004Q27.559-18.633 27.345-19.211Q27.130-19.789 26.688-20.152Q26.247-20.516 25.598-20.516Q24.946-20.516 24.503-20.152Q24.059-19.789 23.845-19.211Q23.630-18.633 23.630-18.004Q23.630-16.785 24.157-16.066\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-72.428 -42.791)\">\u003Cpath d=\"M13.134-15.109L11.110-20.066Q11.028-20.238 10.835-20.285Q10.641-20.332 10.333-20.332L10.333-20.629L12.524-20.629L12.524-20.332Q11.899-20.332 11.899-20.117Q11.903-20.102 11.905-20.088Q11.907-20.074 11.911-20.066L13.571-15.973L15.157-19.852Q15.180-19.898 15.180-19.965Q15.180-20.148 15.011-20.240Q14.841-20.332 14.630-20.332L14.630-20.629L16.341-20.629L16.341-20.332Q16.044-20.332 15.813-20.217Q15.583-20.102 15.477-19.852L13.540-15.109Q13.501-14.996 13.372-14.996L13.302-14.996Q13.173-14.996 13.134-15.109\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-72.428 -42.791)\">\u003Cpath d=\"M17.618-15.164L15.868-15.164L15.868-15.461Q16.567-15.461 16.755-15.941L18.556-20.766Q18.610-20.875 18.724-20.875L18.794-20.875Q18.907-20.875 18.962-20.766L20.852-15.723Q20.931-15.555 21.134-15.508Q21.337-15.461 21.649-15.461L21.649-15.164L19.427-15.164L19.427-15.461Q20.067-15.461 20.067-15.676Q20.067-15.695 20.065-15.705Q20.063-15.715 20.059-15.723L19.595-16.957L17.450-16.957L17.067-15.941Q17.063-15.926 17.058-15.896Q17.052-15.867 17.052-15.844Q17.052-15.703 17.142-15.619Q17.231-15.535 17.364-15.498Q17.497-15.461 17.618-15.461L17.618-15.164M18.524-19.820L17.556-17.254L19.481-17.254\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-4.07 24.67H81.29V1.906H-4.069Z\"\u002F>\u003Cg transform=\"translate(19.489 31.186)\">\u003Cpath d=\"M12.891-15.164L10.509-15.164L10.509-15.461Q10.833-15.461 11.075-15.508Q11.317-15.555 11.317-15.723L11.317-20.066Q11.317-20.238 11.075-20.285Q10.833-20.332 10.509-20.332L10.509-20.629L13.454-20.629Q13.798-20.629 14.153-20.529Q14.509-20.430 14.803-20.238Q15.098-20.047 15.280-19.762Q15.462-19.477 15.462-19.117Q15.462-18.644 15.151-18.309Q14.841-17.973 14.376-17.801Q13.911-17.629 13.454-17.629L12.087-17.629L12.087-15.723Q12.087-15.555 12.329-15.508Q12.571-15.461 12.891-15.461L12.891-15.164M12.059-20.066L12.059-17.898L13.235-17.898Q13.923-17.898 14.261-18.174Q14.598-18.449 14.598-19.117Q14.598-19.781 14.261-20.057Q13.923-20.332 13.235-20.332L12.462-20.332Q12.243-20.332 12.151-20.289Q12.059-20.246 12.059-20.066M18.669-15.164L16.286-15.164L16.286-15.461Q16.610-15.461 16.852-15.508Q17.095-15.555 17.095-15.723L17.095-20.066Q17.095-20.238 16.852-20.285Q16.610-20.332 16.286-20.332L16.286-20.629L19.231-20.629Q19.575-20.629 19.930-20.529Q20.286-20.430 20.581-20.238Q20.876-20.047 21.057-19.762Q21.239-19.477 21.239-19.117Q21.239-18.644 20.928-18.309Q20.618-17.973 20.153-17.801Q19.688-17.629 19.231-17.629L17.864-17.629L17.864-15.723Q17.864-15.555 18.106-15.508Q18.348-15.461 18.669-15.461L18.669-15.164M17.837-20.066L17.837-17.898L19.012-17.898Q19.700-17.898 20.038-18.174Q20.376-18.449 20.376-19.117Q20.376-19.781 20.038-20.057Q19.700-20.332 19.012-20.332L18.239-20.332Q18.020-20.332 17.928-20.289Q17.837-20.246 17.837-20.066M23.970-15.164L22.048-15.164L22.048-15.461Q22.856-15.461 22.856-15.941L22.856-20.285Q22.598-20.332 22.048-20.332L22.048-20.629L23.544-20.629Q23.602-20.609 23.614-20.598L26.622-16.410L26.622-19.852Q26.622-20.332 25.817-20.332L25.817-20.629L27.735-20.629L27.735-20.332Q26.927-20.332 26.927-19.852L26.927-15.269Q26.907-15.184 26.833-15.164L26.727-15.164Q26.673-15.176 26.657-15.203L23.161-20.059L23.161-15.941Q23.161-15.461 23.970-15.461\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M81.689 24.67h68.287V1.906H81.689Z\"\u002F>\u003Cg transform=\"translate(96.589 31.186)\">\u003Cpath d=\"M12.891-15.164L10.509-15.164L10.509-15.461Q10.833-15.461 11.075-15.508Q11.317-15.555 11.317-15.723L11.317-20.066Q11.317-20.238 11.075-20.285Q10.833-20.332 10.509-20.332L10.509-20.629L13.454-20.629Q13.798-20.629 14.153-20.529Q14.509-20.430 14.803-20.238Q15.098-20.047 15.280-19.762Q15.462-19.477 15.462-19.117Q15.462-18.644 15.151-18.309Q14.841-17.973 14.376-17.801Q13.911-17.629 13.454-17.629L12.087-17.629L12.087-15.723Q12.087-15.555 12.329-15.508Q12.571-15.461 12.891-15.461L12.891-15.164M12.059-20.066L12.059-17.898L13.235-17.898Q13.923-17.898 14.261-18.174Q14.598-18.449 14.598-19.117Q14.598-19.781 14.261-20.057Q13.923-20.332 13.235-20.332L12.462-20.332Q12.243-20.332 12.151-20.289Q12.059-20.246 12.059-20.066M18.669-15.164L16.286-15.164L16.286-15.461Q16.610-15.461 16.852-15.508Q17.095-15.555 17.095-15.723L17.095-20.066Q17.095-20.238 16.852-20.285Q16.610-20.332 16.286-20.332L16.286-20.629L19.231-20.629Q19.575-20.629 19.930-20.529Q20.286-20.430 20.581-20.238Q20.876-20.047 21.057-19.762Q21.239-19.477 21.239-19.117Q21.239-18.644 20.928-18.309Q20.618-17.973 20.153-17.801Q19.688-17.629 19.231-17.629L17.864-17.629L17.864-15.723Q17.864-15.555 18.106-15.508Q18.348-15.461 18.669-15.461L18.669-15.164M17.837-20.066L17.837-17.898L19.012-17.898Q19.700-17.898 20.038-18.174Q20.376-18.449 20.376-19.117Q20.376-19.781 20.038-20.057Q19.700-20.332 19.012-20.332L18.239-20.332Q18.020-20.332 17.928-20.289Q17.837-20.246 17.837-20.066M25.016-14.996Q24.434-14.996 23.917-15.223Q23.399-15.449 23.011-15.848Q22.622-16.246 22.403-16.771Q22.184-17.297 22.184-17.867Q22.184-18.637 22.559-19.314Q22.934-19.992 23.585-20.394Q24.235-20.797 25.016-20.797Q25.790-20.797 26.440-20.394Q27.091-19.992 27.466-19.314Q27.841-18.637 27.841-17.867Q27.841-17.297 27.620-16.766Q27.399-16.234 27.014-15.842Q26.630-15.449 26.112-15.223Q25.595-14.996 25.016-14.996M23.575-16.066Q23.739-15.836 23.970-15.660Q24.200-15.484 24.468-15.389Q24.735-15.293 25.016-15.293Q25.434-15.293 25.815-15.504Q26.196-15.715 26.446-16.066Q26.977-16.785 26.977-18.004Q26.977-18.633 26.762-19.211Q26.548-19.789 26.106-20.152Q25.665-20.516 25.016-20.516Q24.364-20.516 23.921-20.152Q23.477-19.789 23.262-19.211Q23.048-18.633 23.048-18.004Q23.048-16.785 23.575-16.066\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-29.398 49.033)\">\u003Cpath d=\"M12.891-15.164L10.509-15.164L10.509-15.461Q10.833-15.461 11.075-15.508Q11.317-15.555 11.317-15.723L11.317-20.066Q11.317-20.238 11.075-20.285Q10.833-20.332 10.509-20.332L10.509-20.629L13.454-20.629Q13.798-20.629 14.153-20.529Q14.509-20.430 14.803-20.238Q15.098-20.047 15.280-19.762Q15.462-19.477 15.462-19.117Q15.462-18.644 15.151-18.309Q14.841-17.973 14.376-17.801Q13.911-17.629 13.454-17.629L12.087-17.629L12.087-15.723Q12.087-15.555 12.329-15.508Q12.571-15.461 12.891-15.461L12.891-15.164M12.059-20.066L12.059-17.898L13.235-17.898Q13.923-17.898 14.261-18.174Q14.598-18.449 14.598-19.117Q14.598-19.781 14.261-20.057Q13.923-20.332 13.235-20.332L12.462-20.332Q12.243-20.332 12.151-20.289Q12.059-20.246 12.059-20.066\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.398 49.033)\">\u003Cpath d=\"M17.268-15.164L15.518-15.164L15.518-15.461Q16.217-15.461 16.405-15.941L18.206-20.766Q18.260-20.875 18.374-20.875L18.444-20.875Q18.557-20.875 18.612-20.766L20.502-15.723Q20.581-15.555 20.784-15.508Q20.987-15.461 21.299-15.461L21.299-15.164L19.077-15.164L19.077-15.461Q19.717-15.461 19.717-15.676Q19.717-15.695 19.715-15.705Q19.713-15.715 19.709-15.723L19.245-16.957L17.100-16.957L16.717-15.941Q16.713-15.926 16.708-15.896Q16.702-15.867 16.702-15.844Q16.702-15.703 16.791-15.619Q16.881-15.535 17.014-15.498Q17.147-15.461 17.268-15.461L17.268-15.164M18.174-19.820L17.206-17.254L19.131-17.254\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-22.7-23.7c0-8.567-6.946-15.512-15.512-15.512S-53.724-32.267-53.724-23.7-46.779-8.19-38.212-8.19s15.511-6.944 15.511-15.511Zm-15.512 0\"\u002F>\u003Cg transform=\"translate(-59.336 -5.803)\">\u003Cpath d=\"M12.454-15.164L10.532-15.164L10.532-15.461Q11.341-15.461 11.341-15.941L11.341-20.066Q11.341-20.238 11.098-20.285Q10.856-20.332 10.532-20.332L10.532-20.629L12.028-20.629Q12.137-20.629 12.196-20.516L14.044-15.973L15.884-20.516Q15.946-20.629 16.052-20.629L17.555-20.629L17.555-20.332Q17.235-20.332 16.993-20.285Q16.751-20.238 16.751-20.066L16.751-15.723Q16.751-15.555 16.993-15.508Q17.235-15.461 17.555-15.461L17.555-15.164L15.255-15.164L15.255-15.461Q16.059-15.461 16.059-15.723L16.059-20.316L14.012-15.277Q13.977-15.164 13.845-15.164Q13.704-15.164 13.669-15.277L11.645-20.254L11.645-15.941Q11.645-15.461 12.454-15.461L12.454-15.164M20.231-15.164L18.309-15.164L18.309-15.461Q19.118-15.461 19.118-15.941L19.118-20.066Q19.118-20.238 18.876-20.285Q18.634-20.332 18.309-20.332L18.309-20.629L19.805-20.629Q19.915-20.629 19.973-20.516L21.821-15.973L23.661-20.516Q23.723-20.629 23.829-20.629L25.333-20.629L25.333-20.332Q25.012-20.332 24.770-20.285Q24.528-20.238 24.528-20.066L24.528-15.723Q24.528-15.555 24.770-15.508Q25.012-15.461 25.333-15.461L25.333-15.164L23.032-15.164L23.032-15.461Q23.837-15.461 23.837-15.723L23.837-20.316L21.790-15.277Q21.755-15.164 21.622-15.164Q21.481-15.164 21.446-15.277L19.423-20.254L19.423-15.941Q19.423-15.461 20.231-15.461L20.231-15.164M26.856-16.973L26.856-20.066Q26.856-20.238 26.612-20.285Q26.368-20.332 26.048-20.332L26.048-20.629L28.430-20.629L28.430-20.332Q28.110-20.332 27.866-20.283Q27.622-20.234 27.622-20.066L27.622-16.996Q27.622-16.273 27.966-15.783Q28.309-15.293 29.009-15.293Q29.473-15.293 29.845-15.523Q30.216-15.754 30.425-16.146Q30.634-16.539 30.634-16.996L30.634-19.852Q30.634-20.332 29.825-20.332L29.825-20.629L31.735-20.629L31.735-20.332Q30.927-20.332 30.927-19.852L30.927-16.973Q30.927-16.453 30.673-15.996Q30.419-15.539 29.977-15.268Q29.536-14.996 29.009-14.996Q28.598-14.996 28.218-15.139Q27.837-15.281 27.524-15.551Q27.212-15.820 27.034-16.187Q26.856-16.555 26.856-16.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-46.948-60.689h8.736v19.277\"\u002F>\u003Cpath stroke=\"none\" d=\"m-38.212-39.412 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-38.212-7.989v21.277H-6.27\"\u002F>\u003Cpath stroke=\"none\" d=\"m-4.27 13.288-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M101.606-49.108 115.131-.796\"\u002F>\u003Cpath stroke=\"none\" d=\"m115.832 1.707.882-4.566-1.583 2.063-2.423-.942\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(102.295 -6.536)\">\u003Cpath d=\"M11.079-16.117L11.079-17.859Q11.079-18.074 11.016-18.170Q10.954-18.266 10.835-18.287Q10.716-18.309 10.470-18.309L10.470-18.605L11.716-18.691L11.716-16.141L11.716-16.117Q11.716-15.805 11.770-15.643Q11.825-15.480 11.975-15.410Q12.126-15.340 12.446-15.340Q12.876-15.340 13.149-15.678Q13.423-16.016 13.423-16.461L13.423-17.859Q13.423-18.074 13.360-18.170Q13.298-18.266 13.178-18.287Q13.059-18.309 12.813-18.309L12.813-18.605L14.059-18.691L14.059-15.906Q14.059-15.695 14.122-15.600Q14.184-15.504 14.303-15.482Q14.423-15.461 14.669-15.461L14.669-15.164L13.446-15.086L13.446-15.707Q13.278-15.418 12.997-15.252Q12.716-15.086 12.395-15.086Q11.079-15.086 11.079-16.117M17.044-15.164L15.188-15.164L15.188-15.461Q15.462-15.461 15.630-15.508Q15.798-15.555 15.798-15.723L15.798-17.859Q15.798-18.074 15.735-18.170Q15.673-18.266 15.553-18.287Q15.434-18.309 15.188-18.309L15.188-18.605L16.380-18.691L16.380-17.957Q16.493-18.172 16.686-18.340Q16.880-18.508 17.118-18.600Q17.356-18.691 17.610-18.691Q18.778-18.691 18.778-17.613L18.778-15.723Q18.778-15.555 18.948-15.508Q19.118-15.461 19.387-15.461L19.387-15.164L17.532-15.164L17.532-15.461Q17.805-15.461 17.973-15.508Q18.141-15.555 18.141-15.723L18.141-17.598Q18.141-17.980 18.020-18.209Q17.899-18.437 17.548-18.437Q17.235-18.437 16.981-18.275Q16.727-18.113 16.581-17.844Q16.434-17.574 16.434-17.277L16.434-15.723Q16.434-15.555 16.604-15.508Q16.774-15.461 17.044-15.461L17.044-15.164M19.876-16.891Q19.876-17.387 20.126-17.812Q20.376-18.238 20.796-18.484Q21.216-18.730 21.716-18.730Q22.255-18.730 22.645-18.605Q23.036-18.480 23.036-18.066Q23.036-17.961 22.985-17.869Q22.934-17.777 22.843-17.727Q22.751-17.676 22.641-17.676Q22.536-17.676 22.444-17.727Q22.352-17.777 22.302-17.869Q22.251-17.961 22.251-18.066Q22.251-18.289 22.419-18.394Q22.196-18.453 21.723-18.453Q21.427-18.453 21.212-18.314Q20.997-18.176 20.866-17.945Q20.735-17.715 20.677-17.445Q20.618-17.176 20.618-16.891Q20.618-16.496 20.751-16.146Q20.884-15.797 21.155-15.580Q21.427-15.363 21.825-15.363Q22.200-15.363 22.475-15.580Q22.751-15.797 22.852-16.156Q22.868-16.219 22.930-16.219L23.036-16.219Q23.071-16.219 23.096-16.191Q23.122-16.164 23.122-16.125L23.122-16.102Q22.989-15.621 22.604-15.353Q22.220-15.086 21.716-15.086Q21.352-15.086 21.018-15.223Q20.684-15.359 20.425-15.609Q20.165-15.859 20.020-16.195Q19.876-16.531 19.876-16.891\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(102.295 -6.536)\">\u003Cpath d=\"M25.311-15.164L23.456-15.164L23.456-15.461Q23.729-15.461 23.897-15.508Q24.065-15.555 24.065-15.723L24.065-19.883Q24.065-20.098 24.002-20.193Q23.940-20.289 23.821-20.310Q23.702-20.332 23.456-20.332L23.456-20.629L24.678-20.715L24.678-18.012Q24.803-18.223 24.991-18.373Q25.178-18.523 25.405-18.607Q25.631-18.691 25.877-18.691Q27.045-18.691 27.045-17.613L27.045-15.723Q27.045-15.555 27.215-15.508Q27.385-15.461 27.655-15.461L27.655-15.164L25.799-15.164L25.799-15.461Q26.073-15.461 26.241-15.508Q26.409-15.555 26.409-15.723L26.409-17.598Q26.409-17.980 26.288-18.209Q26.166-18.437 25.815-18.437Q25.502-18.437 25.248-18.275Q24.995-18.113 24.848-17.844Q24.702-17.574 24.702-17.277L24.702-15.723Q24.702-15.555 24.872-15.508Q25.041-15.461 25.311-15.461L25.311-15.164M28.198-15.996Q28.198-16.480 28.600-16.775Q29.002-17.070 29.553-17.189Q30.104-17.309 30.596-17.309L30.596-17.598Q30.596-17.824 30.481-18.031Q30.366-18.238 30.168-18.357Q29.971-18.477 29.741-18.477Q29.315-18.477 29.030-18.371Q29.100-18.344 29.147-18.289Q29.194-18.234 29.219-18.164Q29.245-18.094 29.245-18.019Q29.245-17.914 29.194-17.822Q29.143-17.730 29.051-17.680Q28.959-17.629 28.854-17.629Q28.748-17.629 28.657-17.680Q28.565-17.730 28.514-17.822Q28.463-17.914 28.463-18.019Q28.463-18.437 28.852-18.584Q29.241-18.730 29.741-18.730Q30.073-18.730 30.426-18.600Q30.780-18.469 31.008-18.215Q31.237-17.961 31.237-17.613L31.237-15.812Q31.237-15.680 31.309-15.570Q31.381-15.461 31.510-15.461Q31.635-15.461 31.704-15.566Q31.772-15.672 31.772-15.812L31.772-16.324L32.053-16.324L32.053-15.812Q32.053-15.609 31.936-15.451Q31.819-15.293 31.637-15.209Q31.456-15.125 31.252-15.125Q31.022-15.125 30.870-15.297Q30.717-15.469 30.686-15.699Q30.526-15.418 30.217-15.252Q29.909-15.086 29.557-15.086Q29.045-15.086 28.622-15.309Q28.198-15.531 28.198-15.996M28.885-15.996Q28.885-15.711 29.112-15.525Q29.338-15.340 29.631-15.340Q29.877-15.340 30.102-15.457Q30.327-15.574 30.461-15.777Q30.596-15.980 30.596-16.234L30.596-17.066Q30.331-17.066 30.045-17.012Q29.760-16.957 29.489-16.828Q29.217-16.699 29.051-16.492Q28.885-16.285 28.885-15.996M34.276-15.164L32.420-15.164L32.420-15.461Q32.694-15.461 32.862-15.508Q33.030-15.555 33.030-15.723L33.030-17.859Q33.030-18.074 32.967-18.170Q32.905-18.266 32.786-18.287Q32.666-18.309 32.420-18.309L32.420-18.605L33.612-18.691L33.612-17.957Q33.725-18.172 33.918-18.340Q34.112-18.508 34.350-18.600Q34.588-18.691 34.842-18.691Q36.010-18.691 36.010-17.613L36.010-15.723Q36.010-15.555 36.180-15.508Q36.350-15.461 36.620-15.461L36.620-15.164L34.764-15.164L34.764-15.461Q35.038-15.461 35.206-15.508Q35.373-15.555 35.373-15.723L35.373-17.598Q35.373-17.980 35.252-18.209Q35.131-18.437 34.780-18.437Q34.467-18.437 34.213-18.275Q33.959-18.113 33.813-17.844Q33.666-17.574 33.666-17.277L33.666-15.723Q33.666-15.555 33.836-15.508Q34.006-15.461 34.276-15.461L34.276-15.164M37.065-14.555Q37.065-14.836 37.276-15.047Q37.487-15.258 37.772-15.348Q37.616-15.473 37.538-15.662Q37.459-15.851 37.459-16.051Q37.459-16.406 37.690-16.699Q37.323-17.039 37.323-17.508Q37.323-17.859 37.526-18.129Q37.729-18.398 38.049-18.545Q38.370-18.691 38.713-18.691Q39.233-18.691 39.604-18.410Q39.967-18.781 40.514-18.781Q40.694-18.781 40.821-18.654Q40.948-18.527 40.948-18.348Q40.948-18.242 40.870-18.164Q40.791-18.086 40.682-18.086Q40.573-18.086 40.497-18.162Q40.420-18.238 40.420-18.348Q40.420-18.449 40.459-18.500Q40.467-18.508 40.471-18.514Q40.475-18.519 40.475-18.523Q40.100-18.523 39.780-18.269Q40.100-17.930 40.100-17.508Q40.100-17.238 39.983-17.021Q39.866-16.805 39.661-16.646Q39.456-16.488 39.213-16.406Q38.971-16.324 38.713-16.324Q38.495-16.324 38.282-16.383Q38.069-16.441 37.873-16.562Q37.780-16.422 37.780-16.242Q37.780-16.035 37.916-15.883Q38.053-15.730 38.260-15.730L38.956-15.730Q39.444-15.730 39.856-15.646Q40.268-15.562 40.547-15.305Q40.827-15.047 40.827-14.555Q40.827-14.191 40.506-13.959Q40.186-13.726 39.745-13.625Q39.303-13.523 38.948-13.523Q38.592-13.523 38.149-13.625Q37.706-13.726 37.385-13.959Q37.065-14.191 37.065-14.555M37.569-14.555Q37.569-14.359 37.713-14.211Q37.858-14.062 38.071-13.973Q38.284-13.883 38.524-13.836Q38.764-13.789 38.948-13.789Q39.190-13.789 39.520-13.867Q39.850-13.945 40.086-14.119Q40.323-14.293 40.323-14.555Q40.323-14.961 39.913-15.070Q39.502-15.180 38.940-15.180L38.260-15.180Q37.991-15.180 37.780-15.002Q37.569-14.824 37.569-14.555M38.713-16.590Q39.436-16.590 39.436-17.508Q39.436-18.430 38.713-18.430Q37.987-18.430 37.987-17.508Q37.987-16.590 38.713-16.590M41.311-16.918Q41.311-17.398 41.543-17.814Q41.776-18.230 42.186-18.480Q42.596-18.730 43.073-18.730Q43.803-18.730 44.202-18.289Q44.600-17.848 44.600-17.117Q44.600-17.012 44.506-16.988L42.057-16.988L42.057-16.918Q42.057-16.508 42.178-16.152Q42.299-15.797 42.571-15.580Q42.842-15.363 43.272-15.363Q43.635-15.363 43.932-15.592Q44.229-15.820 44.331-16.172Q44.338-16.219 44.424-16.234L44.506-16.234Q44.600-16.207 44.600-16.125Q44.600-16.117 44.592-16.086Q44.530-15.859 44.391-15.676Q44.252-15.492 44.061-15.359Q43.870-15.226 43.651-15.156Q43.432-15.086 43.194-15.086Q42.823-15.086 42.485-15.223Q42.147-15.359 41.879-15.611Q41.612-15.863 41.461-16.203Q41.311-16.543 41.311-16.918M42.065-17.227L44.026-17.227Q44.026-17.531 43.924-17.822Q43.823-18.113 43.606-18.295Q43.389-18.477 43.073-18.477Q42.772-18.477 42.541-18.289Q42.311-18.102 42.188-17.810Q42.065-17.519 42.065-17.227M46.905-15.086Q46.424-15.086 46.016-15.330Q45.608-15.574 45.370-15.988Q45.131-16.402 45.131-16.891Q45.131-17.383 45.389-17.799Q45.647-18.215 46.079-18.453Q46.510-18.691 47.002-18.691Q47.623-18.691 48.073-18.254L48.073-19.883Q48.073-20.098 48.010-20.193Q47.948-20.289 47.831-20.310Q47.713-20.332 47.467-20.332L47.467-20.629L48.690-20.715L48.690-15.906Q48.690-15.695 48.752-15.600Q48.815-15.504 48.932-15.482Q49.049-15.461 49.299-15.461L49.299-15.164L48.049-15.086L48.049-15.570Q47.584-15.086 46.905-15.086M46.971-15.340Q47.311-15.340 47.604-15.531Q47.897-15.723 48.049-16.019L48.049-17.852Q47.901-18.125 47.639-18.281Q47.377-18.437 47.065-18.437Q46.440-18.437 46.157-17.990Q45.873-17.543 45.873-16.883Q45.873-16.238 46.125-15.789Q46.377-15.340 46.971-15.340\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Translation replaces the VPN with the PPN and copies the offset through unchanged. The physical page offset (PPO) equals the virtual page offset (VPO) exactly, because a page and a frame share size and alignment. Only the page number is looked up.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:407.965px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 305.974 116.023\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M-11.501-40.02H5.57v-17.072H-11.5Z\"\u002F>\u003Cg transform=\"translate(-2.125 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M5.57-40.02h17.072v-17.072H5.571Z\"\u002F>\u003Cg transform=\"translate(14.947 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M22.642-40.02h17.072v-17.072H22.642Z\"\u002F>\u003Cg transform=\"translate(32.019 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M39.714-40.02h17.072v-17.072H39.714Z\"\u002F>\u003Cg transform=\"translate(49.09 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M56.786-40.02h17.072v-17.072H56.786Z\"\u002F>\u003Cg transform=\"translate(66.162 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M73.858-40.02h17.071v-17.072H73.858Z\"\u002F>\u003Cg transform=\"translate(83.234 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M90.93-40.02H108v-17.072H90.93Z\"\u002F>\u003Cg transform=\"translate(100.306 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M108.001-40.02h17.072v-17.072h-17.072Z\"\u002F>\u003Cg transform=\"translate(117.378 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M125.073-40.02h17.072v-17.072h-17.072Z\"\u002F>\u003Cg transform=\"translate(134.45 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M142.145-40.02h17.072v-17.072h-17.072Z\"\u002F>\u003Cg transform=\"translate(151.521 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M159.217-40.02h17.071v-17.072h-17.071Z\"\u002F>\u003Cg transform=\"translate(168.593 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M176.289-40.02h17.071v-17.072H176.29Z\"\u002F>\u003Cg transform=\"translate(185.665 -71.4)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M193.36-40.02h17.072v-17.072h-17.071Z\"\u002F>\u003Cg transform=\"translate(202.737 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M210.432-40.02h17.072v-17.072h-17.072Z\"\u002F>\u003Cg transform=\"translate(219.809 -71.4)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(35.855 -88.891)\">\u003Cpath d=\"M0.012 25.476L-2.012 20.519Q-2.094 20.347-2.287 20.300Q-2.481 20.253-2.789 20.253L-2.789 19.956L-0.598 19.956L-0.598 20.253Q-1.223 20.253-1.223 20.468Q-1.219 20.483-1.217 20.497Q-1.215 20.511-1.211 20.519L0.449 24.612L2.035 20.733Q2.058 20.687 2.058 20.620Q2.058 20.437 1.889 20.345Q1.719 20.253 1.508 20.253L1.508 19.956L3.219 19.956L3.219 20.253Q2.922 20.253 2.691 20.368Q2.461 20.483 2.355 20.733L0.418 25.476Q0.379 25.589 0.250 25.589L0.180 25.589Q0.051 25.589 0.012 25.476M6.129 25.421L3.746 25.421L3.746 25.124Q4.070 25.124 4.312 25.077Q4.555 25.030 4.555 24.862L4.555 20.519Q4.555 20.347 4.312 20.300Q4.070 20.253 3.746 20.253L3.746 19.956L6.691 19.956Q7.035 19.956 7.390 20.056Q7.746 20.155 8.041 20.347Q8.336 20.538 8.517 20.823Q8.699 21.108 8.699 21.468Q8.699 21.941 8.389 22.276Q8.078 22.612 7.613 22.784Q7.148 22.956 6.691 22.956L5.324 22.956L5.324 24.862Q5.324 25.030 5.566 25.077Q5.808 25.124 6.129 25.124L6.129 25.421M5.297 20.519L5.297 22.687L6.473 22.687Q7.160 22.687 7.498 22.411Q7.836 22.136 7.836 21.468Q7.836 20.804 7.498 20.528Q7.160 20.253 6.473 20.253L5.699 20.253Q5.480 20.253 5.389 20.296Q5.297 20.339 5.297 20.519M11.430 25.421L9.508 25.421L9.508 25.124Q10.316 25.124 10.316 24.644L10.316 20.300Q10.058 20.253 9.508 20.253L9.508 19.956L11.004 19.956Q11.062 19.976 11.074 19.987L14.082 24.175L14.082 20.733Q14.082 20.253 13.277 20.253L13.277 19.956L15.195 19.956L15.195 20.253Q14.387 20.253 14.387 20.733L14.387 25.316Q14.367 25.401 14.293 25.421L14.187 25.421Q14.133 25.409 14.117 25.382L10.621 20.526L10.621 24.644Q10.621 25.124 11.430 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.855 -88.891)\">\u003Cpath d=\"M24.343 24.444L19.030 24.444Q18.952 24.437 18.903 24.388Q18.855 24.339 18.855 24.261Q18.855 24.191 18.902 24.140Q18.948 24.089 19.030 24.077L24.343 24.077Q24.417 24.089 24.464 24.140Q24.511 24.191 24.511 24.261Q24.511 24.339 24.462 24.388Q24.413 24.437 24.343 24.444M24.343 22.757L19.030 22.757Q18.952 22.749 18.903 22.700Q18.855 22.651 18.855 22.573Q18.855 22.503 18.902 22.452Q18.948 22.401 19.030 22.390L24.343 22.390Q24.417 22.401 24.464 22.452Q24.511 22.503 24.511 22.573Q24.511 22.651 24.462 22.700Q24.413 22.749 24.343 22.757\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.855 -88.891)\">\u003Cpath d=\"M29.948 25.499Q29.515 25.499 29.182 25.261Q28.850 25.023 28.630 24.634Q28.409 24.245 28.302 23.808Q28.194 23.370 28.194 22.972Q28.194 22.581 28.304 22.138Q28.413 21.694 28.630 21.314Q28.847 20.933 29.181 20.692Q29.515 20.452 29.948 20.452Q30.503 20.452 30.903 20.851Q31.304 21.249 31.501 21.835Q31.698 22.421 31.698 22.972Q31.698 23.526 31.501 24.114Q31.304 24.702 30.903 25.101Q30.503 25.499 29.948 25.499M29.948 24.941Q30.249 24.941 30.466 24.724Q30.682 24.507 30.809 24.179Q30.936 23.851 30.997 23.505Q31.057 23.159 31.057 22.878Q31.057 22.628 30.995 22.302Q30.932 21.976 30.802 21.685Q30.671 21.394 30.458 21.204Q30.245 21.015 29.948 21.015Q29.573 21.015 29.321 21.327Q29.069 21.640 28.952 22.073Q28.835 22.507 28.835 22.878Q28.835 23.276 28.948 23.757Q29.061 24.237 29.309 24.589Q29.557 24.941 29.948 24.941M32.331 25.183L32.331 25.093Q32.370 24.886 32.577 24.862L32.983 24.862L33.913 23.644L33.042 22.534L32.624 22.534Q32.429 22.515 32.378 22.292L32.378 22.206Q32.429 21.995 32.624 21.972L33.784 21.972Q33.983 21.995 34.034 22.206L34.034 22.292Q33.983 22.511 33.784 22.534L33.675 22.534L34.171 23.191L34.647 22.534L34.530 22.534Q34.331 22.511 34.280 22.292L34.280 22.206Q34.331 21.995 34.530 21.972L35.690 21.972Q35.886 21.991 35.936 22.206L35.936 22.292Q35.886 22.511 35.690 22.534L35.280 22.534L34.432 23.644L35.393 24.862L35.800 24.862Q35.999 24.886 36.050 25.093L36.050 25.183Q36.011 25.398 35.800 25.421L34.647 25.421Q34.440 25.398 34.401 25.183L34.401 25.093Q34.440 24.886 34.647 24.862L34.776 24.862L34.171 24.007L33.585 24.862L33.729 24.862Q33.936 24.886 33.975 25.093L33.975 25.183Q33.936 25.398 33.729 25.421L32.577 25.421Q32.382 25.401 32.331 25.183M38.440 25.499Q38.007 25.499 37.675 25.261Q37.343 25.023 37.122 24.634Q36.901 24.245 36.794 23.808Q36.686 23.370 36.686 22.972Q36.686 22.581 36.796 22.138Q36.905 21.694 37.122 21.314Q37.339 20.933 37.673 20.692Q38.007 20.452 38.440 20.452Q38.995 20.452 39.395 20.851Q39.796 21.249 39.993 21.835Q40.190 22.421 40.190 22.972Q40.190 23.526 39.993 24.114Q39.796 24.702 39.395 25.101Q38.995 25.499 38.440 25.499M38.440 24.941Q38.741 24.941 38.958 24.724Q39.175 24.507 39.302 24.179Q39.429 23.851 39.489 23.505Q39.550 23.159 39.550 22.878Q39.550 22.628 39.487 22.302Q39.425 21.976 39.294 21.685Q39.163 21.394 38.950 21.204Q38.737 21.015 38.440 21.015Q38.065 21.015 37.813 21.327Q37.561 21.640 37.444 22.073Q37.327 22.507 37.327 22.878Q37.327 23.276 37.440 23.757Q37.554 24.237 37.802 24.589Q38.050 24.941 38.440 24.941M40.772 25.183L40.772 25.093Q40.811 24.886 41.022 24.862L41.358 24.862L41.358 21.093L41.022 21.093Q40.811 21.069 40.772 20.855L40.772 20.765Q40.811 20.558 41.022 20.534L44.276 20.534Q44.475 20.558 44.526 20.765L44.526 21.605Q44.479 21.819 44.276 21.847L44.132 21.847Q43.936 21.819 43.886 21.605L43.886 21.093L41.999 21.093L41.999 22.694L43.007 22.694L43.007 22.476Q43.057 22.269 43.253 22.245L43.397 22.245Q43.593 22.265 43.643 22.476L43.643 23.460Q43.593 23.679 43.397 23.702L43.253 23.702Q43.057 23.683 43.007 23.460L43.007 23.253L41.999 23.253L41.999 24.862L42.487 24.862Q42.682 24.886 42.733 25.093L42.733 25.183Q42.682 25.398 42.487 25.421L41.022 25.421Q40.811 25.398 40.772 25.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(155.234 -88.891)\">\u003Cpath d=\"M0.012 25.476L-2.012 20.519Q-2.094 20.347-2.287 20.300Q-2.481 20.253-2.789 20.253L-2.789 19.956L-0.598 19.956L-0.598 20.253Q-1.223 20.253-1.223 20.468Q-1.219 20.483-1.217 20.497Q-1.215 20.511-1.211 20.519L0.449 24.612L2.035 20.733Q2.058 20.687 2.058 20.620Q2.058 20.437 1.889 20.345Q1.719 20.253 1.508 20.253L1.508 19.956L3.219 19.956L3.219 20.253Q2.922 20.253 2.691 20.368Q2.461 20.483 2.355 20.733L0.418 25.476Q0.379 25.589 0.250 25.589L0.180 25.589Q0.051 25.589 0.012 25.476M6.129 25.421L3.746 25.421L3.746 25.124Q4.070 25.124 4.312 25.077Q4.555 25.030 4.555 24.862L4.555 20.519Q4.555 20.347 4.312 20.300Q4.070 20.253 3.746 20.253L3.746 19.956L6.691 19.956Q7.035 19.956 7.390 20.056Q7.746 20.155 8.041 20.347Q8.336 20.538 8.517 20.823Q8.699 21.108 8.699 21.468Q8.699 21.941 8.389 22.276Q8.078 22.612 7.613 22.784Q7.148 22.956 6.691 22.956L5.324 22.956L5.324 24.862Q5.324 25.030 5.566 25.077Q5.808 25.124 6.129 25.124L6.129 25.421M5.297 20.519L5.297 22.687L6.473 22.687Q7.160 22.687 7.498 22.411Q7.836 22.136 7.836 21.468Q7.836 20.804 7.498 20.528Q7.160 20.253 6.473 20.253L5.699 20.253Q5.480 20.253 5.389 20.296Q5.297 20.339 5.297 20.519M12.476 25.589Q11.894 25.589 11.377 25.362Q10.859 25.136 10.471 24.737Q10.082 24.339 9.863 23.814Q9.644 23.288 9.644 22.718Q9.644 21.948 10.019 21.271Q10.394 20.593 11.045 20.191Q11.695 19.788 12.476 19.788Q13.250 19.788 13.900 20.191Q14.551 20.593 14.926 21.271Q15.301 21.948 15.301 22.718Q15.301 23.288 15.080 23.819Q14.859 24.351 14.474 24.743Q14.090 25.136 13.572 25.362Q13.055 25.589 12.476 25.589M11.035 24.519Q11.199 24.749 11.430 24.925Q11.660 25.101 11.928 25.196Q12.195 25.292 12.476 25.292Q12.894 25.292 13.275 25.081Q13.656 24.870 13.906 24.519Q14.437 23.800 14.437 22.581Q14.437 21.952 14.223 21.374Q14.008 20.796 13.566 20.433Q13.125 20.069 12.476 20.069Q11.824 20.069 11.381 20.433Q10.937 20.796 10.723 21.374Q10.508 21.952 10.508 22.581Q10.508 23.800 11.035 24.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.234 -88.891)\">\u003Cpath d=\"M24.587 24.444L19.274 24.444Q19.196 24.437 19.147 24.388Q19.099 24.339 19.099 24.261Q19.099 24.191 19.146 24.140Q19.192 24.089 19.274 24.077L24.587 24.077Q24.661 24.089 24.708 24.140Q24.755 24.191 24.755 24.261Q24.755 24.339 24.706 24.388Q24.657 24.437 24.587 24.444M24.587 22.757L19.274 22.757Q19.196 22.749 19.147 22.700Q19.099 22.651 19.099 22.573Q19.099 22.503 19.146 22.452Q19.192 22.401 19.274 22.390L24.587 22.390Q24.661 22.401 24.708 22.452Q24.755 22.503 24.755 22.573Q24.755 22.651 24.706 22.700Q24.657 22.749 24.587 22.757\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.234 -88.891)\">\u003Cpath d=\"M30.192 25.499Q29.759 25.499 29.426 25.261Q29.094 25.023 28.874 24.634Q28.653 24.245 28.546 23.808Q28.438 23.370 28.438 22.972Q28.438 22.581 28.548 22.138Q28.657 21.694 28.874 21.314Q29.091 20.933 29.425 20.692Q29.759 20.452 30.192 20.452Q30.747 20.452 31.147 20.851Q31.548 21.249 31.745 21.835Q31.942 22.421 31.942 22.972Q31.942 23.526 31.745 24.114Q31.548 24.702 31.147 25.101Q30.747 25.499 30.192 25.499M30.192 24.941Q30.493 24.941 30.710 24.724Q30.926 24.507 31.053 24.179Q31.180 23.851 31.241 23.505Q31.301 23.159 31.301 22.878Q31.301 22.628 31.239 22.302Q31.176 21.976 31.046 21.685Q30.915 21.394 30.702 21.204Q30.489 21.015 30.192 21.015Q29.817 21.015 29.565 21.327Q29.313 21.640 29.196 22.073Q29.079 22.507 29.079 22.878Q29.079 23.276 29.192 23.757Q29.305 24.237 29.553 24.589Q29.801 24.941 30.192 24.941M32.575 25.183L32.575 25.093Q32.614 24.886 32.821 24.862L33.227 24.862L34.157 23.644L33.286 22.534L32.868 22.534Q32.673 22.515 32.622 22.292L32.622 22.206Q32.673 21.995 32.868 21.972L34.028 21.972Q34.227 21.995 34.278 22.206L34.278 22.292Q34.227 22.511 34.028 22.534L33.919 22.534L34.415 23.191L34.891 22.534L34.774 22.534Q34.575 22.511 34.524 22.292L34.524 22.206Q34.575 21.995 34.774 21.972L35.934 21.972Q36.130 21.991 36.180 22.206L36.180 22.292Q36.130 22.511 35.934 22.534L35.524 22.534L34.676 23.644L35.637 24.862L36.044 24.862Q36.243 24.886 36.294 25.093L36.294 25.183Q36.255 25.398 36.044 25.421L34.891 25.421Q34.684 25.398 34.645 25.183L34.645 25.093Q34.684 24.886 34.891 24.862L35.020 24.862L34.415 24.007L33.829 24.862L33.973 24.862Q34.180 24.886 34.219 25.093L34.219 25.183Q34.180 25.398 33.973 25.421L32.821 25.421Q32.626 25.401 32.575 25.183M37.419 25.183L37.419 25.093Q37.469 24.886 37.669 24.862L38.485 24.862L38.485 21.679Q38.106 21.987 37.653 21.987Q37.423 21.987 37.372 21.757L37.372 21.667Q37.423 21.452 37.618 21.429Q37.946 21.429 38.200 21.191Q38.454 20.952 38.594 20.605Q38.665 20.476 38.821 20.452L38.876 20.452Q39.071 20.472 39.122 20.687L39.122 24.862L39.938 24.862Q40.137 24.886 40.188 25.093L40.188 25.183Q40.137 25.398 39.938 25.421L37.669 25.421Q37.469 25.398 37.419 25.183M43.368 24.077L41.298 24.077Q41.102 24.054 41.048 23.835L41.048 23.597Q41.048 23.523 41.091 23.452L42.938 20.581Q43.024 20.452 43.176 20.452L43.633 20.452Q43.743 20.452 43.821 20.530Q43.899 20.608 43.899 20.718L43.899 23.519L44.563 23.519Q44.758 23.542 44.809 23.749L44.809 23.835Q44.758 24.054 44.563 24.077L43.899 24.077L43.899 24.862L44.473 24.862Q44.680 24.886 44.719 25.093L44.719 25.183Q44.680 25.398 44.473 25.421L42.794 25.421Q42.587 25.398 42.544 25.183L42.544 25.093Q42.587 24.886 42.794 24.862L43.368 24.862L43.368 24.077M43.368 20.925L41.696 23.519L43.368 23.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-59.305 -71.244)\">\u003Cpath d=\"M0.012 25.476L-2.012 20.519Q-2.094 20.347-2.287 20.300Q-2.481 20.253-2.789 20.253L-2.789 19.956L-0.598 19.956L-0.598 20.253Q-1.223 20.253-1.223 20.468Q-1.219 20.483-1.217 20.497Q-1.215 20.511-1.211 20.519L0.449 24.612L2.035 20.733Q2.058 20.687 2.058 20.620Q2.058 20.437 1.889 20.345Q1.719 20.253 1.508 20.253L1.508 19.956L3.219 19.956L3.219 20.253Q2.922 20.253 2.691 20.368Q2.461 20.483 2.355 20.733L0.418 25.476Q0.379 25.589 0.250 25.589L0.180 25.589Q0.051 25.589 0.012 25.476\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-59.305 -71.244)\">\u003Cpath d=\"M4.496 25.421L2.746 25.421L2.746 25.124Q3.445 25.124 3.633 24.644L5.434 19.819Q5.488 19.710 5.602 19.710L5.672 19.710Q5.785 19.710 5.840 19.819L7.730 24.862Q7.809 25.030 8.012 25.077Q8.215 25.124 8.527 25.124L8.527 25.421L6.305 25.421L6.305 25.124Q6.945 25.124 6.945 24.909Q6.945 24.890 6.943 24.880Q6.941 24.870 6.937 24.862L6.473 23.628L4.328 23.628L3.945 24.644Q3.941 24.659 3.936 24.689Q3.930 24.718 3.930 24.741Q3.930 24.882 4.019 24.966Q4.109 25.050 4.242 25.087Q4.375 25.124 4.496 25.124L4.496 25.421M5.402 20.765L4.434 23.331L6.359 23.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-59.305 -71.244)\">\u003Cpath d=\"M13.778 25.499Q13.345 25.499 13.012 25.261Q12.680 25.023 12.460 24.634Q12.239 24.245 12.132 23.808Q12.024 23.370 12.024 22.972Q12.024 22.581 12.134 22.138Q12.243 21.694 12.460 21.314Q12.677 20.933 13.011 20.692Q13.345 20.452 13.778 20.452Q14.333 20.452 14.733 20.851Q15.134 21.249 15.331 21.835Q15.528 22.421 15.528 22.972Q15.528 23.526 15.331 24.114Q15.134 24.702 14.733 25.101Q14.333 25.499 13.778 25.499M13.778 24.941Q14.079 24.941 14.296 24.724Q14.512 24.507 14.639 24.179Q14.766 23.851 14.827 23.505Q14.887 23.159 14.887 22.878Q14.887 22.628 14.825 22.302Q14.762 21.976 14.632 21.685Q14.501 21.394 14.288 21.204Q14.075 21.015 13.778 21.015Q13.403 21.015 13.151 21.327Q12.899 21.640 12.782 22.073Q12.665 22.507 12.665 22.878Q12.665 23.276 12.778 23.757Q12.891 24.237 13.139 24.589Q13.387 24.941 13.778 24.941M16.161 25.183L16.161 25.093Q16.200 24.886 16.407 24.862L16.813 24.862L17.743 23.644L16.872 22.534L16.454 22.534Q16.259 22.515 16.208 22.292L16.208 22.206Q16.259 21.995 16.454 21.972L17.614 21.972Q17.813 21.995 17.864 22.206L17.864 22.292Q17.813 22.511 17.614 22.534L17.505 22.534L18.001 23.191L18.477 22.534L18.360 22.534Q18.161 22.511 18.110 22.292L18.110 22.206Q18.161 21.995 18.360 21.972L19.520 21.972Q19.716 21.991 19.766 22.206L19.766 22.292Q19.716 22.511 19.520 22.534L19.110 22.534L18.262 23.644L19.223 24.862L19.630 24.862Q19.829 24.886 19.880 25.093L19.880 25.183Q19.841 25.398 19.630 25.421L18.477 25.421Q18.270 25.398 18.231 25.183L18.231 25.093Q18.270 24.886 18.477 24.862L18.606 24.862L18.001 24.007L17.415 24.862L17.559 24.862Q17.766 24.886 17.805 25.093L17.805 25.183Q17.766 25.398 17.559 25.421L16.407 25.421Q16.212 25.401 16.161 25.183M22.270 25.499Q21.837 25.499 21.505 25.261Q21.173 25.023 20.952 24.634Q20.731 24.245 20.624 23.808Q20.516 23.370 20.516 22.972Q20.516 22.581 20.626 22.138Q20.735 21.694 20.952 21.314Q21.169 20.933 21.503 20.692Q21.837 20.452 22.270 20.452Q22.825 20.452 23.225 20.851Q23.626 21.249 23.823 21.835Q24.020 22.421 24.020 22.972Q24.020 23.526 23.823 24.114Q23.626 24.702 23.225 25.101Q22.825 25.499 22.270 25.499M22.270 24.941Q22.571 24.941 22.788 24.724Q23.005 24.507 23.132 24.179Q23.259 23.851 23.319 23.505Q23.380 23.159 23.380 22.878Q23.380 22.628 23.317 22.302Q23.255 21.976 23.124 21.685Q22.993 21.394 22.780 21.204Q22.567 21.015 22.270 21.015Q21.895 21.015 21.643 21.327Q21.391 21.640 21.274 22.073Q21.157 22.507 21.157 22.878Q21.157 23.276 21.270 23.757Q21.384 24.237 21.632 24.589Q21.880 24.941 22.270 24.941M24.747 24.374Q24.747 24.198 24.864 24.077Q24.981 23.956 25.157 23.956Q25.239 23.956 25.315 23.987Q25.391 24.019 25.442 24.069Q25.493 24.120 25.524 24.200Q25.555 24.280 25.555 24.358Q25.555 24.491 25.473 24.605Q25.743 24.941 26.532 24.941Q26.958 24.941 27.300 24.675Q27.641 24.409 27.641 23.995Q27.641 23.722 27.475 23.503Q27.309 23.284 27.050 23.173Q26.790 23.062 26.516 23.062L26.052 23.062Q25.841 23.038 25.809 22.819L25.809 22.733Q25.841 22.530 26.052 22.499L26.579 22.460Q26.794 22.460 26.985 22.337Q27.177 22.214 27.290 22.011Q27.403 21.808 27.403 21.597Q27.403 21.323 27.120 21.169Q26.837 21.015 26.532 21.015Q25.970 21.015 25.731 21.206Q25.794 21.319 25.794 21.429Q25.794 21.601 25.680 21.714Q25.567 21.827 25.395 21.827Q25.220 21.827 25.104 21.704Q24.989 21.581 24.989 21.413Q24.989 20.886 25.462 20.669Q25.934 20.452 26.532 20.452Q26.872 20.452 27.227 20.583Q27.583 20.714 27.813 20.972Q28.044 21.230 28.044 21.597Q28.044 21.941 27.876 22.245Q27.708 22.550 27.411 22.749Q27.782 22.929 28.032 23.265Q28.282 23.601 28.282 23.995Q28.282 24.441 28.028 24.782Q27.774 25.124 27.372 25.312Q26.970 25.499 26.532 25.499Q26.247 25.499 25.942 25.444Q25.637 25.390 25.362 25.263Q25.087 25.136 24.917 24.913Q24.747 24.691 24.747 24.374M28.778 25.183L28.778 25.093Q28.817 24.886 29.024 24.862L29.274 24.862L29.274 21.093L29.024 21.093Q28.817 21.069 28.778 20.855L28.778 20.765Q28.817 20.558 29.024 20.534L30.841 20.534Q31.391 20.534 31.786 20.927Q32.180 21.319 32.376 21.898Q32.571 22.476 32.571 23.023Q32.571 23.550 32.372 24.114Q32.173 24.679 31.780 25.050Q31.387 25.421 30.841 25.421L29.024 25.421Q28.817 25.398 28.778 25.183M29.915 21.093L29.915 24.862L30.680 24.862Q31.274 24.862 31.602 24.267Q31.930 23.671 31.930 23.023Q31.930 22.616 31.796 22.167Q31.661 21.718 31.376 21.405Q31.091 21.093 30.680 21.093L29.915 21.093M35.446 24.077L33.376 24.077Q33.180 24.054 33.126 23.835L33.126 23.597Q33.126 23.523 33.169 23.452L35.016 20.581Q35.102 20.452 35.255 20.452L35.712 20.452Q35.821 20.452 35.899 20.530Q35.977 20.608 35.977 20.718L35.977 23.519L36.641 23.519Q36.837 23.542 36.887 23.749L36.887 23.835Q36.837 24.054 36.641 24.077L35.977 24.077L35.977 24.862L36.552 24.862Q36.759 24.886 36.798 25.093L36.798 25.183Q36.759 25.398 36.552 25.421L34.872 25.421Q34.665 25.398 34.622 25.183L34.622 25.093Q34.665 24.886 34.872 24.862L35.446 24.862L35.446 24.077M35.446 20.925L33.774 23.519L35.446 23.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M22.642 22.576h17.072V5.504H22.642Z\"\u002F>\u003Cg transform=\"translate(32.018 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M39.714 22.576h17.071V5.504H39.714Z\"\u002F>\u003Cg transform=\"translate(49.09 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M56.786 22.576h17.071V5.504H56.786Z\"\u002F>\u003Cg transform=\"translate(66.162 -8.803)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M73.857 22.576H90.93V5.504H73.857Z\"\u002F>\u003Cg transform=\"translate(83.234 -8.803)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M90.93 22.576H108V5.504H90.93Z\"\u002F>\u003Cg transform=\"translate(100.305 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M108.001 22.576h17.072V5.504H108Z\"\u002F>\u003Cg transform=\"translate(117.377 -8.803)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M125.073 22.576h17.071V5.504h-17.071Z\"\u002F>\u003Cg transform=\"translate(134.45 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M142.145 22.576h17.071V5.504h-17.071Z\"\u002F>\u003Cg transform=\"translate(151.52 -8.803)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M159.216 22.576h17.072V5.504h-17.072Z\"\u002F>\u003Cg transform=\"translate(168.593 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M176.288 22.576h17.072V5.504h-17.072Z\"\u002F>\u003Cg transform=\"translate(185.665 -8.803)\">\u003Cpath d=\"M0.629 25.421L-2.164 25.421L-2.164 25.124Q-1.102 25.124-1.102 24.862L-1.102 20.694Q-1.531 20.909-2.211 20.909L-2.211 20.612Q-1.192 20.612-0.676 20.101L-0.531 20.101Q-0.457 20.120-0.438 20.198L-0.438 24.862Q-0.438 25.124 0.629 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M193.36 22.576h17.072V5.504H193.36Z\"\u002F>\u003Cg transform=\"translate(202.736 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M210.432 22.576h17.072V5.504h-17.072Z\"\u002F>\u003Cg transform=\"translate(219.808 -8.803)\">\u003Cpath d=\"M-0.844 25.589Q-1.547 25.589-1.947 25.189Q-2.348 24.788-2.492 24.179Q-2.637 23.569-2.637 22.870Q-2.637 22.347-2.567 21.884Q-2.496 21.421-2.303 21.009Q-2.110 20.597-1.752 20.349Q-1.395 20.101-0.844 20.101Q-0.293 20.101 0.064 20.349Q0.422 20.597 0.613 21.007Q0.805 21.417 0.875 21.886Q0.945 22.355 0.945 22.870Q0.945 23.569 0.803 24.177Q0.660 24.784 0.260 25.187Q-0.141 25.589-0.844 25.589M-0.844 25.331Q-0.371 25.331-0.139 24.896Q0.094 24.460 0.148 23.921Q0.203 23.382 0.203 22.741Q0.203 21.745 0.019 21.052Q-0.164 20.358-0.844 20.358Q-1.211 20.358-1.432 20.597Q-1.652 20.835-1.748 21.192Q-1.844 21.550-1.869 21.921Q-1.895 22.292-1.895 22.741Q-1.895 23.382-1.840 23.921Q-1.785 24.460-1.553 24.896Q-1.320 25.331-0.844 25.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(53.22 9)\">\u003Cpath d=\"M-0.231 25.421L-2.613 25.421L-2.613 25.124Q-2.289 25.124-2.047 25.077Q-1.805 25.030-1.805 24.862L-1.805 20.519Q-1.805 20.347-2.047 20.300Q-2.289 20.253-2.613 20.253L-2.613 19.956L0.332 19.956Q0.676 19.956 1.031 20.056Q1.387 20.155 1.681 20.347Q1.976 20.538 2.158 20.823Q2.340 21.108 2.340 21.468Q2.340 21.941 2.029 22.276Q1.719 22.612 1.254 22.784Q0.789 22.956 0.332 22.956L-1.035 22.956L-1.035 24.862Q-1.035 25.030-0.793 25.077Q-0.551 25.124-0.231 25.124L-0.231 25.421M-1.063 20.519L-1.063 22.687L0.113 22.687Q0.801 22.687 1.139 22.411Q1.476 22.136 1.476 21.468Q1.476 20.804 1.139 20.528Q0.801 20.253 0.113 20.253L-0.660 20.253Q-0.879 20.253-0.971 20.296Q-1.063 20.339-1.063 20.519M5.547 25.421L3.164 25.421L3.164 25.124Q3.488 25.124 3.730 25.077Q3.973 25.030 3.973 24.862L3.973 20.519Q3.973 20.347 3.730 20.300Q3.488 20.253 3.164 20.253L3.164 19.956L6.109 19.956Q6.453 19.956 6.808 20.056Q7.164 20.155 7.459 20.347Q7.754 20.538 7.935 20.823Q8.117 21.108 8.117 21.468Q8.117 21.941 7.806 22.276Q7.496 22.612 7.031 22.784Q6.566 22.956 6.109 22.956L4.742 22.956L4.742 24.862Q4.742 25.030 4.984 25.077Q5.226 25.124 5.547 25.124L5.547 25.421M4.715 20.519L4.715 22.687L5.890 22.687Q6.578 22.687 6.916 22.411Q7.254 22.136 7.254 21.468Q7.254 20.804 6.916 20.528Q6.578 20.253 5.890 20.253L5.117 20.253Q4.898 20.253 4.806 20.296Q4.715 20.339 4.715 20.519M10.848 25.421L8.926 25.421L8.926 25.124Q9.734 25.124 9.734 24.644L9.734 20.300Q9.476 20.253 8.926 20.253L8.926 19.956L10.422 19.956Q10.480 19.976 10.492 19.987L13.500 24.175L13.500 20.733Q13.500 20.253 12.695 20.253L12.695 19.956L14.613 19.956L14.613 20.253Q13.805 20.253 13.805 20.733L13.805 25.316Q13.785 25.401 13.711 25.421L13.605 25.421Q13.551 25.409 13.535 25.382L10.039 20.526L10.039 24.644Q10.039 25.124 10.848 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(53.22 9)\">\u003Cpath d=\"M23.757 24.444L18.444 24.444Q18.366 24.437 18.317 24.388Q18.269 24.339 18.269 24.261Q18.269 24.191 18.316 24.140Q18.362 24.089 18.444 24.077L23.757 24.077Q23.831 24.089 23.878 24.140Q23.925 24.191 23.925 24.261Q23.925 24.339 23.876 24.388Q23.827 24.437 23.757 24.444M23.757 22.757L18.444 22.757Q18.366 22.749 18.317 22.700Q18.269 22.651 18.269 22.573Q18.269 22.503 18.316 22.452Q18.362 22.401 18.444 22.390L23.757 22.390Q23.831 22.401 23.878 22.452Q23.925 22.503 23.925 22.573Q23.925 22.651 23.876 22.700Q23.827 22.749 23.757 22.757\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(53.22 9)\">\u003Cpath d=\"M29.361 25.499Q28.927 25.499 28.595 25.261Q28.263 25.023 28.043 24.634Q27.822 24.245 27.715 23.808Q27.607 23.370 27.607 22.972Q27.607 22.581 27.717 22.138Q27.826 21.694 28.043 21.314Q28.260 20.933 28.594 20.692Q28.927 20.452 29.361 20.452Q29.916 20.452 30.316 20.851Q30.717 21.249 30.914 21.835Q31.111 22.421 31.111 22.972Q31.111 23.526 30.914 24.114Q30.717 24.702 30.316 25.101Q29.916 25.499 29.361 25.499M29.361 24.941Q29.662 24.941 29.879 24.724Q30.095 24.507 30.222 24.179Q30.349 23.851 30.410 23.505Q30.470 23.159 30.470 22.878Q30.470 22.628 30.408 22.302Q30.345 21.976 30.215 21.685Q30.084 21.394 29.871 21.204Q29.658 21.015 29.361 21.015Q28.986 21.015 28.734 21.327Q28.482 21.640 28.365 22.073Q28.248 22.507 28.248 22.878Q28.248 23.276 28.361 23.757Q28.474 24.237 28.722 24.589Q28.970 24.941 29.361 24.941M31.744 25.183L31.744 25.093Q31.783 24.886 31.990 24.862L32.396 24.862L33.326 23.644L32.455 22.534L32.037 22.534Q31.842 22.515 31.791 22.292L31.791 22.206Q31.842 21.995 32.037 21.972L33.197 21.972Q33.396 21.995 33.447 22.206L33.447 22.292Q33.396 22.511 33.197 22.534L33.088 22.534L33.584 23.191L34.060 22.534L33.943 22.534Q33.744 22.511 33.693 22.292L33.693 22.206Q33.744 21.995 33.943 21.972L35.103 21.972Q35.299 21.991 35.349 22.206L35.349 22.292Q35.299 22.511 35.103 22.534L34.693 22.534L33.845 23.644L34.806 24.862L35.213 24.862Q35.412 24.886 35.463 25.093L35.463 25.183Q35.424 25.398 35.213 25.421L34.060 25.421Q33.853 25.398 33.814 25.183L33.814 25.093Q33.853 24.886 34.060 24.862L34.189 24.862L33.584 24.007L32.998 24.862L33.142 24.862Q33.349 24.886 33.388 25.093L33.388 25.183Q33.349 25.398 33.142 25.421L31.990 25.421Q31.795 25.401 31.744 25.183M37.853 25.499Q37.420 25.499 37.088 25.261Q36.756 25.023 36.535 24.634Q36.314 24.245 36.207 23.808Q36.099 23.370 36.099 22.972Q36.099 22.581 36.209 22.138Q36.318 21.694 36.535 21.314Q36.752 20.933 37.086 20.692Q37.420 20.452 37.853 20.452Q38.408 20.452 38.808 20.851Q39.209 21.249 39.406 21.835Q39.603 22.421 39.603 22.972Q39.603 23.526 39.406 24.114Q39.209 24.702 38.808 25.101Q38.408 25.499 37.853 25.499M37.853 24.941Q38.154 24.941 38.371 24.724Q38.588 24.507 38.715 24.179Q38.842 23.851 38.902 23.505Q38.963 23.159 38.963 22.878Q38.963 22.628 38.900 22.302Q38.838 21.976 38.707 21.685Q38.576 21.394 38.363 21.204Q38.150 21.015 37.853 21.015Q37.478 21.015 37.226 21.327Q36.974 21.640 36.857 22.073Q36.740 22.507 36.740 22.878Q36.740 23.276 36.853 23.757Q36.967 24.237 37.215 24.589Q37.463 24.941 37.853 24.941M40.115 25.183L40.115 25.093Q40.154 24.886 40.361 24.862L40.611 24.862L40.611 21.093L40.361 21.093Q40.154 21.069 40.115 20.855L40.115 20.765Q40.154 20.558 40.361 20.534L42.177 20.534Q42.728 20.534 43.123 20.927Q43.517 21.319 43.713 21.898Q43.908 22.476 43.908 23.023Q43.908 23.550 43.709 24.114Q43.510 24.679 43.117 25.050Q42.724 25.421 42.177 25.421L40.361 25.421Q40.154 25.398 40.115 25.183M41.252 21.093L41.252 24.862L42.017 24.862Q42.611 24.862 42.939 24.267Q43.267 23.671 43.267 23.023Q43.267 22.616 43.133 22.167Q42.998 21.718 42.713 21.405Q42.427 21.093 42.017 21.093\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(155.527 9)\">\u003Cpath d=\"M-0.231 25.421L-2.613 25.421L-2.613 25.124Q-2.289 25.124-2.047 25.077Q-1.805 25.030-1.805 24.862L-1.805 20.519Q-1.805 20.347-2.047 20.300Q-2.289 20.253-2.613 20.253L-2.613 19.956L0.332 19.956Q0.676 19.956 1.031 20.056Q1.387 20.155 1.681 20.347Q1.976 20.538 2.158 20.823Q2.340 21.108 2.340 21.468Q2.340 21.941 2.029 22.276Q1.719 22.612 1.254 22.784Q0.789 22.956 0.332 22.956L-1.035 22.956L-1.035 24.862Q-1.035 25.030-0.793 25.077Q-0.551 25.124-0.231 25.124L-0.231 25.421M-1.063 20.519L-1.063 22.687L0.113 22.687Q0.801 22.687 1.139 22.411Q1.476 22.136 1.476 21.468Q1.476 20.804 1.139 20.528Q0.801 20.253 0.113 20.253L-0.660 20.253Q-0.879 20.253-0.971 20.296Q-1.063 20.339-1.063 20.519M5.547 25.421L3.164 25.421L3.164 25.124Q3.488 25.124 3.730 25.077Q3.973 25.030 3.973 24.862L3.973 20.519Q3.973 20.347 3.730 20.300Q3.488 20.253 3.164 20.253L3.164 19.956L6.109 19.956Q6.453 19.956 6.808 20.056Q7.164 20.155 7.459 20.347Q7.754 20.538 7.935 20.823Q8.117 21.108 8.117 21.468Q8.117 21.941 7.806 22.276Q7.496 22.612 7.031 22.784Q6.566 22.956 6.109 22.956L4.742 22.956L4.742 24.862Q4.742 25.030 4.984 25.077Q5.226 25.124 5.547 25.124L5.547 25.421M4.715 20.519L4.715 22.687L5.890 22.687Q6.578 22.687 6.916 22.411Q7.254 22.136 7.254 21.468Q7.254 20.804 6.916 20.528Q6.578 20.253 5.890 20.253L5.117 20.253Q4.898 20.253 4.806 20.296Q4.715 20.339 4.715 20.519M11.894 25.589Q11.312 25.589 10.795 25.362Q10.277 25.136 9.889 24.737Q9.500 24.339 9.281 23.814Q9.062 23.288 9.062 22.718Q9.062 21.948 9.437 21.271Q9.812 20.593 10.463 20.191Q11.113 19.788 11.894 19.788Q12.668 19.788 13.318 20.191Q13.969 20.593 14.344 21.271Q14.719 21.948 14.719 22.718Q14.719 23.288 14.498 23.819Q14.277 24.351 13.892 24.743Q13.508 25.136 12.990 25.362Q12.473 25.589 11.894 25.589M10.453 24.519Q10.617 24.749 10.848 24.925Q11.078 25.101 11.346 25.196Q11.613 25.292 11.894 25.292Q12.312 25.292 12.693 25.081Q13.074 24.870 13.324 24.519Q13.855 23.800 13.855 22.581Q13.855 21.952 13.640 21.374Q13.426 20.796 12.984 20.433Q12.543 20.069 11.894 20.069Q11.242 20.069 10.799 20.433Q10.355 20.796 10.140 21.374Q9.926 21.952 9.926 22.581Q9.926 23.800 10.453 24.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.527 9)\">\u003Cpath d=\"M24.001 24.444L18.688 24.444Q18.610 24.437 18.561 24.388Q18.513 24.339 18.513 24.261Q18.513 24.191 18.560 24.140Q18.606 24.089 18.688 24.077L24.001 24.077Q24.075 24.089 24.122 24.140Q24.169 24.191 24.169 24.261Q24.169 24.339 24.120 24.388Q24.071 24.437 24.001 24.444M24.001 22.757L18.688 22.757Q18.610 22.749 18.561 22.700Q18.513 22.651 18.513 22.573Q18.513 22.503 18.560 22.452Q18.606 22.401 18.688 22.390L24.001 22.390Q24.075 22.401 24.122 22.452Q24.169 22.503 24.169 22.573Q24.169 22.651 24.120 22.700Q24.071 22.749 24.001 22.757\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.527 9)\">\u003Cpath d=\"M29.606 25.499Q29.172 25.499 28.840 25.261Q28.508 25.023 28.288 24.634Q28.067 24.245 27.960 23.808Q27.852 23.370 27.852 22.972Q27.852 22.581 27.962 22.138Q28.071 21.694 28.288 21.314Q28.505 20.933 28.839 20.692Q29.172 20.452 29.606 20.452Q30.161 20.452 30.561 20.851Q30.962 21.249 31.159 21.835Q31.356 22.421 31.356 22.972Q31.356 23.526 31.159 24.114Q30.962 24.702 30.561 25.101Q30.161 25.499 29.606 25.499M29.606 24.941Q29.907 24.941 30.124 24.724Q30.340 24.507 30.467 24.179Q30.594 23.851 30.655 23.505Q30.715 23.159 30.715 22.878Q30.715 22.628 30.653 22.302Q30.590 21.976 30.460 21.685Q30.329 21.394 30.116 21.204Q29.903 21.015 29.606 21.015Q29.231 21.015 28.979 21.327Q28.727 21.640 28.610 22.073Q28.493 22.507 28.493 22.878Q28.493 23.276 28.606 23.757Q28.719 24.237 28.967 24.589Q29.215 24.941 29.606 24.941M31.989 25.183L31.989 25.093Q32.028 24.886 32.235 24.862L32.641 24.862L33.571 23.644L32.700 22.534L32.282 22.534Q32.087 22.515 32.036 22.292L32.036 22.206Q32.087 21.995 32.282 21.972L33.442 21.972Q33.641 21.995 33.692 22.206L33.692 22.292Q33.641 22.511 33.442 22.534L33.333 22.534L33.829 23.191L34.305 22.534L34.188 22.534Q33.989 22.511 33.938 22.292L33.938 22.206Q33.989 21.995 34.188 21.972L35.348 21.972Q35.544 21.991 35.594 22.206L35.594 22.292Q35.544 22.511 35.348 22.534L34.938 22.534L34.090 23.644L35.051 24.862L35.458 24.862Q35.657 24.886 35.708 25.093L35.708 25.183Q35.669 25.398 35.458 25.421L34.305 25.421Q34.098 25.398 34.059 25.183L34.059 25.093Q34.098 24.886 34.305 24.862L34.434 24.862L33.829 24.007L33.243 24.862L33.387 24.862Q33.594 24.886 33.633 25.093L33.633 25.183Q33.594 25.398 33.387 25.421L32.235 25.421Q32.040 25.401 31.989 25.183M36.833 25.183L36.833 25.093Q36.883 24.886 37.083 24.862L37.899 24.862L37.899 21.679Q37.520 21.987 37.067 21.987Q36.837 21.987 36.786 21.757L36.786 21.667Q36.837 21.452 37.032 21.429Q37.360 21.429 37.614 21.191Q37.868 20.952 38.008 20.605Q38.079 20.476 38.235 20.452L38.290 20.452Q38.485 20.472 38.536 20.687L38.536 24.862L39.352 24.862Q39.551 24.886 39.602 25.093L39.602 25.183Q39.551 25.398 39.352 25.421L37.083 25.421Q36.883 25.398 36.833 25.183M42.782 24.077L40.712 24.077Q40.516 24.054 40.462 23.835L40.462 23.597Q40.462 23.523 40.505 23.452L42.352 20.581Q42.438 20.452 42.590 20.452L43.047 20.452Q43.157 20.452 43.235 20.530Q43.313 20.608 43.313 20.718L43.313 23.519L43.977 23.519Q44.172 23.542 44.223 23.749L44.223 23.835Q44.172 24.054 43.977 24.077L43.313 24.077L43.313 24.862L43.887 24.862Q44.094 24.886 44.133 25.093L44.133 25.183Q44.094 25.398 43.887 25.421L42.208 25.421Q42.001 25.398 41.958 25.183L41.958 25.093Q42.001 24.886 42.208 24.862L42.782 24.862L42.782 24.077M42.782 20.925L41.110 23.519L42.782 23.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-20.562 -8.648)\">\u003Cpath d=\"M-0.231 25.421L-2.613 25.421L-2.613 25.124Q-2.289 25.124-2.047 25.077Q-1.805 25.030-1.805 24.862L-1.805 20.519Q-1.805 20.347-2.047 20.300Q-2.289 20.253-2.613 20.253L-2.613 19.956L0.332 19.956Q0.676 19.956 1.031 20.056Q1.387 20.155 1.681 20.347Q1.976 20.538 2.158 20.823Q2.340 21.108 2.340 21.468Q2.340 21.941 2.029 22.276Q1.719 22.612 1.254 22.784Q0.789 22.956 0.332 22.956L-1.035 22.956L-1.035 24.862Q-1.035 25.030-0.793 25.077Q-0.551 25.124-0.231 25.124L-0.231 25.421M-1.063 20.519L-1.063 22.687L0.113 22.687Q0.801 22.687 1.139 22.411Q1.476 22.136 1.476 21.468Q1.476 20.804 1.139 20.528Q0.801 20.253 0.113 20.253L-0.660 20.253Q-0.879 20.253-0.971 20.296Q-1.063 20.339-1.063 20.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.562 -8.648)\">\u003Cpath d=\"M4.146 25.421L2.396 25.421L2.396 25.124Q3.095 25.124 3.283 24.644L5.084 19.819Q5.138 19.710 5.252 19.710L5.322 19.710Q5.435 19.710 5.490 19.819L7.380 24.862Q7.459 25.030 7.662 25.077Q7.865 25.124 8.177 25.124L8.177 25.421L5.955 25.421L5.955 25.124Q6.595 25.124 6.595 24.909Q6.595 24.890 6.593 24.880Q6.591 24.870 6.587 24.862L6.123 23.628L3.978 23.628L3.595 24.644Q3.591 24.659 3.586 24.689Q3.580 24.718 3.580 24.741Q3.580 24.882 3.670 24.966Q3.759 25.050 3.892 25.087Q4.025 25.124 4.146 25.124L4.146 25.421M5.052 20.765L4.084 23.331L6.009 23.331\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.562 -8.648)\">\u003Cpath d=\"M13.428 25.499Q12.995 25.499 12.662 25.261Q12.330 25.023 12.110 24.634Q11.889 24.245 11.782 23.808Q11.674 23.370 11.674 22.972Q11.674 22.581 11.784 22.138Q11.893 21.694 12.110 21.314Q12.327 20.933 12.661 20.692Q12.995 20.452 13.428 20.452Q13.983 20.452 14.383 20.851Q14.784 21.249 14.981 21.835Q15.178 22.421 15.178 22.972Q15.178 23.526 14.981 24.114Q14.784 24.702 14.383 25.101Q13.983 25.499 13.428 25.499M13.428 24.941Q13.729 24.941 13.946 24.724Q14.162 24.507 14.289 24.179Q14.416 23.851 14.477 23.505Q14.537 23.159 14.537 22.878Q14.537 22.628 14.475 22.302Q14.412 21.976 14.282 21.685Q14.151 21.394 13.938 21.204Q13.725 21.015 13.428 21.015Q13.053 21.015 12.801 21.327Q12.549 21.640 12.432 22.073Q12.315 22.507 12.315 22.878Q12.315 23.276 12.428 23.757Q12.541 24.237 12.789 24.589Q13.037 24.941 13.428 24.941M15.811 25.183L15.811 25.093Q15.850 24.886 16.057 24.862L16.463 24.862L17.393 23.644L16.522 22.534L16.104 22.534Q15.909 22.515 15.858 22.292L15.858 22.206Q15.909 21.995 16.104 21.972L17.264 21.972Q17.463 21.995 17.514 22.206L17.514 22.292Q17.463 22.511 17.264 22.534L17.155 22.534L17.651 23.191L18.127 22.534L18.010 22.534Q17.811 22.511 17.760 22.292L17.760 22.206Q17.811 21.995 18.010 21.972L19.170 21.972Q19.366 21.991 19.416 22.206L19.416 22.292Q19.366 22.511 19.170 22.534L18.760 22.534L17.912 23.644L18.873 24.862L19.280 24.862Q19.479 24.886 19.530 25.093L19.530 25.183Q19.491 25.398 19.280 25.421L18.127 25.421Q17.920 25.398 17.881 25.183L17.881 25.093Q17.920 24.886 18.127 24.862L18.256 24.862L17.651 24.007L17.065 24.862L17.209 24.862Q17.416 24.886 17.455 25.093L17.455 25.183Q17.416 25.398 17.209 25.421L16.057 25.421Q15.862 25.401 15.811 25.183M20.151 24.374Q20.151 24.198 20.268 24.077Q20.385 23.956 20.561 23.956Q20.643 23.956 20.719 23.987Q20.795 24.019 20.846 24.069Q20.897 24.120 20.928 24.200Q20.959 24.280 20.959 24.358Q20.959 24.491 20.877 24.605Q21.147 24.941 21.936 24.941Q22.362 24.941 22.703 24.675Q23.045 24.409 23.045 23.995Q23.045 23.722 22.879 23.503Q22.713 23.284 22.453 23.173Q22.194 23.062 21.920 23.062L21.455 23.062Q21.245 23.038 21.213 22.819L21.213 22.733Q21.245 22.530 21.455 22.499L21.983 22.460Q22.198 22.460 22.389 22.337Q22.580 22.214 22.694 22.011Q22.807 21.808 22.807 21.597Q22.807 21.323 22.524 21.169Q22.241 21.015 21.936 21.015Q21.373 21.015 21.135 21.206Q21.198 21.319 21.198 21.429Q21.198 21.601 21.084 21.714Q20.971 21.827 20.799 21.827Q20.623 21.827 20.508 21.704Q20.393 21.581 20.393 21.413Q20.393 20.886 20.866 20.669Q21.338 20.452 21.936 20.452Q22.276 20.452 22.631 20.583Q22.987 20.714 23.217 20.972Q23.448 21.230 23.448 21.597Q23.448 21.941 23.280 22.245Q23.112 22.550 22.815 22.749Q23.186 22.929 23.436 23.265Q23.686 23.601 23.686 23.995Q23.686 24.441 23.432 24.782Q23.178 25.124 22.776 25.312Q22.373 25.499 21.936 25.499Q21.651 25.499 21.346 25.444Q21.041 25.390 20.766 25.263Q20.491 25.136 20.321 24.913Q20.151 24.691 20.151 24.374M25.182 24.542Q25.299 24.745 25.534 24.843Q25.768 24.941 26.030 24.941Q26.327 24.941 26.600 24.812Q26.873 24.683 27.047 24.446Q27.221 24.210 27.221 23.909Q27.221 23.655 27.102 23.413Q26.983 23.171 26.768 23.025Q26.553 22.878 26.284 22.878Q25.678 22.878 25.342 23.198Q25.264 23.284 25.209 23.331Q25.155 23.378 25.069 23.390L24.967 23.390Q24.768 23.366 24.717 23.148L24.717 20.765Q24.768 20.558 24.967 20.534L27.327 20.534Q27.522 20.554 27.573 20.765L27.573 20.855Q27.522 21.069 27.327 21.093L25.358 21.093L25.358 22.519Q25.764 22.316 26.284 22.316Q26.713 22.316 27.078 22.532Q27.444 22.749 27.653 23.118Q27.862 23.487 27.862 23.909Q27.862 24.382 27.598 24.741Q27.334 25.101 26.911 25.300Q26.487 25.499 26.030 25.499Q25.776 25.499 25.498 25.425Q25.221 25.351 24.987 25.194Q24.752 25.038 24.612 24.804Q24.471 24.569 24.471 24.284Q24.471 24.116 24.586 23.993Q24.702 23.870 24.877 23.870Q24.959 23.870 25.030 23.900Q25.100 23.929 25.157 23.983Q25.213 24.038 25.245 24.114Q25.276 24.191 25.276 24.269Q25.276 24.429 25.182 24.542M30.850 24.077L28.780 24.077Q28.584 24.054 28.530 23.835L28.530 23.597Q28.530 23.523 28.573 23.452L30.420 20.581Q30.506 20.452 30.659 20.452L31.116 20.452Q31.225 20.452 31.303 20.530Q31.381 20.608 31.381 20.718L31.381 23.519L32.045 23.519Q32.241 23.542 32.291 23.749L32.291 23.835Q32.241 24.054 32.045 24.077L31.381 24.077L31.381 24.862L31.955 24.862Q32.162 24.886 32.202 25.093L32.202 25.183Q32.162 25.398 31.955 25.421L30.276 25.421Q30.069 25.398 30.026 25.183L30.026 25.093Q30.069 24.886 30.276 24.862L30.850 24.862L30.850 24.077M30.850 20.925L29.178 23.519L30.850 23.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m56.785-38.598 16.33 40.822\"\u002F>\u003Cpath stroke=\"none\" d=\"m73.857 4.081.297-3.565-1.04 1.708-1.931-.52\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M46.117 17.472L44.262 17.472L44.262 17.179Q44.531 17.179 44.699 17.134Q44.867 17.089 44.867 16.913L44.867 13.089Q44.867 12.882 44.711 12.829Q44.555 12.776 44.262 12.776L44.262 12.480L45.484 12.394L45.484 12.858Q45.715 12.636 46.029 12.515Q46.344 12.394 46.684 12.394Q47.156 12.394 47.560 12.640Q47.965 12.886 48.197 13.302Q48.430 13.718 48.430 14.194Q48.430 14.569 48.281 14.898Q48.133 15.226 47.863 15.478Q47.594 15.730 47.250 15.864Q46.906 15.999 46.547 15.999Q46.258 15.999 45.986 15.878Q45.715 15.757 45.508 15.546L45.508 16.913Q45.508 17.089 45.676 17.134Q45.844 17.179 46.117 17.179L46.117 17.472M45.508 13.257L45.508 15.097Q45.660 15.386 45.922 15.566Q46.184 15.745 46.492 15.745Q46.777 15.745 47 15.607Q47.223 15.468 47.375 15.237Q47.527 15.007 47.605 14.735Q47.684 14.464 47.684 14.194Q47.684 13.862 47.559 13.505Q47.434 13.148 47.185 12.911Q46.937 12.675 46.590 12.675Q46.266 12.675 45.971 12.831Q45.676 12.987 45.508 13.257M49.051 15.089Q49.051 14.605 49.453 14.310Q49.855 14.015 50.406 13.896Q50.957 13.776 51.449 13.776L51.449 13.487Q51.449 13.261 51.334 13.054Q51.219 12.847 51.021 12.728Q50.824 12.608 50.594 12.608Q50.168 12.608 49.883 12.714Q49.953 12.741 50 12.796Q50.047 12.851 50.072 12.921Q50.098 12.991 50.098 13.066Q50.098 13.171 50.047 13.263Q49.996 13.355 49.904 13.405Q49.812 13.456 49.707 13.456Q49.601 13.456 49.510 13.405Q49.418 13.355 49.367 13.263Q49.316 13.171 49.316 13.066Q49.316 12.648 49.705 12.501Q50.094 12.355 50.594 12.355Q50.926 12.355 51.279 12.485Q51.633 12.616 51.861 12.870Q52.090 13.124 52.090 13.472L52.090 15.273Q52.090 15.405 52.162 15.515Q52.234 15.624 52.363 15.624Q52.488 15.624 52.557 15.519Q52.625 15.413 52.625 15.273L52.625 14.761L52.906 14.761L52.906 15.273Q52.906 15.476 52.789 15.634Q52.672 15.792 52.490 15.876Q52.309 15.960 52.105 15.960Q51.875 15.960 51.723 15.788Q51.570 15.616 51.539 15.386Q51.379 15.667 51.070 15.833Q50.762 15.999 50.410 15.999Q49.898 15.999 49.475 15.776Q49.051 15.554 49.051 15.089M49.738 15.089Q49.738 15.374 49.965 15.560Q50.191 15.745 50.484 15.745Q50.730 15.745 50.955 15.628Q51.180 15.511 51.314 15.308Q51.449 15.105 51.449 14.851L51.449 14.019Q51.184 14.019 50.898 14.073Q50.613 14.128 50.342 14.257Q50.070 14.386 49.904 14.593Q49.738 14.800 49.738 15.089M53.199 16.530Q53.199 16.249 53.410 16.038Q53.621 15.827 53.906 15.737Q53.750 15.612 53.672 15.423Q53.594 15.233 53.594 15.034Q53.594 14.679 53.824 14.386Q53.457 14.046 53.457 13.577Q53.457 13.226 53.660 12.956Q53.863 12.687 54.184 12.540Q54.504 12.394 54.848 12.394Q55.367 12.394 55.738 12.675Q56.101 12.304 56.648 12.304Q56.828 12.304 56.955 12.431Q57.082 12.558 57.082 12.737Q57.082 12.843 57.004 12.921Q56.926 12.999 56.816 12.999Q56.707 12.999 56.631 12.923Q56.555 12.847 56.555 12.737Q56.555 12.636 56.594 12.585Q56.601 12.577 56.605 12.571Q56.609 12.566 56.609 12.562Q56.234 12.562 55.914 12.816Q56.234 13.155 56.234 13.577Q56.234 13.847 56.117 14.064Q56 14.280 55.795 14.439Q55.590 14.597 55.348 14.679Q55.105 14.761 54.848 14.761Q54.629 14.761 54.416 14.702Q54.203 14.644 54.008 14.523Q53.914 14.663 53.914 14.843Q53.914 15.050 54.051 15.202Q54.187 15.355 54.394 15.355L55.090 15.355Q55.578 15.355 55.990 15.439Q56.402 15.523 56.682 15.780Q56.961 16.038 56.961 16.530Q56.961 16.894 56.641 17.126Q56.320 17.358 55.879 17.460Q55.437 17.562 55.082 17.562Q54.726 17.562 54.283 17.460Q53.840 17.358 53.519 17.126Q53.199 16.894 53.199 16.530M53.703 16.530Q53.703 16.726 53.848 16.874Q53.992 17.023 54.205 17.112Q54.418 17.202 54.658 17.249Q54.898 17.296 55.082 17.296Q55.324 17.296 55.654 17.218Q55.984 17.140 56.221 16.966Q56.457 16.792 56.457 16.530Q56.457 16.124 56.047 16.015Q55.637 15.905 55.074 15.905L54.394 15.905Q54.125 15.905 53.914 16.083Q53.703 16.261 53.703 16.530M54.848 14.495Q55.570 14.495 55.570 13.577Q55.570 12.655 54.848 12.655Q54.121 12.655 54.121 13.577Q54.121 14.495 54.848 14.495M57.445 14.167Q57.445 13.687 57.678 13.271Q57.910 12.855 58.320 12.605Q58.730 12.355 59.207 12.355Q59.937 12.355 60.336 12.796Q60.734 13.237 60.734 13.968Q60.734 14.073 60.641 14.097L58.191 14.097L58.191 14.167Q58.191 14.577 58.312 14.933Q58.434 15.288 58.705 15.505Q58.976 15.722 59.406 15.722Q59.769 15.722 60.066 15.493Q60.363 15.265 60.465 14.913Q60.473 14.866 60.559 14.851L60.641 14.851Q60.734 14.878 60.734 14.960Q60.734 14.968 60.726 14.999Q60.664 15.226 60.525 15.409Q60.387 15.593 60.195 15.726Q60.004 15.858 59.785 15.929Q59.566 15.999 59.328 15.999Q58.957 15.999 58.619 15.862Q58.281 15.726 58.014 15.474Q57.746 15.222 57.596 14.882Q57.445 14.542 57.445 14.167M58.199 13.858L60.160 13.858Q60.160 13.554 60.059 13.263Q59.957 12.972 59.740 12.790Q59.523 12.608 59.207 12.608Q58.906 12.608 58.676 12.796Q58.445 12.983 58.322 13.275Q58.199 13.566 58.199 13.858\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M64.693 14.960L64.693 12.769L63.990 12.769L63.990 12.515Q64.346 12.515 64.588 12.282Q64.830 12.050 64.941 11.702Q65.053 11.355 65.053 10.999L65.334 10.999L65.334 12.472L66.510 12.472L66.510 12.769L65.334 12.769L65.334 14.944Q65.334 15.265 65.453 15.493Q65.572 15.722 65.853 15.722Q66.033 15.722 66.150 15.599Q66.267 15.476 66.320 15.296Q66.373 15.116 66.373 14.944L66.373 14.472L66.654 14.472L66.654 14.960Q66.654 15.214 66.549 15.454Q66.443 15.694 66.246 15.847Q66.049 15.999 65.791 15.999Q65.475 15.999 65.223 15.876Q64.971 15.753 64.832 15.519Q64.693 15.284 64.693 14.960M67.471 15.089Q67.471 14.605 67.873 14.310Q68.275 14.015 68.826 13.896Q69.377 13.776 69.869 13.776L69.869 13.487Q69.869 13.261 69.754 13.054Q69.639 12.847 69.441 12.728Q69.244 12.608 69.014 12.608Q68.588 12.608 68.303 12.714Q68.373 12.741 68.420 12.796Q68.467 12.851 68.492 12.921Q68.517 12.991 68.517 13.066Q68.517 13.171 68.467 13.263Q68.416 13.355 68.324 13.405Q68.232 13.456 68.127 13.456Q68.021 13.456 67.930 13.405Q67.838 13.355 67.787 13.263Q67.736 13.171 67.736 13.066Q67.736 12.648 68.125 12.501Q68.514 12.355 69.014 12.355Q69.346 12.355 69.699 12.485Q70.053 12.616 70.281 12.870Q70.510 13.124 70.510 13.472L70.510 15.273Q70.510 15.405 70.582 15.515Q70.654 15.624 70.783 15.624Q70.908 15.624 70.976 15.519Q71.045 15.413 71.045 15.273L71.045 14.761L71.326 14.761L71.326 15.273Q71.326 15.476 71.209 15.634Q71.092 15.792 70.910 15.876Q70.728 15.960 70.525 15.960Q70.295 15.960 70.142 15.788Q69.990 15.616 69.959 15.386Q69.799 15.667 69.490 15.833Q69.182 15.999 68.830 15.999Q68.318 15.999 67.894 15.776Q67.471 15.554 67.471 15.089M68.158 15.089Q68.158 15.374 68.385 15.560Q68.611 15.745 68.904 15.745Q69.150 15.745 69.375 15.628Q69.600 15.511 69.734 15.308Q69.869 15.105 69.869 14.851L69.869 14.019Q69.603 14.019 69.318 14.073Q69.033 14.128 68.762 14.257Q68.490 14.386 68.324 14.593Q68.158 14.800 68.158 15.089M72.533 15.921L72.252 15.921L72.252 11.202Q72.252 10.987 72.189 10.892Q72.127 10.796 72.010 10.775Q71.892 10.753 71.646 10.753L71.646 10.456L72.869 10.370L72.869 12.858Q73.346 12.394 74.045 12.394Q74.525 12.394 74.934 12.638Q75.342 12.882 75.578 13.296Q75.814 13.710 75.814 14.194Q75.814 14.569 75.666 14.898Q75.517 15.226 75.248 15.478Q74.978 15.730 74.635 15.864Q74.291 15.999 73.932 15.999Q73.611 15.999 73.312 15.851Q73.014 15.702 72.807 15.441L72.533 15.921M72.892 13.249L72.892 15.089Q73.045 15.386 73.305 15.566Q73.564 15.745 73.877 15.745Q74.303 15.745 74.570 15.526Q74.838 15.308 74.953 14.962Q75.068 14.616 75.068 14.194Q75.068 13.546 74.820 13.097Q74.572 12.648 73.975 12.648Q73.639 12.648 73.350 12.806Q73.060 12.964 72.892 13.249M78.252 15.921L76.420 15.921L76.420 15.624Q76.693 15.624 76.861 15.577Q77.029 15.530 77.029 15.362L77.029 11.202Q77.029 10.987 76.967 10.892Q76.904 10.796 76.785 10.775Q76.666 10.753 76.420 10.753L76.420 10.456L77.642 10.370L77.642 15.362Q77.642 15.530 77.810 15.577Q77.978 15.624 78.252 15.624L78.252 15.921M78.697 14.167Q78.697 13.687 78.930 13.271Q79.162 12.855 79.572 12.605Q79.982 12.355 80.459 12.355Q81.189 12.355 81.588 12.796Q81.986 13.237 81.986 13.968Q81.986 14.073 81.892 14.097L79.443 14.097L79.443 14.167Q79.443 14.577 79.564 14.933Q79.685 15.288 79.957 15.505Q80.228 15.722 80.658 15.722Q81.021 15.722 81.318 15.493Q81.615 15.265 81.717 14.913Q81.725 14.866 81.810 14.851L81.892 14.851Q81.986 14.878 81.986 14.960Q81.986 14.968 81.978 14.999Q81.916 15.226 81.777 15.409Q81.639 15.593 81.447 15.726Q81.256 15.858 81.037 15.929Q80.818 15.999 80.580 15.999Q80.209 15.999 79.871 15.862Q79.533 15.726 79.266 15.474Q78.998 15.222 78.848 14.882Q78.697 14.542 78.697 14.167M79.451 13.858L81.412 13.858Q81.412 13.554 81.310 13.263Q81.209 12.972 80.992 12.790Q80.775 12.608 80.459 12.608Q80.158 12.608 79.928 12.796Q79.697 12.983 79.574 13.275Q79.451 13.566 79.451 13.858M82.955 15.456Q82.955 15.273 83.092 15.136Q83.228 14.999 83.420 14.999Q83.611 14.999 83.744 15.132Q83.877 15.265 83.877 15.456Q83.877 15.655 83.744 15.788Q83.611 15.921 83.420 15.921Q83.228 15.921 83.092 15.784Q82.955 15.648 82.955 15.456M82.955 12.929Q82.955 12.745 83.092 12.608Q83.228 12.472 83.420 12.472Q83.611 12.472 83.744 12.605Q83.877 12.737 83.877 12.929Q83.877 13.128 83.744 13.261Q83.611 13.394 83.420 13.394Q83.228 13.394 83.092 13.257Q82.955 13.120 82.955 12.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M-0.231 25.421L-2.613 25.421L-2.613 25.124Q-2.289 25.124-2.047 25.077Q-1.805 25.030-1.805 24.862L-1.805 20.519Q-1.805 20.347-2.047 20.300Q-2.289 20.253-2.613 20.253L-2.613 19.956L0.332 19.956Q0.676 19.956 1.031 20.056Q1.387 20.155 1.681 20.347Q1.976 20.538 2.158 20.823Q2.340 21.108 2.340 21.468Q2.340 21.941 2.029 22.276Q1.719 22.612 1.254 22.784Q0.789 22.956 0.332 22.956L-1.035 22.956L-1.035 24.862Q-1.035 25.030-0.793 25.077Q-0.551 25.124-0.231 25.124L-0.231 25.421M-1.063 20.519L-1.063 22.687L0.113 22.687Q0.801 22.687 1.139 22.411Q1.476 22.136 1.476 21.468Q1.476 20.804 1.139 20.528Q0.801 20.253 0.113 20.253L-0.660 20.253Q-0.879 20.253-0.971 20.296Q-1.063 20.339-1.063 20.519M7.398 25.421L4.355 25.421L4.355 25.124Q5.117 25.124 5.301 25.085Q5.344 25.073 5.392 25.040Q5.441 25.007 5.467 24.964Q5.492 24.921 5.492 24.862L5.492 20.519Q5.492 20.343 5.400 20.298Q5.308 20.253 5.094 20.253L4.699 20.253Q4.004 20.253 3.715 20.542Q3.566 20.691 3.504 21.011Q3.441 21.331 3.398 21.804L3.117 21.804L3.277 19.956L8.476 19.956L8.637 21.804L8.355 21.804Q8.312 21.296 8.250 20.993Q8.187 20.691 8.035 20.542Q7.750 20.253 7.051 20.253L6.660 20.253Q6.445 20.253 6.353 20.296Q6.262 20.339 6.262 20.519L6.262 24.862Q6.262 24.937 6.316 25.001Q6.371 25.066 6.453 25.085Q6.637 25.124 7.398 25.124L7.398 25.421M14.133 25.421L9.285 25.421L9.285 25.124Q9.605 25.124 9.849 25.077Q10.094 25.030 10.094 24.862L10.094 20.519Q10.094 20.347 9.849 20.300Q9.605 20.253 9.285 20.253L9.285 19.956L14.019 19.956L14.254 21.804L13.973 21.804Q13.890 21.108 13.715 20.788Q13.539 20.468 13.191 20.360Q12.844 20.253 12.125 20.253L11.262 20.253Q11.043 20.253 10.951 20.296Q10.859 20.339 10.859 20.519L10.859 22.437L11.492 22.437Q11.918 22.437 12.125 22.374Q12.332 22.312 12.420 22.116Q12.508 21.921 12.508 21.499L12.789 21.499L12.789 23.667L12.508 23.667Q12.508 23.245 12.420 23.052Q12.332 22.858 12.125 22.796Q11.918 22.733 11.492 22.733L10.859 22.733L10.859 24.862Q10.859 25.034 10.951 25.079Q11.043 25.124 11.262 25.124L12.187 25.124Q12.769 25.124 13.123 25.042Q13.476 24.960 13.681 24.763Q13.887 24.566 14 24.228Q14.113 23.890 14.207 23.308L14.484 23.308\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M19.689 25.499Q19.256 25.499 18.923 25.261Q18.591 25.023 18.371 24.634Q18.150 24.245 18.043 23.808Q17.935 23.370 17.935 22.972Q17.935 22.581 18.045 22.138Q18.154 21.694 18.371 21.314Q18.588 20.933 18.922 20.692Q19.256 20.452 19.689 20.452Q20.244 20.452 20.644 20.851Q21.045 21.249 21.242 21.835Q21.439 22.421 21.439 22.972Q21.439 23.526 21.242 24.114Q21.045 24.702 20.644 25.101Q20.244 25.499 19.689 25.499M19.689 24.941Q19.990 24.941 20.207 24.724Q20.423 24.507 20.550 24.179Q20.677 23.851 20.738 23.505Q20.798 23.159 20.798 22.878Q20.798 22.628 20.736 22.302Q20.673 21.976 20.543 21.685Q20.412 21.394 20.199 21.204Q19.986 21.015 19.689 21.015Q19.314 21.015 19.062 21.327Q18.810 21.640 18.693 22.073Q18.576 22.507 18.576 22.878Q18.576 23.276 18.689 23.757Q18.802 24.237 19.050 24.589Q19.298 24.941 19.689 24.941M22.072 25.183L22.072 25.093Q22.111 24.886 22.318 24.862L22.724 24.862L23.654 23.644L22.783 22.534L22.365 22.534Q22.170 22.515 22.119 22.292L22.119 22.206Q22.170 21.995 22.365 21.972L23.525 21.972Q23.724 21.995 23.775 22.206L23.775 22.292Q23.724 22.511 23.525 22.534L23.416 22.534L23.912 23.191L24.388 22.534L24.271 22.534Q24.072 22.511 24.021 22.292L24.021 22.206Q24.072 21.995 24.271 21.972L25.431 21.972Q25.627 21.991 25.677 22.206L25.677 22.292Q25.627 22.511 25.431 22.534L25.021 22.534L24.173 23.644L25.134 24.862L25.541 24.862Q25.740 24.886 25.791 25.093L25.791 25.183Q25.752 25.398 25.541 25.421L24.388 25.421Q24.181 25.398 24.142 25.183L24.142 25.093Q24.181 24.886 24.388 24.862L24.517 24.862L23.912 24.007L23.326 24.862L23.470 24.862Q23.677 24.886 23.716 25.093L23.716 25.183Q23.677 25.398 23.470 25.421L22.318 25.421Q22.123 25.401 22.072 25.183M28.181 25.499Q27.748 25.499 27.416 25.261Q27.084 25.023 26.863 24.634Q26.642 24.245 26.535 23.808Q26.427 23.370 26.427 22.972Q26.427 22.581 26.537 22.138Q26.646 21.694 26.863 21.314Q27.080 20.933 27.414 20.692Q27.748 20.452 28.181 20.452Q28.736 20.452 29.136 20.851Q29.537 21.249 29.734 21.835Q29.931 22.421 29.931 22.972Q29.931 23.526 29.734 24.114Q29.537 24.702 29.136 25.101Q28.736 25.499 28.181 25.499M28.181 24.941Q28.482 24.941 28.699 24.724Q28.916 24.507 29.043 24.179Q29.170 23.851 29.230 23.505Q29.291 23.159 29.291 22.878Q29.291 22.628 29.228 22.302Q29.166 21.976 29.035 21.685Q28.904 21.394 28.691 21.204Q28.478 21.015 28.181 21.015Q27.806 21.015 27.554 21.327Q27.302 21.640 27.185 22.073Q27.068 22.507 27.068 22.878Q27.068 23.276 27.181 23.757Q27.295 24.237 27.543 24.589Q27.791 24.941 28.181 24.941M30.513 25.183L30.513 25.093Q30.552 24.886 30.763 24.862L31.099 24.862L31.099 21.093L30.763 21.093Q30.552 21.069 30.513 20.855L30.513 20.765Q30.552 20.558 30.763 20.534L34.017 20.534Q34.216 20.558 34.267 20.765L34.267 21.605Q34.220 21.819 34.017 21.847L33.873 21.847Q33.677 21.819 33.627 21.605L33.627 21.093L31.740 21.093L31.740 22.694L32.748 22.694L32.748 22.476Q32.798 22.269 32.994 22.245L33.138 22.245Q33.334 22.265 33.384 22.476L33.384 23.460Q33.334 23.679 33.138 23.702L32.994 23.702Q32.798 23.683 32.748 23.460L32.748 23.253L31.740 23.253L31.740 24.862L32.228 24.862Q32.423 24.886 32.474 25.093L32.474 25.183Q32.423 25.398 32.228 25.421L30.763 25.421Q30.552 25.398 30.513 25.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M43.363 24.444L38.050 24.444Q37.972 24.437 37.923 24.388Q37.875 24.339 37.875 24.261Q37.875 24.191 37.922 24.140Q37.968 24.089 38.050 24.077L43.363 24.077Q43.437 24.089 43.484 24.140Q43.531 24.191 43.531 24.261Q43.531 24.339 43.482 24.388Q43.433 24.437 43.363 24.444M43.363 22.757L38.050 22.757Q37.972 22.749 37.923 22.700Q37.875 22.651 37.875 22.573Q37.875 22.503 37.922 22.452Q37.968 22.401 38.050 22.390L43.363 22.390Q43.437 22.401 43.484 22.452Q43.531 22.503 43.531 22.573Q43.531 22.651 43.482 22.700Q43.433 22.749 43.363 22.757\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M49.580 25.421L47.198 25.421L47.198 25.124Q47.522 25.124 47.764 25.077Q48.006 25.030 48.006 24.862L48.006 20.519Q48.006 20.347 47.764 20.300Q47.522 20.253 47.198 20.253L47.198 19.956L50.143 19.956Q50.487 19.956 50.842 20.056Q51.198 20.155 51.492 20.347Q51.787 20.538 51.969 20.823Q52.151 21.108 52.151 21.468Q52.151 21.941 51.840 22.276Q51.530 22.612 51.065 22.784Q50.600 22.956 50.143 22.956L48.776 22.956L48.776 24.862Q48.776 25.030 49.018 25.077Q49.260 25.124 49.580 25.124L49.580 25.421M48.748 20.519L48.748 22.687L49.924 22.687Q50.612 22.687 50.950 22.411Q51.287 22.136 51.287 21.468Q51.287 20.804 50.950 20.528Q50.612 20.253 49.924 20.253L49.151 20.253Q48.932 20.253 48.840 20.296Q48.748 20.339 48.748 20.519M55.358 25.421L52.975 25.421L52.975 25.124Q53.299 25.124 53.541 25.077Q53.783 25.030 53.783 24.862L53.783 20.519Q53.783 20.347 53.541 20.300Q53.299 20.253 52.975 20.253L52.975 19.956L55.920 19.956Q56.264 19.956 56.619 20.056Q56.975 20.155 57.270 20.347Q57.565 20.538 57.746 20.823Q57.928 21.108 57.928 21.468Q57.928 21.941 57.617 22.276Q57.307 22.612 56.842 22.784Q56.377 22.956 55.920 22.956L54.553 22.956L54.553 24.862Q54.553 25.030 54.795 25.077Q55.037 25.124 55.358 25.124L55.358 25.421M54.526 20.519L54.526 22.687L55.701 22.687Q56.389 22.687 56.727 22.411Q57.065 22.136 57.065 21.468Q57.065 20.804 56.727 20.528Q56.389 20.253 55.701 20.253L54.928 20.253Q54.709 20.253 54.617 20.296Q54.526 20.339 54.526 20.519M60.658 25.421L58.737 25.421L58.737 25.124Q59.545 25.124 59.545 24.644L59.545 20.300Q59.287 20.253 58.737 20.253L58.737 19.956L60.233 19.956Q60.291 19.976 60.303 19.987L63.311 24.175L63.311 20.733Q63.311 20.253 62.506 20.253L62.506 19.956L64.424 19.956L64.424 20.253Q63.616 20.253 63.616 20.733L63.616 25.316Q63.596 25.401 63.522 25.421L63.416 25.421Q63.362 25.409 63.346 25.382L59.850 20.526L59.850 24.644Q59.850 25.124 60.658 25.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.314 -35.151)\">\u003Cpath d=\"M69.729 25.499Q69.296 25.499 68.963 25.261Q68.631 25.023 68.411 24.634Q68.190 24.245 68.083 23.808Q67.975 23.370 67.975 22.972Q67.975 22.581 68.085 22.138Q68.194 21.694 68.411 21.314Q68.628 20.933 68.962 20.692Q69.296 20.452 69.729 20.452Q70.284 20.452 70.684 20.851Q71.085 21.249 71.282 21.835Q71.479 22.421 71.479 22.972Q71.479 23.526 71.282 24.114Q71.085 24.702 70.684 25.101Q70.284 25.499 69.729 25.499M69.729 24.941Q70.030 24.941 70.247 24.724Q70.463 24.507 70.590 24.179Q70.717 23.851 70.778 23.505Q70.838 23.159 70.838 22.878Q70.838 22.628 70.776 22.302Q70.713 21.976 70.583 21.685Q70.452 21.394 70.239 21.204Q70.026 21.015 69.729 21.015Q69.354 21.015 69.102 21.327Q68.850 21.640 68.733 22.073Q68.616 22.507 68.616 22.878Q68.616 23.276 68.729 23.757Q68.842 24.237 69.090 24.589Q69.338 24.941 69.729 24.941M72.112 25.183L72.112 25.093Q72.151 24.886 72.358 24.862L72.764 24.862L73.694 23.644L72.823 22.534L72.405 22.534Q72.210 22.515 72.159 22.292L72.159 22.206Q72.210 21.995 72.405 21.972L73.565 21.972Q73.764 21.995 73.815 22.206L73.815 22.292Q73.764 22.511 73.565 22.534L73.456 22.534L73.952 23.191L74.428 22.534L74.311 22.534Q74.112 22.511 74.061 22.292L74.061 22.206Q74.112 21.995 74.311 21.972L75.471 21.972Q75.667 21.991 75.717 22.206L75.717 22.292Q75.667 22.511 75.471 22.534L75.061 22.534L74.213 23.644L75.174 24.862L75.581 24.862Q75.780 24.886 75.831 25.093L75.831 25.183Q75.792 25.398 75.581 25.421L74.428 25.421Q74.221 25.398 74.182 25.183L74.182 25.093Q74.221 24.886 74.428 24.862L74.557 24.862L73.952 24.007L73.366 24.862L73.510 24.862Q73.717 24.886 73.756 25.093L73.756 25.183Q73.717 25.398 73.510 25.421L72.358 25.421Q72.163 25.401 72.112 25.183M78.221 25.499Q77.788 25.499 77.456 25.261Q77.124 25.023 76.903 24.634Q76.682 24.245 76.575 23.808Q76.467 23.370 76.467 22.972Q76.467 22.581 76.577 22.138Q76.686 21.694 76.903 21.314Q77.120 20.933 77.454 20.692Q77.788 20.452 78.221 20.452Q78.776 20.452 79.176 20.851Q79.577 21.249 79.774 21.835Q79.971 22.421 79.971 22.972Q79.971 23.526 79.774 24.114Q79.577 24.702 79.176 25.101Q78.776 25.499 78.221 25.499M78.221 24.941Q78.522 24.941 78.739 24.724Q78.956 24.507 79.083 24.179Q79.210 23.851 79.270 23.505Q79.331 23.159 79.331 22.878Q79.331 22.628 79.268 22.302Q79.206 21.976 79.075 21.685Q78.944 21.394 78.731 21.204Q78.518 21.015 78.221 21.015Q77.846 21.015 77.594 21.327Q77.342 21.640 77.225 22.073Q77.108 22.507 77.108 22.878Q77.108 23.276 77.221 23.757Q77.335 24.237 77.583 24.589Q77.831 24.941 78.221 24.941M80.483 25.183L80.483 25.093Q80.522 24.886 80.729 24.862L80.979 24.862L80.979 21.093L80.729 21.093Q80.522 21.069 80.483 20.855L80.483 20.765Q80.522 20.558 80.729 20.534L82.546 20.534Q83.096 20.534 83.491 20.927Q83.885 21.319 84.081 21.898Q84.276 22.476 84.276 23.023Q84.276 23.550 84.077 24.114Q83.878 24.679 83.485 25.050Q83.092 25.421 82.546 25.421L80.729 25.421Q80.522 25.398 80.483 25.183M81.620 21.093L81.620 24.862L82.385 24.862Q82.979 24.862 83.307 24.267Q83.635 23.671 83.635 23.023Q83.635 22.616 83.501 22.167Q83.366 21.718 83.081 21.405Q82.796 21.093 82.385 21.093\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M176.287-38.598v40.08\"\u002F>\u003Cpath stroke=\"none\" d=\"m176.287 4.081 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(182.985 -40.68)\">\u003Cpath d=\"M-2.043 24.468L-2.043 22.726Q-2.043 22.511-2.106 22.415Q-2.168 22.319-2.287 22.298Q-2.406 22.276-2.652 22.276L-2.652 21.980L-1.406 21.894L-1.406 24.444L-1.406 24.468Q-1.406 24.780-1.352 24.942Q-1.297 25.105-1.147 25.175Q-0.996 25.245-0.676 25.245Q-0.246 25.245 0.027 24.907Q0.301 24.569 0.301 24.124L0.301 22.726Q0.301 22.511 0.238 22.415Q0.176 22.319 0.056 22.298Q-0.063 22.276-0.309 22.276L-0.309 21.980L0.937 21.894L0.937 24.679Q0.937 24.890 1 24.985Q1.062 25.081 1.181 25.103Q1.301 25.124 1.547 25.124L1.547 25.421L0.324 25.499L0.324 24.878Q0.156 25.167-0.125 25.333Q-0.406 25.499-0.727 25.499Q-2.043 25.499-2.043 24.468M3.922 25.421L2.066 25.421L2.066 25.124Q2.340 25.124 2.508 25.077Q2.676 25.030 2.676 24.862L2.676 22.726Q2.676 22.511 2.613 22.415Q2.551 22.319 2.431 22.298Q2.312 22.276 2.066 22.276L2.066 21.980L3.258 21.894L3.258 22.628Q3.371 22.413 3.564 22.245Q3.758 22.077 3.996 21.985Q4.234 21.894 4.488 21.894Q5.656 21.894 5.656 22.972L5.656 24.862Q5.656 25.030 5.826 25.077Q5.996 25.124 6.265 25.124L6.265 25.421L4.410 25.421L4.410 25.124Q4.683 25.124 4.851 25.077Q5.019 25.030 5.019 24.862L5.019 22.987Q5.019 22.605 4.898 22.376Q4.777 22.148 4.426 22.148Q4.113 22.148 3.859 22.310Q3.605 22.472 3.459 22.741Q3.312 23.011 3.312 23.308L3.312 24.862Q3.312 25.030 3.482 25.077Q3.652 25.124 3.922 25.124L3.922 25.421M6.754 23.694Q6.754 23.198 7.004 22.773Q7.254 22.347 7.674 22.101Q8.094 21.855 8.594 21.855Q9.133 21.855 9.523 21.980Q9.914 22.105 9.914 22.519Q9.914 22.624 9.863 22.716Q9.812 22.808 9.721 22.858Q9.629 22.909 9.519 22.909Q9.414 22.909 9.322 22.858Q9.230 22.808 9.180 22.716Q9.129 22.624 9.129 22.519Q9.129 22.296 9.297 22.191Q9.074 22.132 8.601 22.132Q8.305 22.132 8.090 22.271Q7.875 22.409 7.744 22.640Q7.613 22.870 7.555 23.140Q7.496 23.409 7.496 23.694Q7.496 24.089 7.629 24.439Q7.762 24.788 8.033 25.005Q8.305 25.222 8.703 25.222Q9.078 25.222 9.353 25.005Q9.629 24.788 9.730 24.429Q9.746 24.366 9.808 24.366L9.914 24.366Q9.949 24.366 9.974 24.394Q10 24.421 10 24.460L10 24.483Q9.867 24.964 9.482 25.232Q9.098 25.499 8.594 25.499Q8.230 25.499 7.896 25.362Q7.562 25.226 7.303 24.976Q7.043 24.726 6.898 24.390Q6.754 24.054 6.754 23.694\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.985 -40.68)\">\u003Cpath d=\"M12.189 25.421L10.334 25.421L10.334 25.124Q10.607 25.124 10.775 25.077Q10.943 25.030 10.943 24.862L10.943 20.702Q10.943 20.487 10.880 20.392Q10.818 20.296 10.699 20.275Q10.580 20.253 10.334 20.253L10.334 19.956L11.556 19.870L11.556 22.573Q11.681 22.362 11.869 22.212Q12.056 22.062 12.283 21.978Q12.509 21.894 12.755 21.894Q13.923 21.894 13.923 22.972L13.923 24.862Q13.923 25.030 14.093 25.077Q14.263 25.124 14.533 25.124L14.533 25.421L12.677 25.421L12.677 25.124Q12.951 25.124 13.119 25.077Q13.287 25.030 13.287 24.862L13.287 22.987Q13.287 22.605 13.166 22.376Q13.044 22.148 12.693 22.148Q12.380 22.148 12.126 22.310Q11.873 22.472 11.726 22.741Q11.580 23.011 11.580 23.308L11.580 24.862Q11.580 25.030 11.750 25.077Q11.919 25.124 12.189 25.124L12.189 25.421M15.076 24.589Q15.076 24.105 15.478 23.810Q15.880 23.515 16.431 23.396Q16.982 23.276 17.474 23.276L17.474 22.987Q17.474 22.761 17.359 22.554Q17.244 22.347 17.046 22.228Q16.849 22.108 16.619 22.108Q16.193 22.108 15.908 22.214Q15.978 22.241 16.025 22.296Q16.072 22.351 16.097 22.421Q16.123 22.491 16.123 22.566Q16.123 22.671 16.072 22.763Q16.021 22.855 15.929 22.905Q15.837 22.956 15.732 22.956Q15.626 22.956 15.535 22.905Q15.443 22.855 15.392 22.763Q15.341 22.671 15.341 22.566Q15.341 22.148 15.730 22.001Q16.119 21.855 16.619 21.855Q16.951 21.855 17.304 21.985Q17.658 22.116 17.886 22.370Q18.115 22.624 18.115 22.972L18.115 24.773Q18.115 24.905 18.187 25.015Q18.259 25.124 18.388 25.124Q18.513 25.124 18.582 25.019Q18.650 24.913 18.650 24.773L18.650 24.261L18.931 24.261L18.931 24.773Q18.931 24.976 18.814 25.134Q18.697 25.292 18.515 25.376Q18.334 25.460 18.130 25.460Q17.900 25.460 17.748 25.288Q17.595 25.116 17.564 24.886Q17.404 25.167 17.095 25.333Q16.787 25.499 16.435 25.499Q15.923 25.499 15.500 25.276Q15.076 25.054 15.076 24.589M15.763 24.589Q15.763 24.874 15.990 25.060Q16.216 25.245 16.509 25.245Q16.755 25.245 16.980 25.128Q17.205 25.011 17.339 24.808Q17.474 24.605 17.474 24.351L17.474 23.519Q17.209 23.519 16.923 23.573Q16.638 23.628 16.367 23.757Q16.095 23.886 15.929 24.093Q15.763 24.300 15.763 24.589M21.154 25.421L19.298 25.421L19.298 25.124Q19.572 25.124 19.740 25.077Q19.908 25.030 19.908 24.862L19.908 22.726Q19.908 22.511 19.845 22.415Q19.783 22.319 19.664 22.298Q19.544 22.276 19.298 22.276L19.298 21.980L20.490 21.894L20.490 22.628Q20.603 22.413 20.796 22.245Q20.990 22.077 21.228 21.985Q21.466 21.894 21.720 21.894Q22.888 21.894 22.888 22.972L22.888 24.862Q22.888 25.030 23.058 25.077Q23.228 25.124 23.498 25.124L23.498 25.421L21.642 25.421L21.642 25.124Q21.916 25.124 22.084 25.077Q22.251 25.030 22.251 24.862L22.251 22.987Q22.251 22.605 22.130 22.376Q22.009 22.148 21.658 22.148Q21.345 22.148 21.091 22.310Q20.837 22.472 20.691 22.741Q20.544 23.011 20.544 23.308L20.544 24.862Q20.544 25.030 20.714 25.077Q20.884 25.124 21.154 25.124L21.154 25.421M23.943 26.030Q23.943 25.749 24.154 25.538Q24.365 25.327 24.650 25.237Q24.494 25.112 24.416 24.923Q24.337 24.733 24.337 24.534Q24.337 24.179 24.568 23.886Q24.201 23.546 24.201 23.077Q24.201 22.726 24.404 22.456Q24.607 22.187 24.927 22.040Q25.248 21.894 25.591 21.894Q26.111 21.894 26.482 22.175Q26.845 21.804 27.392 21.804Q27.572 21.804 27.699 21.931Q27.826 22.058 27.826 22.237Q27.826 22.343 27.748 22.421Q27.669 22.499 27.560 22.499Q27.451 22.499 27.375 22.423Q27.298 22.347 27.298 22.237Q27.298 22.136 27.337 22.085Q27.345 22.077 27.349 22.071Q27.353 22.066 27.353 22.062Q26.978 22.062 26.658 22.316Q26.978 22.655 26.978 23.077Q26.978 23.347 26.861 23.564Q26.744 23.780 26.539 23.939Q26.334 24.097 26.091 24.179Q25.849 24.261 25.591 24.261Q25.373 24.261 25.160 24.202Q24.947 24.144 24.751 24.023Q24.658 24.163 24.658 24.343Q24.658 24.550 24.794 24.702Q24.931 24.855 25.138 24.855L25.834 24.855Q26.322 24.855 26.734 24.939Q27.146 25.023 27.425 25.280Q27.705 25.538 27.705 26.030Q27.705 26.394 27.384 26.626Q27.064 26.858 26.623 26.960Q26.181 27.062 25.826 27.062Q25.470 27.062 25.027 26.960Q24.584 26.858 24.263 26.626Q23.943 26.394 23.943 26.030M24.447 26.030Q24.447 26.226 24.591 26.374Q24.736 26.523 24.949 26.612Q25.162 26.702 25.402 26.749Q25.642 26.796 25.826 26.796Q26.068 26.796 26.398 26.718Q26.728 26.640 26.964 26.466Q27.201 26.292 27.201 26.030Q27.201 25.624 26.791 25.515Q26.380 25.405 25.818 25.405L25.138 25.405Q24.869 25.405 24.658 25.583Q24.447 25.761 24.447 26.030M25.591 23.995Q26.314 23.995 26.314 23.077Q26.314 22.155 25.591 22.155Q24.865 22.155 24.865 23.077Q24.865 23.995 25.591 23.995M28.189 23.667Q28.189 23.187 28.421 22.771Q28.654 22.355 29.064 22.105Q29.474 21.855 29.951 21.855Q30.681 21.855 31.080 22.296Q31.478 22.737 31.478 23.468Q31.478 23.573 31.384 23.597L28.935 23.597L28.935 23.667Q28.935 24.077 29.056 24.433Q29.177 24.788 29.449 25.005Q29.720 25.222 30.150 25.222Q30.513 25.222 30.810 24.993Q31.107 24.765 31.209 24.413Q31.216 24.366 31.302 24.351L31.384 24.351Q31.478 24.378 31.478 24.460Q31.478 24.468 31.470 24.499Q31.408 24.726 31.269 24.909Q31.130 25.093 30.939 25.226Q30.748 25.358 30.529 25.429Q30.310 25.499 30.072 25.499Q29.701 25.499 29.363 25.362Q29.025 25.226 28.757 24.974Q28.490 24.722 28.339 24.382Q28.189 24.042 28.189 23.667M28.943 23.358L30.904 23.358Q30.904 23.054 30.802 22.763Q30.701 22.472 30.484 22.290Q30.267 22.108 29.951 22.108Q29.650 22.108 29.419 22.296Q29.189 22.483 29.066 22.775Q28.943 23.066 28.943 23.358M33.783 25.499Q33.302 25.499 32.894 25.255Q32.486 25.011 32.248 24.597Q32.009 24.183 32.009 23.694Q32.009 23.202 32.267 22.786Q32.525 22.370 32.957 22.132Q33.388 21.894 33.880 21.894Q34.501 21.894 34.951 22.331L34.951 20.702Q34.951 20.487 34.888 20.392Q34.826 20.296 34.709 20.275Q34.591 20.253 34.345 20.253L34.345 19.956L35.568 19.870L35.568 24.679Q35.568 24.890 35.630 24.985Q35.693 25.081 35.810 25.103Q35.927 25.124 36.177 25.124L36.177 25.421L34.927 25.499L34.927 25.015Q34.462 25.499 33.783 25.499M33.849 25.245Q34.189 25.245 34.482 25.054Q34.775 24.862 34.927 24.566L34.927 22.733Q34.779 22.460 34.517 22.304Q34.255 22.148 33.943 22.148Q33.318 22.148 33.035 22.595Q32.751 23.042 32.751 23.702Q32.751 24.347 33.003 24.796Q33.255 25.245 33.849 25.245\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Virtual address 0x03D4 on the example machine (n = 14, m = 12, P = 64). The high 8 bits are VPN 0x0F; the low 6 are VPO 0x14. The page table maps VPN 0x0F to PPN 0x0D, and the physical address 0x354 is that PPN with the same six offset bits appended, untouched.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:408.173px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 306.130 77.171\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-21.415h45.524V-66.94h-45.524Z\"\u002F>\u003Cg transform=\"translate(-9.143 2.733)\">\u003Cpath d=\"M-42.168-46.912Q-42.168-47.506-41.936-48.037Q-41.703-48.569-41.287-48.969Q-40.871-49.369-40.338-49.590Q-39.805-49.811-39.200-49.811Q-38.762-49.811-38.364-49.629Q-37.965-49.448-37.657-49.115L-37.184-49.780Q-37.153-49.811-37.121-49.811L-37.075-49.811Q-37.047-49.811-37.016-49.780Q-36.985-49.748-36.985-49.721L-36.985-47.584Q-36.985-47.561-37.016-47.530Q-37.047-47.498-37.075-47.498L-37.192-47.498Q-37.219-47.498-37.250-47.530Q-37.282-47.561-37.282-47.584Q-37.282-47.850-37.424-48.203Q-37.567-48.557-37.746-48.795Q-38-49.127-38.350-49.321Q-38.700-49.514-39.106-49.514Q-39.610-49.514-40.063-49.295Q-40.516-49.076-40.809-48.682Q-41.305-48.014-41.305-46.912Q-41.305-46.381-41.168-45.914Q-41.032-45.448-40.756-45.082Q-40.481-44.717-40.061-44.512Q-39.641-44.307-39.098-44.307Q-38.610-44.307-38.186-44.551Q-37.762-44.795-37.514-45.215Q-37.266-45.635-37.266-46.131Q-37.266-46.166-37.237-46.192Q-37.207-46.217-37.176-46.217L-37.075-46.217Q-37.032-46.217-37.008-46.188Q-36.985-46.158-36.985-46.115Q-36.985-45.678-37.161-45.289Q-37.336-44.901-37.647-44.617Q-37.957-44.334-38.368-44.172Q-38.778-44.010-39.200-44.010Q-39.789-44.010-40.330-44.231Q-40.871-44.451-41.287-44.856Q-41.703-45.260-41.936-45.789Q-42.168-46.319-42.168-46.912M-33.770-44.178L-36.153-44.178L-36.153-44.475Q-35.828-44.475-35.586-44.522Q-35.344-44.569-35.344-44.737L-35.344-49.080Q-35.344-49.252-35.586-49.299Q-35.828-49.346-36.153-49.346L-36.153-49.643L-33.207-49.643Q-32.864-49.643-32.508-49.543Q-32.153-49.444-31.858-49.252Q-31.563-49.061-31.381-48.776Q-31.200-48.490-31.200-48.131Q-31.200-47.658-31.510-47.323Q-31.821-46.987-32.286-46.815Q-32.750-46.643-33.207-46.643L-34.575-46.643L-34.575-44.737Q-34.575-44.569-34.332-44.522Q-34.090-44.475-33.770-44.475L-33.770-44.178M-34.602-49.080L-34.602-46.912L-33.426-46.912Q-32.739-46.912-32.401-47.188Q-32.063-47.463-32.063-48.131Q-32.063-48.795-32.401-49.071Q-32.739-49.346-33.426-49.346L-34.200-49.346Q-34.418-49.346-34.510-49.303Q-34.602-49.260-34.602-49.080M-29.582-45.987L-29.582-49.080Q-29.582-49.252-29.827-49.299Q-30.071-49.346-30.391-49.346L-30.391-49.643L-28.008-49.643L-28.008-49.346Q-28.328-49.346-28.573-49.297Q-28.817-49.248-28.817-49.080L-28.817-46.010Q-28.817-45.287-28.473-44.797Q-28.129-44.307-27.430-44.307Q-26.965-44.307-26.594-44.537Q-26.223-44.768-26.014-45.160Q-25.805-45.553-25.805-46.010L-25.805-48.865Q-25.805-49.346-26.614-49.346L-26.614-49.643L-24.703-49.643L-24.703-49.346Q-25.512-49.346-25.512-48.865L-25.512-45.987Q-25.512-45.467-25.766-45.010Q-26.020-44.553-26.461-44.282Q-26.903-44.010-27.430-44.010Q-27.840-44.010-28.221-44.153Q-28.602-44.295-28.914-44.565Q-29.227-44.834-29.405-45.201Q-29.582-45.569-29.582-45.987\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M34.181-21.415h51.215V-66.94H34.181Z\"\u002F>\u003Cg transform=\"translate(91.463 2.733)\">\u003Cpath d=\"M-40.344-44.178L-42.266-44.178L-42.266-44.475Q-41.457-44.475-41.457-44.955L-41.457-49.080Q-41.457-49.252-41.700-49.299Q-41.942-49.346-42.266-49.346L-42.266-49.643L-40.770-49.643Q-40.661-49.643-40.602-49.530L-38.754-44.987L-36.914-49.530Q-36.852-49.643-36.746-49.643L-35.243-49.643L-35.243-49.346Q-35.563-49.346-35.805-49.299Q-36.047-49.252-36.047-49.080L-36.047-44.737Q-36.047-44.569-35.805-44.522Q-35.563-44.475-35.243-44.475L-35.243-44.178L-37.543-44.178L-37.543-44.475Q-36.739-44.475-36.739-44.737L-36.739-49.330L-38.786-44.291Q-38.821-44.178-38.953-44.178Q-39.094-44.178-39.129-44.291L-41.153-49.268L-41.153-44.955Q-41.153-44.475-40.344-44.475L-40.344-44.178M-32.567-44.178L-34.489-44.178L-34.489-44.475Q-33.680-44.475-33.680-44.955L-33.680-49.080Q-33.680-49.252-33.922-49.299Q-34.164-49.346-34.489-49.346L-34.489-49.643L-32.993-49.643Q-32.883-49.643-32.825-49.530L-30.977-44.987L-29.137-49.530Q-29.075-49.643-28.969-49.643L-27.465-49.643L-27.465-49.346Q-27.786-49.346-28.028-49.299Q-28.270-49.252-28.270-49.080L-28.270-44.737Q-28.270-44.569-28.028-44.522Q-27.786-44.475-27.465-44.475L-27.465-44.178L-29.766-44.178L-29.766-44.475Q-28.961-44.475-28.961-44.737L-28.961-49.330L-31.008-44.291Q-31.043-44.178-31.176-44.178Q-31.317-44.178-31.352-44.291L-33.375-49.268L-33.375-44.955Q-33.375-44.475-32.567-44.475L-32.567-44.178M-25.942-45.987L-25.942-49.080Q-25.942-49.252-26.186-49.299Q-26.430-49.346-26.750-49.346L-26.750-49.643L-24.368-49.643L-24.368-49.346Q-24.688-49.346-24.932-49.297Q-25.176-49.248-25.176-49.080L-25.176-46.010Q-25.176-45.287-24.832-44.797Q-24.489-44.307-23.789-44.307Q-23.325-44.307-22.953-44.537Q-22.582-44.768-22.373-45.160Q-22.164-45.553-22.164-46.010L-22.164-48.865Q-22.164-49.346-22.973-49.346L-22.973-49.643L-21.063-49.643L-21.063-49.346Q-21.871-49.346-21.871-48.865L-21.871-45.987Q-21.871-45.467-22.125-45.010Q-22.379-44.553-22.821-44.282Q-23.262-44.010-23.789-44.010Q-24.200-44.010-24.580-44.153Q-24.961-44.295-25.274-44.565Q-25.586-44.834-25.764-45.201Q-25.942-45.569-25.942-45.987\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M153.683-21.415h73.977V-66.94h-73.977Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-41.058-55.405Q-41.058-55.901-40.808-56.326Q-40.558-56.752-40.138-56.998Q-39.718-57.244-39.218-57.244Q-38.679-57.244-38.288-57.119Q-37.898-56.994-37.898-56.580Q-37.898-56.475-37.948-56.383Q-37.999-56.291-38.091-56.240Q-38.183-56.190-38.292-56.190Q-38.398-56.190-38.489-56.240Q-38.581-56.291-38.632-56.383Q-38.683-56.475-38.683-56.580Q-38.683-56.803-38.515-56.908Q-38.737-56.967-39.210-56.967Q-39.507-56.967-39.722-56.828Q-39.937-56.690-40.068-56.459Q-40.198-56.229-40.257-55.959Q-40.316-55.690-40.316-55.405Q-40.316-55.010-40.183-54.660Q-40.050-54.311-39.778-54.094Q-39.507-53.877-39.109-53.877Q-38.734-53.877-38.458-54.094Q-38.183-54.311-38.081-54.670Q-38.066-54.733-38.003-54.733L-37.898-54.733Q-37.862-54.733-37.837-54.705Q-37.812-54.678-37.812-54.639L-37.812-54.615Q-37.944-54.135-38.329-53.867Q-38.714-53.600-39.218-53.600Q-39.581-53.600-39.915-53.737Q-40.249-53.873-40.509-54.123Q-40.769-54.373-40.913-54.709Q-41.058-55.045-41.058-55.405M-37.226-54.510Q-37.226-54.994-36.823-55.289Q-36.421-55.584-35.870-55.703Q-35.319-55.823-34.827-55.823L-34.827-56.112Q-34.827-56.338-34.943-56.545Q-35.058-56.752-35.255-56.871Q-35.452-56.990-35.683-56.990Q-36.109-56.990-36.394-56.885Q-36.323-56.858-36.276-56.803Q-36.230-56.748-36.204-56.678Q-36.179-56.608-36.179-56.533Q-36.179-56.428-36.230-56.336Q-36.280-56.244-36.372-56.194Q-36.464-56.143-36.569-56.143Q-36.675-56.143-36.767-56.194Q-36.859-56.244-36.909-56.336Q-36.960-56.428-36.960-56.533Q-36.960-56.951-36.571-57.098Q-36.183-57.244-35.683-57.244Q-35.351-57.244-34.997-57.114Q-34.644-56.983-34.415-56.729Q-34.187-56.475-34.187-56.127L-34.187-54.326Q-34.187-54.194-34.114-54.084Q-34.042-53.975-33.913-53.975Q-33.788-53.975-33.720-54.080Q-33.651-54.186-33.651-54.326L-33.651-54.838L-33.370-54.838L-33.370-54.326Q-33.370-54.123-33.487-53.965Q-33.605-53.807-33.786-53.723Q-33.968-53.639-34.171-53.639Q-34.401-53.639-34.554-53.811Q-34.706-53.983-34.737-54.213Q-34.898-53.932-35.206-53.766Q-35.515-53.600-35.866-53.600Q-36.378-53.600-36.802-53.823Q-37.226-54.045-37.226-54.510M-36.538-54.510Q-36.538-54.225-36.312-54.039Q-36.085-53.854-35.792-53.854Q-35.546-53.854-35.321-53.971Q-35.097-54.088-34.962-54.291Q-34.827-54.494-34.827-54.748L-34.827-55.580Q-35.093-55.580-35.378-55.526Q-35.663-55.471-35.935-55.342Q-36.206-55.213-36.372-55.006Q-36.538-54.799-36.538-54.510M-33.034-55.405Q-33.034-55.901-32.784-56.326Q-32.534-56.752-32.114-56.998Q-31.694-57.244-31.194-57.244Q-30.655-57.244-30.265-57.119Q-29.874-56.994-29.874-56.580Q-29.874-56.475-29.925-56.383Q-29.976-56.291-30.068-56.240Q-30.159-56.190-30.269-56.190Q-30.374-56.190-30.466-56.240Q-30.558-56.291-30.609-56.383Q-30.659-56.475-30.659-56.580Q-30.659-56.803-30.491-56.908Q-30.714-56.967-31.187-56.967Q-31.484-56.967-31.698-56.828Q-31.913-56.690-32.044-56.459Q-32.175-56.229-32.234-55.959Q-32.292-55.690-32.292-55.405Q-32.292-55.010-32.159-54.660Q-32.026-54.311-31.755-54.094Q-31.484-53.877-31.085-53.877Q-30.710-53.877-30.435-54.094Q-30.159-54.311-30.058-54.670Q-30.042-54.733-29.980-54.733L-29.874-54.733Q-29.839-54.733-29.814-54.705Q-29.788-54.678-29.788-54.639L-29.788-54.615Q-29.921-54.135-30.306-53.867Q-30.691-53.600-31.194-53.600Q-31.558-53.600-31.892-53.737Q-32.226-53.873-32.485-54.123Q-32.745-54.373-32.890-54.709Q-33.034-55.045-33.034-55.405M-27.370-53.678L-29.226-53.678L-29.226-53.975Q-28.952-53.975-28.784-54.022Q-28.616-54.069-28.616-54.237L-28.616-58.397Q-28.616-58.612-28.679-58.707Q-28.741-58.803-28.860-58.824Q-28.980-58.846-29.226-58.846L-29.226-59.143L-28.003-59.229L-28.003-56.526Q-27.878-56.737-27.691-56.887Q-27.503-57.037-27.276-57.121Q-27.050-57.205-26.804-57.205Q-25.636-57.205-25.636-56.127L-25.636-54.237Q-25.636-54.069-25.466-54.022Q-25.296-53.975-25.026-53.975L-25.026-53.678L-26.882-53.678L-26.882-53.975Q-26.609-53.975-26.441-54.022Q-26.273-54.069-26.273-54.237L-26.273-56.112Q-26.273-56.494-26.394-56.723Q-26.515-56.951-26.866-56.951Q-27.179-56.951-27.433-56.789Q-27.687-56.627-27.833-56.358Q-27.980-56.088-27.980-55.791L-27.980-54.237Q-27.980-54.069-27.810-54.022Q-27.640-53.975-27.370-53.975L-27.370-53.678M-24.581-55.432Q-24.581-55.912-24.349-56.328Q-24.116-56.744-23.706-56.994Q-23.296-57.244-22.819-57.244Q-22.089-57.244-21.691-56.803Q-21.292-56.362-21.292-55.631Q-21.292-55.526-21.386-55.502L-23.835-55.502L-23.835-55.432Q-23.835-55.022-23.714-54.666Q-23.593-54.311-23.321-54.094Q-23.050-53.877-22.620-53.877Q-22.257-53.877-21.960-54.106Q-21.663-54.334-21.562-54.686Q-21.554-54.733-21.468-54.748L-21.386-54.748Q-21.292-54.721-21.292-54.639Q-21.292-54.631-21.300-54.600Q-21.362-54.373-21.501-54.190Q-21.640-54.006-21.831-53.873Q-22.023-53.740-22.241-53.670Q-22.460-53.600-22.698-53.600Q-23.069-53.600-23.407-53.737Q-23.745-53.873-24.013-54.125Q-24.280-54.377-24.431-54.717Q-24.581-55.057-24.581-55.432M-23.827-55.740L-21.866-55.740Q-21.866-56.045-21.968-56.336Q-22.069-56.627-22.286-56.809Q-22.503-56.990-22.819-56.990Q-23.120-56.990-23.351-56.803Q-23.581-56.615-23.704-56.324Q-23.827-56.033-23.827-55.740\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-17.727-51.862Q-17.727-51.881-17.712-51.936L-14.786-59.573Q-14.720-59.678-14.614-59.678Q-14.536-59.678-14.483-59.625Q-14.430-59.573-14.430-59.494Q-14.430-59.475-14.446-59.420L-17.376-51.783Q-17.438-51.678-17.544-51.678Q-17.618-51.678-17.673-51.733Q-17.727-51.787-17.727-51.862\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-40.473-44.178L-42.328-44.178L-42.328-44.475Q-42.055-44.475-41.887-44.522Q-41.719-44.569-41.719-44.737L-41.719-46.873Q-41.719-47.088-41.782-47.184Q-41.844-47.280-41.963-47.301Q-42.082-47.323-42.328-47.323L-42.328-47.619L-41.137-47.705L-41.137-46.971Q-41.024-47.186-40.830-47.354Q-40.637-47.522-40.399-47.614Q-40.161-47.705-39.907-47.705Q-38.946-47.705-38.770-46.994Q-38.586-47.323-38.258-47.514Q-37.930-47.705-37.551-47.705Q-36.375-47.705-36.375-46.627L-36.375-44.737Q-36.375-44.569-36.207-44.522Q-36.039-44.475-35.770-44.475L-35.770-44.178L-37.625-44.178L-37.625-44.475Q-37.352-44.475-37.184-44.520Q-37.016-44.565-37.016-44.737L-37.016-46.612Q-37.016-46.998-37.141-47.225Q-37.266-47.451-37.618-47.451Q-37.922-47.451-38.178-47.289Q-38.434-47.127-38.582-46.858Q-38.731-46.588-38.731-46.291L-38.731-44.737Q-38.731-44.569-38.561-44.522Q-38.391-44.475-38.121-44.475L-38.121-44.178L-39.977-44.178L-39.977-44.475Q-39.703-44.475-39.536-44.522Q-39.368-44.569-39.368-44.737L-39.368-46.612Q-39.368-46.998-39.493-47.225Q-39.618-47.451-39.969-47.451Q-40.274-47.451-40.530-47.289Q-40.786-47.127-40.934-46.858Q-41.082-46.588-41.082-46.291L-41.082-44.737Q-41.082-44.569-40.912-44.522Q-40.743-44.475-40.473-44.475L-40.473-44.178M-35.325-45.932Q-35.325-46.412-35.092-46.828Q-34.860-47.244-34.450-47.494Q-34.039-47.744-33.563-47.744Q-32.832-47.744-32.434-47.303Q-32.036-46.862-32.036-46.131Q-32.036-46.026-32.129-46.002L-34.578-46.002L-34.578-45.932Q-34.578-45.522-34.457-45.166Q-34.336-44.811-34.065-44.594Q-33.793-44.377-33.364-44.377Q-33-44.377-32.703-44.606Q-32.407-44.834-32.305-45.186Q-32.297-45.233-32.211-45.248L-32.129-45.248Q-32.036-45.221-32.036-45.139Q-32.036-45.131-32.043-45.100Q-32.106-44.873-32.245-44.690Q-32.383-44.506-32.575-44.373Q-32.766-44.240-32.985-44.170Q-33.203-44.100-33.442-44.100Q-33.813-44.100-34.151-44.237Q-34.489-44.373-34.756-44.625Q-35.024-44.877-35.174-45.217Q-35.325-45.557-35.325-45.932M-34.571-46.240L-32.610-46.240Q-32.610-46.545-32.711-46.836Q-32.813-47.127-33.030-47.309Q-33.246-47.490-33.563-47.490Q-33.864-47.490-34.094-47.303Q-34.325-47.115-34.448-46.824Q-34.571-46.533-34.571-46.240M-29.618-44.178L-31.473-44.178L-31.473-44.475Q-31.200-44.475-31.032-44.522Q-30.864-44.569-30.864-44.737L-30.864-46.873Q-30.864-47.088-30.926-47.184Q-30.989-47.280-31.108-47.301Q-31.227-47.323-31.473-47.323L-31.473-47.619L-30.282-47.705L-30.282-46.971Q-30.168-47.186-29.975-47.354Q-29.782-47.522-29.543-47.614Q-29.305-47.705-29.051-47.705Q-28.090-47.705-27.914-46.994Q-27.731-47.323-27.403-47.514Q-27.075-47.705-26.696-47.705Q-25.520-47.705-25.520-46.627L-25.520-44.737Q-25.520-44.569-25.352-44.522Q-25.184-44.475-24.914-44.475L-24.914-44.178L-26.770-44.178L-26.770-44.475Q-26.496-44.475-26.328-44.520Q-26.161-44.565-26.161-44.737L-26.161-46.612Q-26.161-46.998-26.286-47.225Q-26.411-47.451-26.762-47.451Q-27.067-47.451-27.323-47.289Q-27.578-47.127-27.727-46.858Q-27.875-46.588-27.875-46.291L-27.875-44.737Q-27.875-44.569-27.705-44.522Q-27.536-44.475-27.266-44.475L-27.266-44.178L-29.121-44.178L-29.121-44.475Q-28.848-44.475-28.680-44.522Q-28.512-44.569-28.512-44.737L-28.512-46.612Q-28.512-46.998-28.637-47.225Q-28.762-47.451-29.114-47.451Q-29.418-47.451-29.674-47.289Q-29.930-47.127-30.078-46.858Q-30.227-46.588-30.227-46.291L-30.227-44.737Q-30.227-44.569-30.057-44.522Q-29.887-44.475-29.618-44.475L-29.618-44.178M-24.469-45.873Q-24.469-46.377-24.213-46.809Q-23.957-47.240-23.522-47.492Q-23.086-47.744-22.586-47.744Q-22.200-47.744-21.858-47.600Q-21.516-47.455-21.254-47.194Q-20.993-46.932-20.850-46.596Q-20.707-46.260-20.707-45.873Q-20.707-45.381-20.971-44.971Q-21.235-44.561-21.664-44.330Q-22.094-44.100-22.586-44.100Q-23.078-44.100-23.512-44.332Q-23.946-44.565-24.207-44.973Q-24.469-45.381-24.469-45.873M-22.586-44.377Q-22.129-44.377-21.877-44.600Q-21.625-44.823-21.537-45.174Q-21.450-45.526-21.450-45.971Q-21.450-46.401-21.543-46.739Q-21.637-47.076-21.891-47.283Q-22.145-47.490-22.586-47.490Q-23.235-47.490-23.479-47.074Q-23.723-46.658-23.723-45.971Q-23.723-45.526-23.635-45.174Q-23.547-44.823-23.295-44.600Q-23.043-44.377-22.586-44.377M-18.215-44.178L-20.196-44.178L-20.196-44.475Q-19.926-44.475-19.758-44.520Q-19.590-44.565-19.590-44.737L-19.590-46.873Q-19.590-47.088-19.653-47.184Q-19.715-47.280-19.832-47.301Q-19.950-47.323-20.196-47.323L-20.196-47.619L-19.028-47.705L-19.028-46.920Q-18.950-47.131-18.797-47.317Q-18.645-47.502-18.446-47.604Q-18.246-47.705-18.020-47.705Q-17.774-47.705-17.582-47.561Q-17.391-47.416-17.391-47.186Q-17.391-47.030-17.496-46.920Q-17.602-46.811-17.758-46.811Q-17.914-46.811-18.024-46.920Q-18.133-47.030-18.133-47.186Q-18.133-47.346-18.028-47.451Q-18.352-47.451-18.567-47.223Q-18.782-46.994-18.877-46.655Q-18.973-46.315-18.973-46.010L-18.973-44.737Q-18.973-44.569-18.746-44.522Q-18.520-44.475-18.215-44.475L-18.215-44.178M-16.493-42.881Q-16.379-42.803-16.203-42.803Q-15.914-42.803-15.694-43.016Q-15.473-43.229-15.348-43.530L-15.059-44.178L-16.332-47.065Q-16.414-47.240-16.559-47.285Q-16.703-47.330-16.973-47.330L-16.973-47.627L-15.254-47.627L-15.254-47.330Q-15.676-47.330-15.676-47.147Q-15.676-47.135-15.661-47.065L-14.723-44.940L-13.891-46.850Q-13.852-46.940-13.852-47.018Q-13.852-47.158-13.953-47.244Q-14.055-47.330-14.196-47.330L-14.196-47.627L-12.844-47.627L-12.844-47.330Q-13.098-47.330-13.291-47.205Q-13.485-47.080-13.590-46.850L-15.036-43.530Q-15.149-43.276-15.315-43.053Q-15.481-42.830-15.709-42.688Q-15.938-42.545-16.203-42.545Q-16.500-42.545-16.741-42.737Q-16.981-42.928-16.981-43.217Q-16.981-43.373-16.875-43.475Q-16.770-43.576-16.621-43.576Q-16.516-43.576-16.436-43.530Q-16.356-43.483-16.309-43.405Q-16.262-43.326-16.262-43.217Q-16.262-43.096-16.323-43.008Q-16.383-42.920-16.493-42.881\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-19.679-44.178h51.66\"\u002F>\u003Cpath stroke=\"none\" d=\"m33.981-44.178-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-40.024-42.186Q-40.637-42.643-41.039-43.278Q-41.442-43.912-41.637-44.658Q-41.832-45.405-41.832-46.178Q-41.832-46.951-41.637-47.698Q-41.442-48.444-41.039-49.078Q-40.637-49.713-40.024-50.170Q-40.012-50.174-40.004-50.176Q-39.996-50.178-39.985-50.178L-39.907-50.178Q-39.868-50.178-39.842-50.151Q-39.817-50.123-39.817-50.080Q-39.817-50.030-39.848-50.010Q-40.356-49.557-40.678-48.934Q-41-48.311-41.141-47.615Q-41.282-46.920-41.282-46.178Q-41.282-45.444-41.143-44.744Q-41.004-44.045-40.680-43.420Q-40.356-42.795-39.848-42.346Q-39.817-42.326-39.817-42.276Q-39.817-42.233-39.842-42.205Q-39.868-42.178-39.907-42.178L-39.985-42.178Q-39.993-42.182-40.002-42.184Q-40.012-42.186-40.024-42.186M-35.743-44.178L-38.536-44.178L-38.536-44.475Q-37.473-44.475-37.473-44.737L-37.473-48.905Q-37.903-48.690-38.582-48.690L-38.582-48.987Q-37.563-48.987-37.047-49.498L-36.903-49.498Q-36.828-49.479-36.809-49.401L-36.809-44.737Q-36.809-44.475-35.743-44.475L-35.743-44.178M-34.450-42.178L-34.532-42.178Q-34.567-42.178-34.592-42.207Q-34.618-42.237-34.618-42.276Q-34.618-42.326-34.586-42.346Q-34.200-42.682-33.916-43.131Q-33.633-43.580-33.467-44.080Q-33.301-44.580-33.227-45.098Q-33.153-45.615-33.153-46.178Q-33.153-46.748-33.227-47.264Q-33.301-47.780-33.467-48.276Q-33.633-48.772-33.912-49.219Q-34.192-49.666-34.586-50.010Q-34.618-50.030-34.618-50.080Q-34.618-50.119-34.592-50.149Q-34.567-50.178-34.532-50.178L-34.450-50.178Q-34.438-50.178-34.428-50.176Q-34.418-50.174-34.411-50.170Q-33.797-49.713-33.395-49.078Q-32.993-48.444-32.797-47.698Q-32.602-46.951-32.602-46.178Q-32.602-45.405-32.797-44.658Q-32.993-43.912-33.395-43.278Q-33.797-42.643-34.411-42.186Q-34.422-42.186-34.430-42.184Q-34.438-42.182-34.450-42.178\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-25.970-44.123L-27.994-49.080Q-28.076-49.252-28.269-49.299Q-28.463-49.346-28.771-49.346L-28.771-49.643L-26.580-49.643L-26.580-49.346Q-27.205-49.346-27.205-49.131Q-27.201-49.115-27.199-49.102Q-27.197-49.088-27.193-49.080L-25.533-44.987L-23.947-48.865Q-23.924-48.912-23.924-48.979Q-23.924-49.162-24.093-49.254Q-24.263-49.346-24.474-49.346L-24.474-49.643L-22.763-49.643L-22.763-49.346Q-23.060-49.346-23.291-49.231Q-23.521-49.115-23.627-48.865L-25.564-44.123Q-25.603-44.010-25.732-44.010L-25.802-44.010Q-25.931-44.010-25.970-44.123\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-21.485-44.178L-23.235-44.178L-23.235-44.475Q-22.536-44.475-22.348-44.955L-20.547-49.780Q-20.493-49.889-20.379-49.889L-20.309-49.889Q-20.196-49.889-20.141-49.780L-18.251-44.737Q-18.172-44.569-17.969-44.522Q-17.766-44.475-17.454-44.475L-17.454-44.178L-19.676-44.178L-19.676-44.475Q-19.036-44.475-19.036-44.690Q-19.036-44.709-19.038-44.719Q-19.040-44.729-19.044-44.737L-19.508-45.971L-21.653-45.971L-22.036-44.955Q-22.040-44.940-22.045-44.910Q-22.051-44.881-22.051-44.858Q-22.051-44.717-21.962-44.633Q-21.872-44.549-21.739-44.512Q-21.606-44.475-21.485-44.475L-21.485-44.178M-20.579-48.834L-21.547-46.268L-19.622-46.268\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M85.596-58.404h65.887\"\u002F>\u003Cpath stroke=\"none\" d=\"m153.483-58.404-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(144.535 -19.51)\">\u003Cpath d=\"M-40.197-42.428Q-40.747-42.828-41.118-43.383Q-41.489-43.939-41.670-44.585Q-41.851-45.231-41.851-45.928Q-41.851-46.441-41.751-46.936Q-41.650-47.432-41.445-47.883Q-41.240-48.334-40.927-48.726Q-40.614-49.117-40.197-49.421Q-40.187-49.425-40.180-49.426Q-40.173-49.428-40.163-49.428L-40.095-49.428Q-40.060-49.428-40.038-49.404Q-40.016-49.380-40.016-49.343Q-40.016-49.298-40.043-49.281Q-40.392-48.980-40.645-48.596Q-40.898-48.211-41.050-47.770Q-41.202-47.329-41.274-46.873Q-41.346-46.417-41.346-45.928Q-41.346-44.927-41.036-44.040Q-40.727-43.153-40.043-42.568Q-40.016-42.551-40.016-42.507Q-40.016-42.469-40.038-42.445Q-40.060-42.421-40.095-42.421L-40.163-42.421Q-40.170-42.425-40.178-42.426Q-40.187-42.428-40.197-42.428M-36.195-44.178L-39.079-44.178L-39.079-44.380Q-39.079-44.410-39.052-44.438L-37.805-45.655Q-37.733-45.730-37.690-45.772Q-37.647-45.815-37.569-45.894Q-37.155-46.307-36.924-46.665Q-36.694-47.022-36.694-47.446Q-36.694-47.678-36.772-47.881Q-36.851-48.085-36.993-48.235Q-37.135-48.386-37.329-48.466Q-37.524-48.546-37.757-48.546Q-38.068-48.546-38.326-48.387Q-38.584-48.228-38.714-47.951L-38.693-47.951Q-38.526-47.951-38.418-47.840Q-38.310-47.729-38.310-47.565Q-38.310-47.408-38.420-47.295Q-38.529-47.182-38.693-47.182Q-38.854-47.182-38.967-47.295Q-39.079-47.408-39.079-47.565Q-39.079-47.941-38.871-48.228Q-38.662-48.515-38.328-48.671Q-37.993-48.826-37.637-48.826Q-37.213-48.826-36.834-48.668Q-36.454-48.509-36.220-48.192Q-35.986-47.876-35.986-47.446Q-35.986-47.135-36.126-46.866Q-36.266-46.598-36.472-46.393Q-36.677-46.188-37.039-45.906Q-37.401-45.624-37.511-45.528L-38.365-44.800L-37.723-44.800Q-37.459-44.800-37.171-44.802Q-36.882-44.803-36.663-44.812Q-36.444-44.821-36.427-44.838Q-36.366-44.903-36.328-45.070Q-36.290-45.238-36.253-45.480L-35.986-45.480L-36.195-44.178M-34.903-42.421L-34.971-42.421Q-35.005-42.421-35.027-42.447Q-35.050-42.472-35.050-42.507Q-35.050-42.551-35.019-42.568Q-34.663-42.872-34.414-43.262Q-34.164-43.652-34.012-44.084Q-33.860-44.516-33.790-44.985Q-33.720-45.453-33.720-45.928Q-33.720-46.407-33.790-46.873Q-33.860-47.340-34.014-47.775Q-34.168-48.211-34.419-48.599Q-34.670-48.987-35.019-49.281Q-35.050-49.298-35.050-49.343Q-35.050-49.377-35.027-49.402Q-35.005-49.428-34.971-49.428L-34.903-49.428Q-34.892-49.428-34.884-49.426Q-34.875-49.425-34.865-49.421Q-34.322-49.021-33.949-48.468Q-33.577-47.914-33.395-47.268Q-33.214-46.622-33.214-45.928Q-33.214-45.227-33.395-44.580Q-33.577-43.932-33.951-43.378Q-34.325-42.824-34.865-42.428Q-34.875-42.428-34.884-42.426Q-34.892-42.425-34.903-42.421\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.535 -19.51)\">\u003Cpath d=\"M-27.185-44.178L-29.318-44.178L-29.318-44.458Q-28.597-44.458-28.597-44.667L-28.597-48.468Q-28.597-48.679-29.318-48.679L-29.318-48.960L-26.652-48.960Q-26.242-48.960-25.821-48.806Q-25.401-48.652-25.117-48.348Q-24.834-48.044-24.834-47.630Q-24.834-47.312-25.001-47.066Q-25.169-46.820-25.445-46.654Q-25.722-46.489-26.044-46.405Q-26.365-46.321-26.652-46.321L-27.906-46.321L-27.906-44.667Q-27.906-44.458-27.185-44.458L-27.185-44.178M-27.934-48.468L-27.934-46.571L-26.847-46.571Q-26.238-46.571-25.924-46.808Q-25.609-47.046-25.609-47.630Q-25.609-48.023-25.755-48.257Q-25.900-48.491-26.172-48.585Q-26.443-48.679-26.847-48.679L-27.568-48.679Q-27.756-48.679-27.845-48.645Q-27.934-48.611-27.934-48.468M-20.120-44.178L-22.858-44.178L-22.858-44.458Q-22.509-44.458-22.173-44.494Q-21.836-44.530-21.836-44.667L-21.836-48.468Q-21.836-48.611-21.925-48.645Q-22.014-48.679-22.198-48.679L-22.557-48.679Q-22.858-48.679-23.073-48.632Q-23.289-48.584-23.446-48.427Q-23.583-48.293-23.642-48.015Q-23.702-47.736-23.740-47.323L-24.006-47.323L-23.859-48.960L-19.126-48.960L-18.979-47.323L-19.245-47.323Q-19.283-47.736-19.339-48.013Q-19.396-48.290-19.539-48.427Q-19.700-48.587-19.912-48.633Q-20.124-48.679-20.428-48.679L-20.780-48.679Q-20.964-48.679-21.053-48.645Q-21.142-48.611-21.142-48.468L-21.142-44.667Q-21.142-44.530-20.805-44.494Q-20.469-44.458-20.120-44.458L-20.120-44.178M-13.855-44.178L-18.257-44.178L-18.257-44.458Q-17.536-44.458-17.536-44.667L-17.536-48.468Q-17.536-48.679-18.257-48.679L-18.257-48.960L-13.968-48.960L-13.759-47.323L-14.023-47.323Q-14.081-47.794-14.183-48.059Q-14.286-48.324-14.470-48.457Q-14.655-48.591-14.927-48.635Q-15.198-48.679-15.697-48.679L-16.480-48.679Q-16.668-48.679-16.757-48.645Q-16.846-48.611-16.846-48.468L-16.846-46.803L-16.272-46.803Q-15.882-46.803-15.699-46.854Q-15.516-46.906-15.434-47.078Q-15.352-47.251-15.352-47.623L-15.089-47.623L-15.089-45.702L-15.352-45.702Q-15.352-46.075-15.434-46.248Q-15.516-46.420-15.699-46.471Q-15.882-46.523-16.272-46.523L-16.846-46.523L-16.846-44.667Q-16.846-44.527-16.757-44.492Q-16.668-44.458-16.480-44.458L-15.632-44.458Q-15.103-44.458-14.793-44.527Q-14.484-44.595-14.296-44.762Q-14.108-44.930-14-45.232Q-13.893-45.535-13.807-46.048L-13.541-46.048L-13.855-44.178M-11.363-44.178L-12.953-44.178L-12.953-44.458Q-12.310-44.458-12.153-44.858L-10.509-49.073Q-10.475-49.168-10.362-49.168L-10.280-49.168Q-10.170-49.168-10.129-49.073L-8.410-44.667Q-8.342-44.527-8.152-44.492Q-7.962-44.458-7.689-44.458L-7.689-44.178L-9.689-44.178L-9.689-44.458Q-9.125-44.458-9.125-44.633Q-9.125-44.650-9.126-44.657Q-9.128-44.663-9.131-44.667L-9.552-45.733L-11.510-45.733L-11.852-44.858Q-11.866-44.858-11.866-44.780Q-11.866-44.619-11.703-44.539Q-11.541-44.458-11.363-44.458L-11.363-44.178M-10.529-48.252L-11.398-46.013L-9.654-46.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M87.596-44.178h65.887\"\u002F>\u003Cpath stroke=\"none\" d=\"m85.596-44.178 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(147.486 -5.283)\">\u003Cpath d=\"M-40.197-42.428Q-40.747-42.828-41.118-43.383Q-41.489-43.939-41.670-44.585Q-41.851-45.231-41.851-45.928Q-41.851-46.441-41.751-46.936Q-41.650-47.432-41.445-47.883Q-41.240-48.334-40.927-48.726Q-40.614-49.117-40.197-49.421Q-40.187-49.425-40.180-49.426Q-40.173-49.428-40.163-49.428L-40.095-49.428Q-40.060-49.428-40.038-49.404Q-40.016-49.380-40.016-49.343Q-40.016-49.298-40.043-49.281Q-40.392-48.980-40.645-48.596Q-40.898-48.211-41.050-47.770Q-41.202-47.329-41.274-46.873Q-41.346-46.417-41.346-45.928Q-41.346-44.927-41.036-44.040Q-40.727-43.153-40.043-42.568Q-40.016-42.551-40.016-42.507Q-40.016-42.469-40.038-42.445Q-40.060-42.421-40.095-42.421L-40.163-42.421Q-40.170-42.425-40.178-42.426Q-40.187-42.428-40.197-42.428M-38.724-44.725Q-38.604-44.568-38.413-44.469Q-38.222-44.369-38.006-44.330Q-37.791-44.291-37.569-44.291Q-37.271-44.291-37.077-44.446Q-36.882-44.602-36.791-44.856Q-36.701-45.111-36.701-45.395Q-36.701-45.689-36.793-45.940Q-36.885-46.191-37.083-46.347Q-37.282-46.502-37.576-46.502L-38.092-46.502Q-38.119-46.502-38.145-46.528Q-38.170-46.553-38.170-46.577L-38.170-46.649Q-38.170-46.680-38.145-46.702Q-38.119-46.724-38.092-46.724L-37.651-46.755Q-37.288-46.755-37.068-47.112Q-36.848-47.470-36.848-47.859Q-36.848-48.187-37.042-48.391Q-37.237-48.594-37.569-48.594Q-37.856-48.594-38.109-48.510Q-38.362-48.427-38.526-48.239Q-38.379-48.239-38.278-48.124Q-38.177-48.010-38.177-47.859Q-38.177-47.709-38.283-47.599Q-38.389-47.490-38.546-47.490Q-38.707-47.490-38.816-47.599Q-38.926-47.709-38.926-47.859Q-38.926-48.184-38.717-48.403Q-38.509-48.621-38.193-48.724Q-37.876-48.826-37.569-48.826Q-37.251-48.826-36.923-48.722Q-36.595-48.618-36.367-48.396Q-36.140-48.174-36.140-47.859Q-36.140-47.425-36.427-47.100Q-36.714-46.776-37.148-46.629Q-36.837-46.564-36.557-46.398Q-36.277-46.232-36.099-45.974Q-35.921-45.716-35.921-45.395Q-35.921-44.985-36.166-44.675Q-36.410-44.366-36.791-44.202Q-37.172-44.038-37.569-44.038Q-37.938-44.038-38.295-44.151Q-38.652-44.263-38.897-44.513Q-39.141-44.762-39.141-45.132Q-39.141-45.303-39.025-45.415Q-38.909-45.528-38.738-45.528Q-38.628-45.528-38.538-45.477Q-38.447-45.426-38.392-45.333Q-38.338-45.241-38.338-45.132Q-38.338-44.964-38.451-44.845Q-38.563-44.725-38.724-44.725M-34.903-42.421L-34.971-42.421Q-35.005-42.421-35.027-42.447Q-35.050-42.472-35.050-42.507Q-35.050-42.551-35.019-42.568Q-34.663-42.872-34.414-43.262Q-34.164-43.652-34.012-44.084Q-33.860-44.516-33.790-44.985Q-33.720-45.453-33.720-45.928Q-33.720-46.407-33.790-46.873Q-33.860-47.340-34.014-47.775Q-34.168-48.211-34.419-48.599Q-34.670-48.987-35.019-49.281Q-35.050-49.298-35.050-49.343Q-35.050-49.377-35.027-49.402Q-35.005-49.428-34.971-49.428L-34.903-49.428Q-34.892-49.428-34.884-49.426Q-34.875-49.425-34.865-49.421Q-34.322-49.021-33.949-48.468Q-33.577-47.914-33.395-47.268Q-33.214-46.622-33.214-45.928Q-33.214-45.227-33.395-44.580Q-33.577-43.932-33.951-43.378Q-34.325-42.824-34.865-42.428Q-34.875-42.428-34.884-42.426Q-34.892-42.425-34.903-42.421\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(147.486 -5.283)\">\u003Cpath d=\"M-27.185-44.178L-29.318-44.178L-29.318-44.458Q-28.597-44.458-28.597-44.667L-28.597-48.468Q-28.597-48.679-29.318-48.679L-29.318-48.960L-26.652-48.960Q-26.242-48.960-25.821-48.806Q-25.401-48.652-25.117-48.348Q-24.834-48.044-24.834-47.630Q-24.834-47.312-25.001-47.066Q-25.169-46.820-25.445-46.654Q-25.722-46.489-26.044-46.405Q-26.365-46.321-26.652-46.321L-27.906-46.321L-27.906-44.667Q-27.906-44.458-27.185-44.458L-27.185-44.178M-27.934-48.468L-27.934-46.571L-26.847-46.571Q-26.238-46.571-25.924-46.808Q-25.609-47.046-25.609-47.630Q-25.609-48.023-25.755-48.257Q-25.900-48.491-26.172-48.585Q-26.443-48.679-26.847-48.679L-27.568-48.679Q-27.756-48.679-27.845-48.645Q-27.934-48.611-27.934-48.468M-20.120-44.178L-22.858-44.178L-22.858-44.458Q-22.509-44.458-22.173-44.494Q-21.836-44.530-21.836-44.667L-21.836-48.468Q-21.836-48.611-21.925-48.645Q-22.014-48.679-22.198-48.679L-22.557-48.679Q-22.858-48.679-23.073-48.632Q-23.289-48.584-23.446-48.427Q-23.583-48.293-23.642-48.015Q-23.702-47.736-23.740-47.323L-24.006-47.323L-23.859-48.960L-19.126-48.960L-18.979-47.323L-19.245-47.323Q-19.283-47.736-19.339-48.013Q-19.396-48.290-19.539-48.427Q-19.700-48.587-19.912-48.633Q-20.124-48.679-20.428-48.679L-20.780-48.679Q-20.964-48.679-21.053-48.645Q-21.142-48.611-21.142-48.468L-21.142-44.667Q-21.142-44.530-20.805-44.494Q-20.469-44.458-20.120-44.458L-20.120-44.178M-13.855-44.178L-18.257-44.178L-18.257-44.458Q-17.536-44.458-17.536-44.667L-17.536-48.468Q-17.536-48.679-18.257-48.679L-18.257-48.960L-13.968-48.960L-13.759-47.323L-14.023-47.323Q-14.081-47.794-14.183-48.059Q-14.286-48.324-14.470-48.457Q-14.655-48.591-14.927-48.635Q-15.198-48.679-15.697-48.679L-16.480-48.679Q-16.668-48.679-16.757-48.645Q-16.846-48.611-16.846-48.468L-16.846-46.803L-16.272-46.803Q-15.882-46.803-15.699-46.854Q-15.516-46.906-15.434-47.078Q-15.352-47.251-15.352-47.623L-15.089-47.623L-15.089-45.702L-15.352-45.702Q-15.352-46.075-15.434-46.248Q-15.516-46.420-15.699-46.471Q-15.882-46.523-16.272-46.523L-16.846-46.523L-16.846-44.667Q-16.846-44.527-16.757-44.492Q-16.668-44.458-16.480-44.458L-15.632-44.458Q-15.103-44.458-14.793-44.527Q-14.484-44.595-14.296-44.762Q-14.108-44.930-14-45.232Q-13.893-45.535-13.807-46.048L-13.541-46.048\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M85.596-29.951h65.887\"\u002F>\u003Cpath stroke=\"none\" d=\"m153.483-29.951-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(150.4 8.943)\">\u003Cpath d=\"M-40.197-42.428Q-40.747-42.828-41.118-43.383Q-41.489-43.939-41.670-44.585Q-41.851-45.231-41.851-45.928Q-41.851-46.441-41.751-46.936Q-41.650-47.432-41.445-47.883Q-41.240-48.334-40.927-48.726Q-40.614-49.117-40.197-49.421Q-40.187-49.425-40.180-49.426Q-40.173-49.428-40.163-49.428L-40.095-49.428Q-40.060-49.428-40.038-49.404Q-40.016-49.380-40.016-49.343Q-40.016-49.298-40.043-49.281Q-40.392-48.980-40.645-48.596Q-40.898-48.211-41.050-47.770Q-41.202-47.329-41.274-46.873Q-41.346-46.417-41.346-45.928Q-41.346-44.927-41.036-44.040Q-40.727-43.153-40.043-42.568Q-40.016-42.551-40.016-42.507Q-40.016-42.469-40.038-42.445Q-40.060-42.421-40.095-42.421L-40.163-42.421Q-40.170-42.425-40.178-42.426Q-40.187-42.428-40.197-42.428M-37.203-45.326L-39.247-45.326L-39.247-45.607L-36.916-48.779Q-36.882-48.826-36.817-48.826L-36.680-48.826Q-36.636-48.826-36.608-48.799Q-36.581-48.772-36.581-48.727L-36.581-45.607L-35.819-45.607L-35.819-45.326L-36.581-45.326L-36.581-44.667Q-36.581-44.458-35.826-44.458L-35.826-44.178L-37.958-44.178L-37.958-44.458Q-37.203-44.458-37.203-44.667L-37.203-45.326M-37.155-48.051L-38.946-45.607L-37.155-45.607L-37.155-48.051M-34.903-42.421L-34.971-42.421Q-35.005-42.421-35.027-42.447Q-35.050-42.472-35.050-42.507Q-35.050-42.551-35.019-42.568Q-34.663-42.872-34.414-43.262Q-34.164-43.652-34.012-44.084Q-33.860-44.516-33.790-44.985Q-33.720-45.453-33.720-45.928Q-33.720-46.407-33.790-46.873Q-33.860-47.340-34.014-47.775Q-34.168-48.211-34.419-48.599Q-34.670-48.987-35.019-49.281Q-35.050-49.298-35.050-49.343Q-35.050-49.377-35.027-49.402Q-35.005-49.428-34.971-49.428L-34.903-49.428Q-34.892-49.428-34.884-49.426Q-34.875-49.425-34.865-49.421Q-34.322-49.021-33.949-48.468Q-33.577-47.914-33.395-47.268Q-33.214-46.622-33.214-45.928Q-33.214-45.227-33.395-44.580Q-33.577-43.932-33.951-43.378Q-34.325-42.824-34.865-42.428Q-34.875-42.428-34.884-42.426Q-34.892-42.425-34.903-42.421\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(150.4 8.943)\">\u003Cpath d=\"M-27.185-44.178L-29.318-44.178L-29.318-44.458Q-28.597-44.458-28.597-44.667L-28.597-48.468Q-28.597-48.679-29.318-48.679L-29.318-48.960L-26.652-48.960Q-26.242-48.960-25.821-48.806Q-25.401-48.652-25.117-48.348Q-24.834-48.044-24.834-47.630Q-24.834-47.312-25.001-47.066Q-25.169-46.820-25.445-46.654Q-25.722-46.489-26.044-46.405Q-26.365-46.321-26.652-46.321L-27.906-46.321L-27.906-44.667Q-27.906-44.458-27.185-44.458L-27.185-44.178M-27.934-48.468L-27.934-46.571L-26.847-46.571Q-26.238-46.571-25.924-46.808Q-25.609-47.046-25.609-47.630Q-25.609-48.023-25.755-48.257Q-25.900-48.491-26.172-48.585Q-26.443-48.679-26.847-48.679L-27.568-48.679Q-27.756-48.679-27.845-48.645Q-27.934-48.611-27.934-48.468\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(150.4 8.943)\">\u003Cpath d=\"M-23.077-44.178L-24.667-44.178L-24.667-44.458Q-24.024-44.458-23.867-44.858L-22.223-49.073Q-22.189-49.168-22.076-49.168L-21.994-49.168Q-21.884-49.168-21.843-49.073L-20.124-44.667Q-20.056-44.527-19.866-44.492Q-19.676-44.458-19.403-44.458L-19.403-44.178L-21.402-44.178L-21.402-44.458Q-20.838-44.458-20.838-44.633Q-20.838-44.650-20.840-44.657Q-20.842-44.663-20.845-44.667L-21.266-45.733L-23.224-45.733L-23.566-44.858Q-23.580-44.858-23.580-44.780Q-23.580-44.619-23.417-44.539Q-23.255-44.458-23.077-44.458L-23.077-44.178M-22.243-48.252L-23.111-46.013L-21.368-46.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M190.671-21.215V-1.3H-42.64v-17.917\"\u002F>\u003Cpath stroke=\"none\" d=\"m-42.641-21.215-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(70.247 35.723)\">\u003Cpath d=\"M-40.024-42.186Q-40.637-42.643-41.039-43.278Q-41.442-43.912-41.637-44.658Q-41.832-45.405-41.832-46.178Q-41.832-46.951-41.637-47.698Q-41.442-48.444-41.039-49.078Q-40.637-49.713-40.024-50.170Q-40.012-50.174-40.004-50.176Q-39.996-50.178-39.985-50.178L-39.907-50.178Q-39.868-50.178-39.842-50.151Q-39.817-50.123-39.817-50.080Q-39.817-50.030-39.848-50.010Q-40.356-49.557-40.678-48.934Q-41-48.311-41.141-47.615Q-41.282-46.920-41.282-46.178Q-41.282-45.444-41.143-44.744Q-41.004-44.045-40.680-43.420Q-40.356-42.795-39.848-42.346Q-39.817-42.326-39.817-42.276Q-39.817-42.233-39.842-42.205Q-39.868-42.178-39.907-42.178L-39.985-42.178Q-39.993-42.182-40.002-42.184Q-40.012-42.186-40.024-42.186M-38.496-45.057L-38.559-45.057Q-38.418-44.705-38.094-44.494Q-37.770-44.283-37.383-44.283Q-36.789-44.283-36.539-44.717Q-36.289-45.151-36.289-45.787Q-36.289-46.381-36.459-46.828Q-36.629-47.276-37.129-47.276Q-37.426-47.276-37.631-47.196Q-37.836-47.115-37.938-47.024Q-38.039-46.932-38.155-46.799Q-38.270-46.666-38.321-46.651L-38.391-46.651Q-38.477-46.674-38.496-46.752L-38.496-49.401Q-38.465-49.498-38.391-49.498Q-38.375-49.498-38.368-49.496Q-38.360-49.494-38.352-49.490Q-37.766-49.240-37.168-49.240Q-36.586-49.240-35.969-49.498L-35.946-49.498Q-35.903-49.498-35.875-49.473Q-35.848-49.448-35.848-49.408L-35.848-49.330Q-35.848-49.299-35.871-49.276Q-36.168-48.924-36.590-48.727Q-37.012-48.530-37.473-48.530Q-37.821-48.530-38.200-48.635L-38.200-47.139Q-37.981-47.334-37.705-47.432Q-37.430-47.530-37.129-47.530Q-36.672-47.530-36.303-47.282Q-35.934-47.033-35.727-46.629Q-35.520-46.225-35.520-45.780Q-35.520-45.291-35.776-44.883Q-36.032-44.475-36.463-44.242Q-36.895-44.010-37.383-44.010Q-37.778-44.010-38.133-44.201Q-38.489-44.393-38.700-44.727Q-38.911-45.061-38.911-45.475Q-38.911-45.655-38.793-45.768Q-38.676-45.881-38.496-45.881Q-38.379-45.881-38.287-45.828Q-38.196-45.776-38.143-45.684Q-38.090-45.592-38.090-45.475Q-38.090-45.291-38.203-45.174Q-38.317-45.057-38.496-45.057M-34.450-42.178L-34.532-42.178Q-34.567-42.178-34.592-42.207Q-34.618-42.237-34.618-42.276Q-34.618-42.326-34.586-42.346Q-34.200-42.682-33.916-43.131Q-33.633-43.580-33.467-44.080Q-33.301-44.580-33.227-45.098Q-33.153-45.615-33.153-46.178Q-33.153-46.748-33.227-47.264Q-33.301-47.780-33.467-48.276Q-33.633-48.772-33.912-49.219Q-34.192-49.666-34.586-50.010Q-34.618-50.030-34.618-50.080Q-34.618-50.119-34.592-50.149Q-34.567-50.178-34.532-50.178L-34.450-50.178Q-34.438-50.178-34.428-50.176Q-34.418-50.174-34.411-50.170Q-33.797-49.713-33.395-49.078Q-32.993-48.444-32.797-47.698Q-32.602-46.951-32.602-46.178Q-32.602-45.405-32.797-44.658Q-32.993-43.912-33.395-43.278Q-33.797-42.643-34.411-42.186Q-34.422-42.186-34.430-42.184Q-34.438-42.182-34.450-42.178\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(70.247 35.723)\">\u003Cpath d=\"M-26.892-44.100Q-27.373-44.100-27.781-44.344Q-28.189-44.588-28.427-45.002Q-28.666-45.416-28.666-45.905Q-28.666-46.397-28.408-46.813Q-28.150-47.229-27.718-47.467Q-27.287-47.705-26.795-47.705Q-26.174-47.705-25.724-47.268L-25.724-48.897Q-25.724-49.112-25.787-49.207Q-25.849-49.303-25.967-49.324Q-26.084-49.346-26.330-49.346L-26.330-49.643L-25.107-49.729L-25.107-44.920Q-25.107-44.709-25.045-44.614Q-24.982-44.518-24.865-44.496Q-24.748-44.475-24.498-44.475L-24.498-44.178L-25.748-44.100L-25.748-44.584Q-26.213-44.100-26.892-44.100M-26.826-44.354Q-26.486-44.354-26.193-44.545Q-25.900-44.737-25.748-45.033L-25.748-46.865Q-25.896-47.139-26.158-47.295Q-26.420-47.451-26.732-47.451Q-27.357-47.451-27.640-47.004Q-27.924-46.557-27.924-45.897Q-27.924-45.252-27.672-44.803Q-27.420-44.354-26.826-44.354M-23.892-45.010Q-23.892-45.494-23.490-45.789Q-23.088-46.084-22.537-46.203Q-21.986-46.323-21.494-46.323L-21.494-46.612Q-21.494-46.838-21.609-47.045Q-21.724-47.252-21.922-47.371Q-22.119-47.490-22.349-47.490Q-22.775-47.490-23.060-47.385Q-22.990-47.358-22.943-47.303Q-22.896-47.248-22.871-47.178Q-22.845-47.108-22.845-47.033Q-22.845-46.928-22.896-46.836Q-22.947-46.744-23.039-46.694Q-23.131-46.643-23.236-46.643Q-23.342-46.643-23.433-46.694Q-23.525-46.744-23.576-46.836Q-23.627-46.928-23.627-47.033Q-23.627-47.451-23.238-47.598Q-22.849-47.744-22.349-47.744Q-22.017-47.744-21.664-47.614Q-21.310-47.483-21.082-47.229Q-20.853-46.975-20.853-46.627L-20.853-44.826Q-20.853-44.694-20.781-44.584Q-20.709-44.475-20.580-44.475Q-20.455-44.475-20.386-44.580Q-20.318-44.686-20.318-44.826L-20.318-45.338L-20.037-45.338L-20.037-44.826Q-20.037-44.623-20.154-44.465Q-20.271-44.307-20.453-44.223Q-20.634-44.139-20.838-44.139Q-21.068-44.139-21.220-44.311Q-21.373-44.483-21.404-44.713Q-21.564-44.432-21.873-44.266Q-22.181-44.100-22.533-44.100Q-23.045-44.100-23.468-44.323Q-23.892-44.545-23.892-45.010M-23.205-45.010Q-23.205-44.725-22.978-44.539Q-22.752-44.354-22.459-44.354Q-22.213-44.354-21.988-44.471Q-21.763-44.588-21.629-44.791Q-21.494-44.994-21.494-45.248L-21.494-46.080Q-21.759-46.080-22.045-46.026Q-22.330-45.971-22.601-45.842Q-22.873-45.713-23.039-45.506Q-23.205-45.299-23.205-45.010M-19.119-45.139L-19.119-47.330L-19.822-47.330L-19.822-47.584Q-19.467-47.584-19.224-47.817Q-18.982-48.049-18.871-48.397Q-18.759-48.744-18.759-49.100L-18.478-49.100L-18.478-47.627L-17.302-47.627L-17.302-47.330L-18.478-47.330L-18.478-45.155Q-18.478-44.834-18.359-44.606Q-18.240-44.377-17.959-44.377Q-17.779-44.377-17.662-44.500Q-17.545-44.623-17.492-44.803Q-17.439-44.983-17.439-45.155L-17.439-45.627L-17.158-45.627L-17.158-45.139Q-17.158-44.885-17.263-44.645Q-17.369-44.405-17.566-44.252Q-17.763-44.100-18.021-44.100Q-18.338-44.100-18.590-44.223Q-18.842-44.346-18.980-44.580Q-19.119-44.815-19.119-45.139M-16.342-45.010Q-16.342-45.494-15.939-45.789Q-15.537-46.084-14.986-46.203Q-14.435-46.323-13.943-46.323L-13.943-46.612Q-13.943-46.838-14.058-47.045Q-14.174-47.252-14.371-47.371Q-14.568-47.490-14.799-47.490Q-15.224-47.490-15.509-47.385Q-15.439-47.358-15.392-47.303Q-15.345-47.248-15.320-47.178Q-15.295-47.108-15.295-47.033Q-15.295-46.928-15.345-46.836Q-15.396-46.744-15.488-46.694Q-15.580-46.643-15.685-46.643Q-15.791-46.643-15.883-46.694Q-15.974-46.744-16.025-46.836Q-16.076-46.928-16.076-47.033Q-16.076-47.451-15.687-47.598Q-15.299-47.744-14.799-47.744Q-14.467-47.744-14.113-47.614Q-13.759-47.483-13.531-47.229Q-13.302-46.975-13.302-46.627L-13.302-44.826Q-13.302-44.694-13.230-44.584Q-13.158-44.475-13.029-44.475Q-12.904-44.475-12.836-44.580Q-12.767-44.686-12.767-44.826L-12.767-45.338L-12.486-45.338L-12.486-44.826Q-12.486-44.623-12.603-44.465Q-12.720-44.307-12.902-44.223Q-13.084-44.139-13.287-44.139Q-13.517-44.139-13.670-44.311Q-13.822-44.483-13.853-44.713Q-14.013-44.432-14.322-44.266Q-14.631-44.100-14.982-44.100Q-15.494-44.100-15.918-44.323Q-16.342-44.545-16.342-45.010M-15.654-45.010Q-15.654-44.725-15.427-44.539Q-15.201-44.354-14.908-44.354Q-14.662-44.354-14.437-44.471Q-14.213-44.588-14.078-44.791Q-13.943-44.994-13.943-45.248L-13.943-46.080Q-14.209-46.080-14.494-46.026Q-14.779-45.971-15.051-45.842Q-15.322-45.713-15.488-45.506Q-15.654-45.299-15.654-45.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">A page hit runs entirely in hardware. (1) The CPU sends the virtual address to the MMU. (2) The MMU requests the page-table entry from memory (PTEA is the entry&#39;s address) and (3) receives the PTE. (4) The entry supplies the PPN, and the MMU sends the physical address to memory, which (5) returns the data.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:431.966px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 323.975 119.081\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403 40.611h45.524V-4.913h-45.524Z\"\u002F>\u003Cg transform=\"translate(-9.143 2.733)\">\u003Cpath d=\"M-42.168 15.115Q-42.168 14.521-41.936 13.990Q-41.703 13.458-41.287 13.058Q-40.871 12.658-40.338 12.437Q-39.805 12.216-39.200 12.216Q-38.762 12.216-38.364 12.398Q-37.965 12.579-37.657 12.912L-37.184 12.247Q-37.153 12.216-37.121 12.216L-37.075 12.216Q-37.047 12.216-37.016 12.247Q-36.985 12.279-36.985 12.306L-36.985 14.443Q-36.985 14.466-37.016 14.497Q-37.047 14.529-37.075 14.529L-37.192 14.529Q-37.219 14.529-37.250 14.497Q-37.282 14.466-37.282 14.443Q-37.282 14.177-37.424 13.824Q-37.567 13.470-37.746 13.232Q-38 12.900-38.350 12.706Q-38.700 12.513-39.106 12.513Q-39.610 12.513-40.063 12.732Q-40.516 12.951-40.809 13.345Q-41.305 14.013-41.305 15.115Q-41.305 15.646-41.168 16.113Q-41.032 16.579-40.756 16.945Q-40.481 17.310-40.061 17.515Q-39.641 17.720-39.098 17.720Q-38.610 17.720-38.186 17.476Q-37.762 17.232-37.514 16.812Q-37.266 16.392-37.266 15.896Q-37.266 15.861-37.237 15.835Q-37.207 15.810-37.176 15.810L-37.075 15.810Q-37.032 15.810-37.008 15.839Q-36.985 15.869-36.985 15.912Q-36.985 16.349-37.161 16.738Q-37.336 17.126-37.647 17.410Q-37.957 17.693-38.368 17.855Q-38.778 18.017-39.200 18.017Q-39.789 18.017-40.330 17.796Q-40.871 17.576-41.287 17.171Q-41.703 16.767-41.936 16.238Q-42.168 15.708-42.168 15.115M-33.770 17.849L-36.153 17.849L-36.153 17.552Q-35.828 17.552-35.586 17.505Q-35.344 17.458-35.344 17.290L-35.344 12.947Q-35.344 12.775-35.586 12.728Q-35.828 12.681-36.153 12.681L-36.153 12.384L-33.207 12.384Q-32.864 12.384-32.508 12.484Q-32.153 12.583-31.858 12.775Q-31.563 12.966-31.381 13.251Q-31.200 13.537-31.200 13.896Q-31.200 14.369-31.510 14.704Q-31.821 15.040-32.286 15.212Q-32.750 15.384-33.207 15.384L-34.575 15.384L-34.575 17.290Q-34.575 17.458-34.332 17.505Q-34.090 17.552-33.770 17.552L-33.770 17.849M-34.602 12.947L-34.602 15.115L-33.426 15.115Q-32.739 15.115-32.401 14.839Q-32.063 14.564-32.063 13.896Q-32.063 13.232-32.401 12.956Q-32.739 12.681-33.426 12.681L-34.200 12.681Q-34.418 12.681-34.510 12.724Q-34.602 12.767-34.602 12.947M-29.582 16.040L-29.582 12.947Q-29.582 12.775-29.827 12.728Q-30.071 12.681-30.391 12.681L-30.391 12.384L-28.008 12.384L-28.008 12.681Q-28.328 12.681-28.573 12.730Q-28.817 12.779-28.817 12.947L-28.817 16.017Q-28.817 16.740-28.473 17.230Q-28.129 17.720-27.430 17.720Q-26.965 17.720-26.594 17.490Q-26.223 17.259-26.014 16.867Q-25.805 16.474-25.805 16.017L-25.805 13.162Q-25.805 12.681-26.614 12.681L-26.614 12.384L-24.703 12.384L-24.703 12.681Q-25.512 12.681-25.512 13.162L-25.512 16.040Q-25.512 16.560-25.766 17.017Q-26.020 17.474-26.461 17.745Q-26.903 18.017-27.430 18.017Q-27.840 18.017-28.221 17.874Q-28.602 17.732-28.914 17.462Q-29.227 17.193-29.405 16.826Q-29.582 16.458-29.582 16.040\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M34.181 40.611h51.215V-4.913H34.181Z\"\u002F>\u003Cg transform=\"translate(91.463 2.733)\">\u003Cpath d=\"M-40.344 17.849L-42.266 17.849L-42.266 17.552Q-41.457 17.552-41.457 17.072L-41.457 12.947Q-41.457 12.775-41.700 12.728Q-41.942 12.681-42.266 12.681L-42.266 12.384L-40.770 12.384Q-40.661 12.384-40.602 12.497L-38.754 17.040L-36.914 12.497Q-36.852 12.384-36.746 12.384L-35.243 12.384L-35.243 12.681Q-35.563 12.681-35.805 12.728Q-36.047 12.775-36.047 12.947L-36.047 17.290Q-36.047 17.458-35.805 17.505Q-35.563 17.552-35.243 17.552L-35.243 17.849L-37.543 17.849L-37.543 17.552Q-36.739 17.552-36.739 17.290L-36.739 12.697L-38.786 17.736Q-38.821 17.849-38.953 17.849Q-39.094 17.849-39.129 17.736L-41.153 12.759L-41.153 17.072Q-41.153 17.552-40.344 17.552L-40.344 17.849M-32.567 17.849L-34.489 17.849L-34.489 17.552Q-33.680 17.552-33.680 17.072L-33.680 12.947Q-33.680 12.775-33.922 12.728Q-34.164 12.681-34.489 12.681L-34.489 12.384L-32.993 12.384Q-32.883 12.384-32.825 12.497L-30.977 17.040L-29.137 12.497Q-29.075 12.384-28.969 12.384L-27.465 12.384L-27.465 12.681Q-27.786 12.681-28.028 12.728Q-28.270 12.775-28.270 12.947L-28.270 17.290Q-28.270 17.458-28.028 17.505Q-27.786 17.552-27.465 17.552L-27.465 17.849L-29.766 17.849L-29.766 17.552Q-28.961 17.552-28.961 17.290L-28.961 12.697L-31.008 17.736Q-31.043 17.849-31.176 17.849Q-31.317 17.849-31.352 17.736L-33.375 12.759L-33.375 17.072Q-33.375 17.552-32.567 17.552L-32.567 17.849M-25.942 16.040L-25.942 12.947Q-25.942 12.775-26.186 12.728Q-26.430 12.681-26.750 12.681L-26.750 12.384L-24.368 12.384L-24.368 12.681Q-24.688 12.681-24.932 12.730Q-25.176 12.779-25.176 12.947L-25.176 16.017Q-25.176 16.740-24.832 17.230Q-24.489 17.720-23.789 17.720Q-23.325 17.720-22.953 17.490Q-22.582 17.259-22.373 16.867Q-22.164 16.474-22.164 16.017L-22.164 13.162Q-22.164 12.681-22.973 12.681L-22.973 12.384L-21.063 12.384L-21.063 12.681Q-21.871 12.681-21.871 13.162L-21.871 16.040Q-21.871 16.560-22.125 17.017Q-22.379 17.474-22.821 17.745Q-23.262 18.017-23.789 18.017Q-24.200 18.017-24.580 17.874Q-24.961 17.732-25.274 17.462Q-25.586 17.193-25.764 16.826Q-25.942 16.458-25.942 16.040\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M153.683 40.611h73.977V-4.913h-73.977Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-41.058 6.622Q-41.058 6.126-40.808 5.701Q-40.558 5.275-40.138 5.029Q-39.718 4.783-39.218 4.783Q-38.679 4.783-38.288 4.908Q-37.898 5.033-37.898 5.447Q-37.898 5.552-37.948 5.644Q-37.999 5.736-38.091 5.787Q-38.183 5.837-38.292 5.837Q-38.398 5.837-38.489 5.787Q-38.581 5.736-38.632 5.644Q-38.683 5.552-38.683 5.447Q-38.683 5.224-38.515 5.119Q-38.737 5.060-39.210 5.060Q-39.507 5.060-39.722 5.199Q-39.937 5.337-40.068 5.568Q-40.198 5.798-40.257 6.068Q-40.316 6.337-40.316 6.622Q-40.316 7.017-40.183 7.367Q-40.050 7.716-39.778 7.933Q-39.507 8.150-39.109 8.150Q-38.734 8.150-38.458 7.933Q-38.183 7.716-38.081 7.357Q-38.066 7.294-38.003 7.294L-37.898 7.294Q-37.862 7.294-37.837 7.322Q-37.812 7.349-37.812 7.388L-37.812 7.412Q-37.944 7.892-38.329 8.160Q-38.714 8.427-39.218 8.427Q-39.581 8.427-39.915 8.290Q-40.249 8.154-40.509 7.904Q-40.769 7.654-40.913 7.318Q-41.058 6.982-41.058 6.622M-37.226 7.517Q-37.226 7.033-36.823 6.738Q-36.421 6.443-35.870 6.324Q-35.319 6.204-34.827 6.204L-34.827 5.915Q-34.827 5.689-34.943 5.482Q-35.058 5.275-35.255 5.156Q-35.452 5.037-35.683 5.037Q-36.109 5.037-36.394 5.142Q-36.323 5.169-36.276 5.224Q-36.230 5.279-36.204 5.349Q-36.179 5.419-36.179 5.494Q-36.179 5.599-36.230 5.691Q-36.280 5.783-36.372 5.833Q-36.464 5.884-36.569 5.884Q-36.675 5.884-36.767 5.833Q-36.859 5.783-36.909 5.691Q-36.960 5.599-36.960 5.494Q-36.960 5.076-36.571 4.929Q-36.183 4.783-35.683 4.783Q-35.351 4.783-34.997 4.913Q-34.644 5.044-34.415 5.298Q-34.187 5.552-34.187 5.900L-34.187 7.701Q-34.187 7.833-34.114 7.943Q-34.042 8.052-33.913 8.052Q-33.788 8.052-33.720 7.947Q-33.651 7.841-33.651 7.701L-33.651 7.189L-33.370 7.189L-33.370 7.701Q-33.370 7.904-33.487 8.062Q-33.605 8.220-33.786 8.304Q-33.968 8.388-34.171 8.388Q-34.401 8.388-34.554 8.216Q-34.706 8.044-34.737 7.814Q-34.898 8.095-35.206 8.261Q-35.515 8.427-35.866 8.427Q-36.378 8.427-36.802 8.204Q-37.226 7.982-37.226 7.517M-36.538 7.517Q-36.538 7.802-36.312 7.988Q-36.085 8.173-35.792 8.173Q-35.546 8.173-35.321 8.056Q-35.097 7.939-34.962 7.736Q-34.827 7.533-34.827 7.279L-34.827 6.447Q-35.093 6.447-35.378 6.501Q-35.663 6.556-35.935 6.685Q-36.206 6.814-36.372 7.021Q-36.538 7.228-36.538 7.517M-33.034 6.622Q-33.034 6.126-32.784 5.701Q-32.534 5.275-32.114 5.029Q-31.694 4.783-31.194 4.783Q-30.655 4.783-30.265 4.908Q-29.874 5.033-29.874 5.447Q-29.874 5.552-29.925 5.644Q-29.976 5.736-30.068 5.787Q-30.159 5.837-30.269 5.837Q-30.374 5.837-30.466 5.787Q-30.558 5.736-30.609 5.644Q-30.659 5.552-30.659 5.447Q-30.659 5.224-30.491 5.119Q-30.714 5.060-31.187 5.060Q-31.484 5.060-31.698 5.199Q-31.913 5.337-32.044 5.568Q-32.175 5.798-32.234 6.068Q-32.292 6.337-32.292 6.622Q-32.292 7.017-32.159 7.367Q-32.026 7.716-31.755 7.933Q-31.484 8.150-31.085 8.150Q-30.710 8.150-30.435 7.933Q-30.159 7.716-30.058 7.357Q-30.042 7.294-29.980 7.294L-29.874 7.294Q-29.839 7.294-29.814 7.322Q-29.788 7.349-29.788 7.388L-29.788 7.412Q-29.921 7.892-30.306 8.160Q-30.691 8.427-31.194 8.427Q-31.558 8.427-31.892 8.290Q-32.226 8.154-32.485 7.904Q-32.745 7.654-32.890 7.318Q-33.034 6.982-33.034 6.622M-27.370 8.349L-29.226 8.349L-29.226 8.052Q-28.952 8.052-28.784 8.005Q-28.616 7.958-28.616 7.790L-28.616 3.630Q-28.616 3.415-28.679 3.320Q-28.741 3.224-28.860 3.203Q-28.980 3.181-29.226 3.181L-29.226 2.884L-28.003 2.798L-28.003 5.501Q-27.878 5.290-27.691 5.140Q-27.503 4.990-27.276 4.906Q-27.050 4.822-26.804 4.822Q-25.636 4.822-25.636 5.900L-25.636 7.790Q-25.636 7.958-25.466 8.005Q-25.296 8.052-25.026 8.052L-25.026 8.349L-26.882 8.349L-26.882 8.052Q-26.609 8.052-26.441 8.005Q-26.273 7.958-26.273 7.790L-26.273 5.915Q-26.273 5.533-26.394 5.304Q-26.515 5.076-26.866 5.076Q-27.179 5.076-27.433 5.238Q-27.687 5.400-27.833 5.669Q-27.980 5.939-27.980 6.236L-27.980 7.790Q-27.980 7.958-27.810 8.005Q-27.640 8.052-27.370 8.052L-27.370 8.349M-24.581 6.595Q-24.581 6.115-24.349 5.699Q-24.116 5.283-23.706 5.033Q-23.296 4.783-22.819 4.783Q-22.089 4.783-21.691 5.224Q-21.292 5.665-21.292 6.396Q-21.292 6.501-21.386 6.525L-23.835 6.525L-23.835 6.595Q-23.835 7.005-23.714 7.361Q-23.593 7.716-23.321 7.933Q-23.050 8.150-22.620 8.150Q-22.257 8.150-21.960 7.921Q-21.663 7.693-21.562 7.341Q-21.554 7.294-21.468 7.279L-21.386 7.279Q-21.292 7.306-21.292 7.388Q-21.292 7.396-21.300 7.427Q-21.362 7.654-21.501 7.837Q-21.640 8.021-21.831 8.154Q-22.023 8.287-22.241 8.357Q-22.460 8.427-22.698 8.427Q-23.069 8.427-23.407 8.290Q-23.745 8.154-24.013 7.902Q-24.280 7.650-24.431 7.310Q-24.581 6.970-24.581 6.595M-23.827 6.287L-21.866 6.287Q-21.866 5.982-21.968 5.691Q-22.069 5.400-22.286 5.218Q-22.503 5.037-22.819 5.037Q-23.120 5.037-23.351 5.224Q-23.581 5.412-23.704 5.703Q-23.827 5.994-23.827 6.287\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-17.727 10.165Q-17.727 10.146-17.712 10.091L-14.786 2.454Q-14.720 2.349-14.614 2.349Q-14.536 2.349-14.483 2.402Q-14.430 2.454-14.430 2.533Q-14.430 2.552-14.446 2.607L-17.376 10.244Q-17.438 10.349-17.544 10.349Q-17.618 10.349-17.673 10.294Q-17.727 10.240-17.727 10.165\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(218.316 6.972)\">\u003Cpath d=\"M-40.473 17.849L-42.328 17.849L-42.328 17.552Q-42.055 17.552-41.887 17.505Q-41.719 17.458-41.719 17.290L-41.719 15.154Q-41.719 14.939-41.782 14.843Q-41.844 14.747-41.963 14.726Q-42.082 14.704-42.328 14.704L-42.328 14.408L-41.137 14.322L-41.137 15.056Q-41.024 14.841-40.830 14.673Q-40.637 14.505-40.399 14.413Q-40.161 14.322-39.907 14.322Q-38.946 14.322-38.770 15.033Q-38.586 14.704-38.258 14.513Q-37.930 14.322-37.551 14.322Q-36.375 14.322-36.375 15.400L-36.375 17.290Q-36.375 17.458-36.207 17.505Q-36.039 17.552-35.770 17.552L-35.770 17.849L-37.625 17.849L-37.625 17.552Q-37.352 17.552-37.184 17.507Q-37.016 17.462-37.016 17.290L-37.016 15.415Q-37.016 15.029-37.141 14.802Q-37.266 14.576-37.618 14.576Q-37.922 14.576-38.178 14.738Q-38.434 14.900-38.582 15.169Q-38.731 15.439-38.731 15.736L-38.731 17.290Q-38.731 17.458-38.561 17.505Q-38.391 17.552-38.121 17.552L-38.121 17.849L-39.977 17.849L-39.977 17.552Q-39.703 17.552-39.536 17.505Q-39.368 17.458-39.368 17.290L-39.368 15.415Q-39.368 15.029-39.493 14.802Q-39.618 14.576-39.969 14.576Q-40.274 14.576-40.530 14.738Q-40.786 14.900-40.934 15.169Q-41.082 15.439-41.082 15.736L-41.082 17.290Q-41.082 17.458-40.912 17.505Q-40.743 17.552-40.473 17.552L-40.473 17.849M-35.325 16.095Q-35.325 15.615-35.092 15.199Q-34.860 14.783-34.450 14.533Q-34.039 14.283-33.563 14.283Q-32.832 14.283-32.434 14.724Q-32.036 15.165-32.036 15.896Q-32.036 16.001-32.129 16.025L-34.578 16.025L-34.578 16.095Q-34.578 16.505-34.457 16.861Q-34.336 17.216-34.065 17.433Q-33.793 17.650-33.364 17.650Q-33 17.650-32.703 17.421Q-32.407 17.193-32.305 16.841Q-32.297 16.794-32.211 16.779L-32.129 16.779Q-32.036 16.806-32.036 16.888Q-32.036 16.896-32.043 16.927Q-32.106 17.154-32.245 17.337Q-32.383 17.521-32.575 17.654Q-32.766 17.787-32.985 17.857Q-33.203 17.927-33.442 17.927Q-33.813 17.927-34.151 17.790Q-34.489 17.654-34.756 17.402Q-35.024 17.150-35.174 16.810Q-35.325 16.470-35.325 16.095M-34.571 15.787L-32.610 15.787Q-32.610 15.482-32.711 15.191Q-32.813 14.900-33.030 14.718Q-33.246 14.537-33.563 14.537Q-33.864 14.537-34.094 14.724Q-34.325 14.912-34.448 15.203Q-34.571 15.494-34.571 15.787M-29.618 17.849L-31.473 17.849L-31.473 17.552Q-31.200 17.552-31.032 17.505Q-30.864 17.458-30.864 17.290L-30.864 15.154Q-30.864 14.939-30.926 14.843Q-30.989 14.747-31.108 14.726Q-31.227 14.704-31.473 14.704L-31.473 14.408L-30.282 14.322L-30.282 15.056Q-30.168 14.841-29.975 14.673Q-29.782 14.505-29.543 14.413Q-29.305 14.322-29.051 14.322Q-28.090 14.322-27.914 15.033Q-27.731 14.704-27.403 14.513Q-27.075 14.322-26.696 14.322Q-25.520 14.322-25.520 15.400L-25.520 17.290Q-25.520 17.458-25.352 17.505Q-25.184 17.552-24.914 17.552L-24.914 17.849L-26.770 17.849L-26.770 17.552Q-26.496 17.552-26.328 17.507Q-26.161 17.462-26.161 17.290L-26.161 15.415Q-26.161 15.029-26.286 14.802Q-26.411 14.576-26.762 14.576Q-27.067 14.576-27.323 14.738Q-27.578 14.900-27.727 15.169Q-27.875 15.439-27.875 15.736L-27.875 17.290Q-27.875 17.458-27.705 17.505Q-27.536 17.552-27.266 17.552L-27.266 17.849L-29.121 17.849L-29.121 17.552Q-28.848 17.552-28.680 17.505Q-28.512 17.458-28.512 17.290L-28.512 15.415Q-28.512 15.029-28.637 14.802Q-28.762 14.576-29.114 14.576Q-29.418 14.576-29.674 14.738Q-29.930 14.900-30.078 15.169Q-30.227 15.439-30.227 15.736L-30.227 17.290Q-30.227 17.458-30.057 17.505Q-29.887 17.552-29.618 17.552L-29.618 17.849M-24.469 16.154Q-24.469 15.650-24.213 15.218Q-23.957 14.787-23.522 14.535Q-23.086 14.283-22.586 14.283Q-22.200 14.283-21.858 14.427Q-21.516 14.572-21.254 14.833Q-20.993 15.095-20.850 15.431Q-20.707 15.767-20.707 16.154Q-20.707 16.646-20.971 17.056Q-21.235 17.466-21.664 17.697Q-22.094 17.927-22.586 17.927Q-23.078 17.927-23.512 17.695Q-23.946 17.462-24.207 17.054Q-24.469 16.646-24.469 16.154M-22.586 17.650Q-22.129 17.650-21.877 17.427Q-21.625 17.204-21.537 16.853Q-21.450 16.501-21.450 16.056Q-21.450 15.626-21.543 15.288Q-21.637 14.951-21.891 14.744Q-22.145 14.537-22.586 14.537Q-23.235 14.537-23.479 14.953Q-23.723 15.369-23.723 16.056Q-23.723 16.501-23.635 16.853Q-23.547 17.204-23.295 17.427Q-23.043 17.650-22.586 17.650M-18.215 17.849L-20.196 17.849L-20.196 17.552Q-19.926 17.552-19.758 17.507Q-19.590 17.462-19.590 17.290L-19.590 15.154Q-19.590 14.939-19.653 14.843Q-19.715 14.747-19.832 14.726Q-19.950 14.704-20.196 14.704L-20.196 14.408L-19.028 14.322L-19.028 15.107Q-18.950 14.896-18.797 14.710Q-18.645 14.525-18.446 14.423Q-18.246 14.322-18.020 14.322Q-17.774 14.322-17.582 14.466Q-17.391 14.611-17.391 14.841Q-17.391 14.997-17.496 15.107Q-17.602 15.216-17.758 15.216Q-17.914 15.216-18.024 15.107Q-18.133 14.997-18.133 14.841Q-18.133 14.681-18.028 14.576Q-18.352 14.576-18.567 14.804Q-18.782 15.033-18.877 15.372Q-18.973 15.712-18.973 16.017L-18.973 17.290Q-18.973 17.458-18.746 17.505Q-18.520 17.552-18.215 17.552L-18.215 17.849M-16.493 19.146Q-16.379 19.224-16.203 19.224Q-15.914 19.224-15.694 19.011Q-15.473 18.798-15.348 18.497L-15.059 17.849L-16.332 14.962Q-16.414 14.787-16.559 14.742Q-16.703 14.697-16.973 14.697L-16.973 14.400L-15.254 14.400L-15.254 14.697Q-15.676 14.697-15.676 14.880Q-15.676 14.892-15.661 14.962L-14.723 17.087L-13.891 15.177Q-13.852 15.087-13.852 15.009Q-13.852 14.869-13.953 14.783Q-14.055 14.697-14.196 14.697L-14.196 14.400L-12.844 14.400L-12.844 14.697Q-13.098 14.697-13.291 14.822Q-13.485 14.947-13.590 15.177L-15.036 18.497Q-15.149 18.751-15.315 18.974Q-15.481 19.197-15.709 19.339Q-15.938 19.482-16.203 19.482Q-16.500 19.482-16.741 19.290Q-16.981 19.099-16.981 18.810Q-16.981 18.654-16.875 18.552Q-16.770 18.451-16.621 18.451Q-16.516 18.451-16.436 18.497Q-16.356 18.544-16.309 18.622Q-16.262 18.701-16.262 18.810Q-16.262 18.931-16.323 19.019Q-16.383 19.107-16.493 19.146\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M17.11-40.48h85.358v-31.297H17.11Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(76.812 -66.45)\">\u003Cpath d=\"M-39.336 8.517Q-39.918 8.517-40.436 8.290Q-40.953 8.064-41.342 7.665Q-41.731 7.267-41.950 6.742Q-42.168 6.216-42.168 5.646Q-42.168 4.876-41.793 4.199Q-41.418 3.521-40.768 3.119Q-40.118 2.716-39.336 2.716Q-38.563 2.716-37.912 3.119Q-37.262 3.521-36.887 4.199Q-36.512 4.876-36.512 5.646Q-36.512 6.216-36.733 6.747Q-36.953 7.279-37.338 7.671Q-37.723 8.064-38.241 8.290Q-38.758 8.517-39.336 8.517M-40.778 7.447Q-40.614 7.677-40.383 7.853Q-40.153 8.029-39.885 8.124Q-39.618 8.220-39.336 8.220Q-38.918 8.220-38.537 8.009Q-38.157 7.798-37.907 7.447Q-37.375 6.728-37.375 5.509Q-37.375 4.880-37.590 4.302Q-37.805 3.724-38.246 3.361Q-38.688 2.997-39.336 2.997Q-39.989 2.997-40.432 3.361Q-40.875 3.724-41.090 4.302Q-41.305 4.880-41.305 5.509Q-41.305 6.728-40.778 7.447M-35.559 8.427L-35.559 6.622Q-35.559 6.595-35.528 6.564Q-35.496 6.533-35.473 6.533L-35.368 6.533Q-35.336 6.533-35.307 6.562Q-35.278 6.591-35.278 6.622Q-35.278 7.404-34.762 7.812Q-34.246 8.220-33.438 8.220Q-33.141 8.220-32.885 8.070Q-32.629 7.919-32.479 7.663Q-32.328 7.408-32.328 7.111Q-32.328 6.712-32.575 6.408Q-32.821 6.103-33.192 6.021L-34.313 5.763Q-34.653 5.689-34.940 5.468Q-35.227 5.247-35.393 4.929Q-35.559 4.611-35.559 4.259Q-35.559 3.829-35.328 3.474Q-35.098 3.119-34.717 2.917Q-34.336 2.716-33.911 2.716Q-33.661 2.716-33.414 2.775Q-33.168 2.833-32.950 2.956Q-32.731 3.079-32.567 3.259L-32.239 2.763Q-32.207 2.716-32.168 2.716L-32.121 2.716Q-32.094 2.716-32.063 2.747Q-32.032 2.779-32.032 2.806L-32.032 4.615Q-32.032 4.638-32.063 4.669Q-32.094 4.701-32.121 4.701L-32.223 4.701Q-32.254 4.701-32.284 4.671Q-32.313 4.642-32.313 4.615Q-32.313 4.482-32.356 4.296Q-32.399 4.111-32.463 3.956Q-32.528 3.802-32.627 3.644Q-32.727 3.486-32.817 3.396Q-33.246 2.990-33.911 2.990Q-34.188 2.990-34.448 3.122Q-34.707 3.255-34.866 3.490Q-35.024 3.724-35.024 4.005Q-35.024 4.361-34.784 4.632Q-34.543 4.904-34.176 4.990L-33.063 5.244Q-32.786 5.310-32.553 5.464Q-32.321 5.619-32.151 5.837Q-31.981 6.056-31.887 6.314Q-31.793 6.572-31.793 6.861Q-31.793 7.189-31.918 7.492Q-32.043 7.794-32.278 8.031Q-32.512 8.267-32.805 8.392Q-33.098 8.517-33.438 8.517Q-34.453 8.517-35.024 7.974L-35.352 8.470Q-35.383 8.517-35.422 8.517L-35.473 8.517Q-35.496 8.517-35.528 8.486Q-35.559 8.454-35.559 8.427\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(76.812 -66.45)\">\u003Cpath d=\"M-26.353 9.900L-28.208 9.900L-28.208 9.607Q-27.939 9.607-27.771 9.562Q-27.603 9.517-27.603 9.341L-27.603 5.517Q-27.603 5.310-27.759 5.257Q-27.915 5.204-28.208 5.204L-28.208 4.908L-26.986 4.822L-26.986 5.287Q-26.755 5.064-26.441 4.943Q-26.126 4.822-25.787 4.822Q-25.314 4.822-24.910 5.068Q-24.505 5.314-24.273 5.730Q-24.040 6.146-24.040 6.622Q-24.040 6.997-24.189 7.326Q-24.337 7.654-24.607 7.906Q-24.876 8.158-25.220 8.292Q-25.564 8.427-25.923 8.427Q-26.212 8.427-26.484 8.306Q-26.755 8.185-26.962 7.974L-26.962 9.341Q-26.962 9.517-26.794 9.562Q-26.626 9.607-26.353 9.607L-26.353 9.900M-26.962 5.685L-26.962 7.525Q-26.810 7.814-26.548 7.994Q-26.287 8.173-25.978 8.173Q-25.693 8.173-25.470 8.035Q-25.247 7.896-25.095 7.665Q-24.943 7.435-24.865 7.163Q-24.787 6.892-24.787 6.622Q-24.787 6.290-24.912 5.933Q-25.037 5.576-25.285 5.339Q-25.533 5.103-25.880 5.103Q-26.204 5.103-26.499 5.259Q-26.794 5.415-26.962 5.685M-23.419 7.517Q-23.419 7.033-23.017 6.738Q-22.615 6.443-22.064 6.324Q-21.513 6.204-21.021 6.204L-21.021 5.915Q-21.021 5.689-21.136 5.482Q-21.251 5.275-21.449 5.156Q-21.646 5.037-21.876 5.037Q-22.302 5.037-22.587 5.142Q-22.517 5.169-22.470 5.224Q-22.423 5.279-22.398 5.349Q-22.372 5.419-22.372 5.494Q-22.372 5.599-22.423 5.691Q-22.474 5.783-22.566 5.833Q-22.658 5.884-22.763 5.884Q-22.869 5.884-22.960 5.833Q-23.052 5.783-23.103 5.691Q-23.154 5.599-23.154 5.494Q-23.154 5.076-22.765 4.929Q-22.376 4.783-21.876 4.783Q-21.544 4.783-21.191 4.913Q-20.837 5.044-20.609 5.298Q-20.380 5.552-20.380 5.900L-20.380 7.701Q-20.380 7.833-20.308 7.943Q-20.236 8.052-20.107 8.052Q-19.982 8.052-19.913 7.947Q-19.845 7.841-19.845 7.701L-19.845 7.189L-19.564 7.189L-19.564 7.701Q-19.564 7.904-19.681 8.062Q-19.798 8.220-19.980 8.304Q-20.162 8.388-20.365 8.388Q-20.595 8.388-20.747 8.216Q-20.900 8.044-20.931 7.814Q-21.091 8.095-21.400 8.261Q-21.708 8.427-22.060 8.427Q-22.572 8.427-22.995 8.204Q-23.419 7.982-23.419 7.517M-22.732 7.517Q-22.732 7.802-22.505 7.988Q-22.279 8.173-21.986 8.173Q-21.740 8.173-21.515 8.056Q-21.290 7.939-21.156 7.736Q-21.021 7.533-21.021 7.279L-21.021 6.447Q-21.287 6.447-21.572 6.501Q-21.857 6.556-22.128 6.685Q-22.400 6.814-22.566 7.021Q-22.732 7.228-22.732 7.517M-19.271 8.958Q-19.271 8.677-19.060 8.466Q-18.849 8.255-18.564 8.165Q-18.720 8.040-18.798 7.851Q-18.876 7.662-18.876 7.462Q-18.876 7.107-18.646 6.814Q-19.013 6.474-19.013 6.005Q-19.013 5.654-18.810 5.384Q-18.607 5.115-18.287 4.968Q-17.966 4.822-17.622 4.822Q-17.103 4.822-16.732 5.103Q-16.369 4.732-15.822 4.732Q-15.642 4.732-15.515 4.859Q-15.388 4.986-15.388 5.165Q-15.388 5.271-15.466 5.349Q-15.544 5.427-15.654 5.427Q-15.763 5.427-15.839 5.351Q-15.915 5.275-15.915 5.165Q-15.915 5.064-15.876 5.013Q-15.869 5.005-15.865 4.999Q-15.861 4.994-15.861 4.990Q-16.236 4.990-16.556 5.244Q-16.236 5.583-16.236 6.005Q-16.236 6.275-16.353 6.492Q-16.470 6.708-16.675 6.867Q-16.880 7.025-17.122 7.107Q-17.365 7.189-17.622 7.189Q-17.841 7.189-18.054 7.130Q-18.267 7.072-18.462 6.951Q-18.556 7.091-18.556 7.271Q-18.556 7.478-18.419 7.630Q-18.283 7.783-18.076 7.783L-17.380 7.783Q-16.892 7.783-16.480 7.867Q-16.068 7.951-15.788 8.208Q-15.509 8.466-15.509 8.958Q-15.509 9.322-15.829 9.554Q-16.150 9.787-16.591 9.888Q-17.033 9.990-17.388 9.990Q-17.744 9.990-18.187 9.888Q-18.630 9.787-18.951 9.554Q-19.271 9.322-19.271 8.958M-18.767 8.958Q-18.767 9.154-18.622 9.302Q-18.478 9.451-18.265 9.540Q-18.052 9.630-17.812 9.677Q-17.572 9.724-17.388 9.724Q-17.146 9.724-16.816 9.646Q-16.486 9.568-16.249 9.394Q-16.013 9.220-16.013 8.958Q-16.013 8.552-16.423 8.443Q-16.833 8.333-17.396 8.333L-18.076 8.333Q-18.345 8.333-18.556 8.511Q-18.767 8.689-18.767 8.958M-17.622 6.923Q-16.900 6.923-16.900 6.005Q-16.900 5.083-17.622 5.083Q-18.349 5.083-18.349 6.005Q-18.349 6.923-17.622 6.923M-15.025 6.595Q-15.025 6.115-14.792 5.699Q-14.560 5.283-14.150 5.033Q-13.740 4.783-13.263 4.783Q-12.533 4.783-12.134 5.224Q-11.736 5.665-11.736 6.396Q-11.736 6.501-11.829 6.525L-14.279 6.525L-14.279 6.595Q-14.279 7.005-14.158 7.361Q-14.037 7.716-13.765 7.933Q-13.494 8.150-13.064 8.150Q-12.701 8.150-12.404 7.921Q-12.107 7.693-12.005 7.341Q-11.997 7.294-11.912 7.279L-11.829 7.279Q-11.736 7.306-11.736 7.388Q-11.736 7.396-11.744 7.427Q-11.806 7.654-11.945 7.837Q-12.083 8.021-12.275 8.154Q-12.466 8.287-12.685 8.357Q-12.904 8.427-13.142 8.427Q-13.513 8.427-13.851 8.290Q-14.189 8.154-14.456 7.902Q-14.724 7.650-14.874 7.310Q-15.025 6.970-15.025 6.595M-14.271 6.287L-12.310 6.287Q-12.310 5.982-12.412 5.691Q-12.513 5.400-12.730 5.218Q-12.947 5.037-13.263 5.037Q-13.564 5.037-13.794 5.224Q-14.025 5.412-14.148 5.703Q-14.271 5.994-14.271 6.287M-9.134 6.900L-11.388 6.900L-11.388 6.349L-9.134 6.349L-9.134 6.900M-6.349 8.349L-8.333 8.349L-8.333 8.052Q-8.060 8.052-7.892 8.005Q-7.724 7.958-7.724 7.790L-7.724 5.197L-8.365 5.197L-8.365 4.900L-7.724 4.900L-7.724 3.966Q-7.724 3.701-7.607 3.464Q-7.490 3.228-7.296 3.064Q-7.103 2.900-6.855 2.808Q-6.607 2.716-6.341 2.716Q-6.056 2.716-5.831 2.874Q-5.607 3.033-5.607 3.310Q-5.607 3.466-5.712 3.576Q-5.818 3.685-5.982 3.685Q-6.138 3.685-6.247 3.576Q-6.357 3.466-6.357 3.310Q-6.357 3.103-6.197 2.997Q-6.294 2.974-6.388 2.974Q-6.619 2.974-6.790 3.130Q-6.962 3.287-7.048 3.523Q-7.134 3.759-7.134 3.982L-7.134 4.900L-6.165 4.900L-6.165 5.197L-7.111 5.197L-7.111 7.790Q-7.111 7.958-6.884 8.005Q-6.658 8.052-6.349 8.052L-6.349 8.349M-5.724 7.517Q-5.724 7.033-5.322 6.738Q-4.919 6.443-4.369 6.324Q-3.818 6.204-3.326 6.204L-3.326 5.915Q-3.326 5.689-3.441 5.482Q-3.556 5.275-3.753 5.156Q-3.951 5.037-4.181 5.037Q-4.607 5.037-4.892 5.142Q-4.822 5.169-4.775 5.224Q-4.728 5.279-4.703 5.349Q-4.677 5.419-4.677 5.494Q-4.677 5.599-4.728 5.691Q-4.779 5.783-4.870 5.833Q-4.962 5.884-5.068 5.884Q-5.173 5.884-5.265 5.833Q-5.357 5.783-5.408 5.691Q-5.458 5.599-5.458 5.494Q-5.458 5.076-5.070 4.929Q-4.681 4.783-4.181 4.783Q-3.849 4.783-3.495 4.913Q-3.142 5.044-2.913 5.298Q-2.685 5.552-2.685 5.900L-2.685 7.701Q-2.685 7.833-2.613 7.943Q-2.540 8.052-2.412 8.052Q-2.287 8.052-2.218 7.947Q-2.150 7.841-2.150 7.701L-2.150 7.189L-1.869 7.189L-1.869 7.701Q-1.869 7.904-1.986 8.062Q-2.103 8.220-2.285 8.304Q-2.466 8.388-2.669 8.388Q-2.900 8.388-3.052 8.216Q-3.204 8.044-3.236 7.814Q-3.396 8.095-3.704 8.261Q-4.013 8.427-4.365 8.427Q-4.876 8.427-5.300 8.204Q-5.724 7.982-5.724 7.517M-5.037 7.517Q-5.037 7.802-4.810 7.988Q-4.583 8.173-4.290 8.173Q-4.044 8.173-3.820 8.056Q-3.595 7.939-3.460 7.736Q-3.326 7.533-3.326 7.279L-3.326 6.447Q-3.591 6.447-3.876 6.501Q-4.162 6.556-4.433 6.685Q-4.704 6.814-4.870 7.021Q-5.037 7.228-5.037 7.517M-0.892 7.396L-0.892 5.654Q-0.892 5.439-0.954 5.343Q-1.017 5.247-1.136 5.226Q-1.255 5.204-1.501 5.204L-1.501 4.908L-0.255 4.822L-0.255 7.372L-0.255 7.396Q-0.255 7.708-0.201 7.870Q-0.146 8.033 0.005 8.103Q0.155 8.173 0.475 8.173Q0.905 8.173 1.178 7.835Q1.452 7.497 1.452 7.052L1.452 5.654Q1.452 5.439 1.389 5.343Q1.327 5.247 1.208 5.226Q1.088 5.204 0.842 5.204L0.842 4.908L2.088 4.822L2.088 7.607Q2.088 7.818 2.151 7.913Q2.213 8.009 2.333 8.031Q2.452 8.052 2.698 8.052L2.698 8.349L1.475 8.427L1.475 7.806Q1.307 8.095 1.026 8.261Q0.745 8.427 0.424 8.427Q-0.892 8.427-0.892 7.396M5.057 8.349L3.225 8.349L3.225 8.052Q3.499 8.052 3.667 8.005Q3.835 7.958 3.835 7.790L3.835 3.630Q3.835 3.415 3.772 3.320Q3.710 3.224 3.590 3.203Q3.471 3.181 3.225 3.181L3.225 2.884L4.448 2.798L4.448 7.790Q4.448 7.958 4.616 8.005Q4.784 8.052 5.057 8.052L5.057 8.349M6.128 7.388L6.128 5.197L5.424 5.197L5.424 4.943Q5.780 4.943 6.022 4.710Q6.264 4.478 6.376 4.130Q6.487 3.783 6.487 3.427L6.768 3.427L6.768 4.900L7.944 4.900L7.944 5.197L6.768 5.197L6.768 7.372Q6.768 7.693 6.887 7.921Q7.006 8.150 7.288 8.150Q7.467 8.150 7.585 8.027Q7.702 7.904 7.755 7.724Q7.807 7.544 7.807 7.372L7.807 6.900L8.088 6.900L8.088 7.388Q8.088 7.642 7.983 7.882Q7.878 8.122 7.680 8.275Q7.483 8.427 7.225 8.427Q6.909 8.427 6.657 8.304Q6.405 8.181 6.266 7.947Q6.128 7.712 6.128 7.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(76.812 -66.45)\">\u003Cpath d=\"M-28.789 17.849L-30.645 17.849L-30.645 17.552Q-30.371 17.552-30.203 17.505Q-30.035 17.458-30.035 17.290L-30.035 13.130Q-30.035 12.915-30.098 12.820Q-30.160 12.724-30.279 12.703Q-30.398 12.681-30.645 12.681L-30.645 12.384L-29.422 12.298L-29.422 15.001Q-29.297 14.790-29.109 14.640Q-28.922 14.490-28.695 14.406Q-28.469 14.322-28.223 14.322Q-27.055 14.322-27.055 15.400L-27.055 17.290Q-27.055 17.458-26.885 17.505Q-26.715 17.552-26.445 17.552L-26.445 17.849L-28.301 17.849L-28.301 17.552Q-28.027 17.552-27.859 17.505Q-27.691 17.458-27.691 17.290L-27.691 15.415Q-27.691 15.033-27.812 14.804Q-27.934 14.576-28.285 14.576Q-28.598 14.576-28.852 14.738Q-29.105 14.900-29.252 15.169Q-29.398 15.439-29.398 15.736L-29.398 17.290Q-29.398 17.458-29.228 17.505Q-29.059 17.552-28.789 17.552L-28.789 17.849M-25.902 17.017Q-25.902 16.533-25.500 16.238Q-25.098 15.943-24.547 15.824Q-23.996 15.704-23.504 15.704L-23.504 15.415Q-23.504 15.189-23.619 14.982Q-23.734 14.775-23.932 14.656Q-24.129 14.537-24.359 14.537Q-24.785 14.537-25.070 14.642Q-25 14.669-24.953 14.724Q-24.906 14.779-24.881 14.849Q-24.855 14.919-24.855 14.994Q-24.855 15.099-24.906 15.191Q-24.957 15.283-25.049 15.333Q-25.141 15.384-25.246 15.384Q-25.352 15.384-25.443 15.333Q-25.535 15.283-25.586 15.191Q-25.637 15.099-25.637 14.994Q-25.637 14.576-25.248 14.429Q-24.859 14.283-24.359 14.283Q-24.027 14.283-23.674 14.413Q-23.320 14.544-23.092 14.798Q-22.863 15.052-22.863 15.400L-22.863 17.201Q-22.863 17.333-22.791 17.443Q-22.719 17.552-22.590 17.552Q-22.465 17.552-22.396 17.447Q-22.328 17.341-22.328 17.201L-22.328 16.689L-22.047 16.689L-22.047 17.201Q-22.047 17.404-22.164 17.562Q-22.281 17.720-22.463 17.804Q-22.645 17.888-22.848 17.888Q-23.078 17.888-23.230 17.716Q-23.383 17.544-23.414 17.314Q-23.574 17.595-23.883 17.761Q-24.191 17.927-24.543 17.927Q-25.055 17.927-25.478 17.704Q-25.902 17.482-25.902 17.017M-25.215 17.017Q-25.215 17.302-24.988 17.488Q-24.762 17.673-24.469 17.673Q-24.223 17.673-23.998 17.556Q-23.773 17.439-23.639 17.236Q-23.504 17.033-23.504 16.779L-23.504 15.947Q-23.770 15.947-24.055 16.001Q-24.340 16.056-24.611 16.185Q-24.883 16.314-25.049 16.521Q-25.215 16.728-25.215 17.017M-19.824 17.849L-21.680 17.849L-21.680 17.552Q-21.406 17.552-21.238 17.505Q-21.070 17.458-21.070 17.290L-21.070 15.154Q-21.070 14.939-21.133 14.843Q-21.195 14.747-21.314 14.726Q-21.434 14.704-21.680 14.704L-21.680 14.408L-20.488 14.322L-20.488 15.056Q-20.375 14.841-20.182 14.673Q-19.988 14.505-19.750 14.413Q-19.512 14.322-19.258 14.322Q-18.090 14.322-18.090 15.400L-18.090 17.290Q-18.090 17.458-17.920 17.505Q-17.750 17.552-17.480 17.552L-17.480 17.849L-19.336 17.849L-19.336 17.552Q-19.062 17.552-18.895 17.505Q-18.727 17.458-18.727 17.290L-18.727 15.415Q-18.727 15.033-18.848 14.804Q-18.969 14.576-19.320 14.576Q-19.633 14.576-19.887 14.738Q-20.141 14.900-20.287 15.169Q-20.434 15.439-20.434 15.736L-20.434 17.290Q-20.434 17.458-20.264 17.505Q-20.094 17.552-19.824 17.552L-19.824 17.849M-15.219 17.927Q-15.699 17.927-16.107 17.683Q-16.516 17.439-16.754 17.025Q-16.992 16.611-16.992 16.122Q-16.992 15.630-16.734 15.214Q-16.477 14.798-16.045 14.560Q-15.613 14.322-15.121 14.322Q-14.500 14.322-14.051 14.759L-14.051 13.130Q-14.051 12.915-14.113 12.820Q-14.176 12.724-14.293 12.703Q-14.410 12.681-14.656 12.681L-14.656 12.384L-13.434 12.298L-13.434 17.107Q-13.434 17.318-13.371 17.413Q-13.309 17.509-13.191 17.531Q-13.074 17.552-12.824 17.552L-12.824 17.849L-14.074 17.927L-14.074 17.443Q-14.539 17.927-15.219 17.927M-15.152 17.673Q-14.812 17.673-14.520 17.482Q-14.227 17.290-14.074 16.994L-14.074 15.162Q-14.223 14.888-14.484 14.732Q-14.746 14.576-15.059 14.576Q-15.684 14.576-15.967 15.023Q-16.250 15.470-16.250 16.130Q-16.250 16.775-15.998 17.224Q-15.746 17.673-15.152 17.673M-10.402 17.849L-12.234 17.849L-12.234 17.552Q-11.961 17.552-11.793 17.505Q-11.625 17.458-11.625 17.290L-11.625 13.130Q-11.625 12.915-11.687 12.820Q-11.750 12.724-11.869 12.703Q-11.988 12.681-12.234 12.681L-12.234 12.384L-11.012 12.298L-11.012 17.290Q-11.012 17.458-10.844 17.505Q-10.676 17.552-10.402 17.552L-10.402 17.849M-9.957 16.095Q-9.957 15.615-9.725 15.199Q-9.492 14.783-9.082 14.533Q-8.672 14.283-8.195 14.283Q-7.465 14.283-7.066 14.724Q-6.668 15.165-6.668 15.896Q-6.668 16.001-6.762 16.025L-9.211 16.025L-9.211 16.095Q-9.211 16.505-9.090 16.861Q-8.969 17.216-8.697 17.433Q-8.426 17.650-7.996 17.650Q-7.633 17.650-7.336 17.421Q-7.039 17.193-6.937 16.841Q-6.930 16.794-6.844 16.779L-6.762 16.779Q-6.668 16.806-6.668 16.888Q-6.668 16.896-6.676 16.927Q-6.738 17.154-6.877 17.337Q-7.016 17.521-7.207 17.654Q-7.398 17.787-7.617 17.857Q-7.836 17.927-8.074 17.927Q-8.445 17.927-8.783 17.790Q-9.121 17.654-9.389 17.402Q-9.656 17.150-9.807 16.810Q-9.957 16.470-9.957 16.095M-9.203 15.787L-7.242 15.787Q-7.242 15.482-7.344 15.191Q-7.445 14.900-7.662 14.718Q-7.879 14.537-8.195 14.537Q-8.496 14.537-8.727 14.724Q-8.957 14.912-9.080 15.203Q-9.203 15.494-9.203 15.787M-4.172 17.849L-6.152 17.849L-6.152 17.552Q-5.883 17.552-5.715 17.507Q-5.547 17.462-5.547 17.290L-5.547 15.154Q-5.547 14.939-5.609 14.843Q-5.672 14.747-5.789 14.726Q-5.906 14.704-6.152 14.704L-6.152 14.408L-4.984 14.322L-4.984 15.107Q-4.906 14.896-4.754 14.710Q-4.602 14.525-4.402 14.423Q-4.203 14.322-3.977 14.322Q-3.730 14.322-3.539 14.466Q-3.348 14.611-3.348 14.841Q-3.348 14.997-3.453 15.107Q-3.559 15.216-3.715 15.216Q-3.871 15.216-3.980 15.107Q-4.090 14.997-4.090 14.841Q-4.090 14.681-3.984 14.576Q-4.309 14.576-4.523 14.804Q-4.738 15.033-4.834 15.372Q-4.930 15.712-4.930 16.017L-4.930 17.290Q-4.930 17.458-4.703 17.505Q-4.477 17.552-4.172 17.552\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M165.064-40.48h51.215v-31.297h-51.215Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(220.893 -67.45)\">\u003Cpath d=\"M-35.628 8.427Q-36.109 8.427-36.517 8.183Q-36.925 7.939-37.163 7.525Q-37.402 7.111-37.402 6.622Q-37.402 6.130-37.144 5.714Q-36.886 5.298-36.454 5.060Q-36.023 4.822-35.531 4.822Q-34.910 4.822-34.460 5.259L-34.460 3.630Q-34.460 3.415-34.523 3.320Q-34.585 3.224-34.703 3.203Q-34.820 3.181-35.066 3.181L-35.066 2.884L-33.843 2.798L-33.843 7.607Q-33.843 7.818-33.781 7.913Q-33.718 8.009-33.601 8.031Q-33.484 8.052-33.234 8.052L-33.234 8.349L-34.484 8.427L-34.484 7.943Q-34.949 8.427-35.628 8.427M-35.562 8.173Q-35.222 8.173-34.929 7.982Q-34.636 7.790-34.484 7.494L-34.484 5.662Q-34.632 5.388-34.894 5.232Q-35.156 5.076-35.468 5.076Q-36.093 5.076-36.376 5.523Q-36.660 5.970-36.660 6.630Q-36.660 7.275-36.408 7.724Q-36.156 8.173-35.562 8.173M-30.867 8.349L-32.644 8.349L-32.644 8.052Q-32.370 8.052-32.203 8.005Q-32.035 7.958-32.035 7.790L-32.035 5.654Q-32.035 5.439-32.091 5.343Q-32.148 5.247-32.261 5.226Q-32.374 5.204-32.620 5.204L-32.620 4.908L-31.421 4.822L-31.421 7.790Q-31.421 7.958-31.275 8.005Q-31.128 8.052-30.867 8.052L-30.867 8.349M-32.308 3.427Q-32.308 3.236-32.173 3.105Q-32.038 2.974-31.843 2.974Q-31.722 2.974-31.619 3.037Q-31.515 3.099-31.453 3.203Q-31.390 3.306-31.390 3.427Q-31.390 3.622-31.521 3.757Q-31.652 3.892-31.843 3.892Q-32.042 3.892-32.175 3.759Q-32.308 3.626-32.308 3.427M-30.324 8.341L-30.324 7.119Q-30.324 7.091-30.292 7.060Q-30.261 7.029-30.238 7.029L-30.132 7.029Q-30.062 7.029-30.046 7.091Q-29.984 7.412-29.845 7.652Q-29.706 7.892-29.474 8.033Q-29.242 8.173-28.933 8.173Q-28.695 8.173-28.486 8.113Q-28.277 8.052-28.140 7.904Q-28.003 7.755-28.003 7.509Q-28.003 7.255-28.214 7.089Q-28.425 6.923-28.695 6.869L-29.316 6.755Q-29.722 6.677-30.023 6.421Q-30.324 6.165-30.324 5.790Q-30.324 5.423-30.122 5.201Q-29.921 4.978-29.597 4.880Q-29.273 4.783-28.933 4.783Q-28.468 4.783-28.171 4.990L-27.949 4.806Q-27.925 4.783-27.894 4.783L-27.843 4.783Q-27.812 4.783-27.785 4.810Q-27.757 4.837-27.757 4.869L-27.757 5.853Q-27.757 5.884-27.783 5.913Q-27.808 5.943-27.843 5.943L-27.949 5.943Q-27.984 5.943-28.011 5.915Q-28.038 5.888-28.038 5.853Q-28.038 5.454-28.290 5.234Q-28.542 5.013-28.941 5.013Q-29.296 5.013-29.579 5.136Q-29.863 5.259-29.863 5.564Q-29.863 5.783-29.662 5.915Q-29.460 6.048-29.214 6.091L-28.589 6.204Q-28.160 6.294-27.851 6.591Q-27.542 6.888-27.542 7.302Q-27.542 7.872-27.941 8.150Q-28.339 8.427-28.933 8.427Q-29.484 8.427-29.835 8.091L-30.132 8.404Q-30.156 8.427-30.191 8.427L-30.238 8.427Q-30.261 8.427-30.292 8.396Q-30.324 8.365-30.324 8.341M-25.191 8.349L-26.988 8.349L-26.988 8.052Q-26.718 8.052-26.550 8.007Q-26.382 7.962-26.382 7.790L-26.382 3.630Q-26.382 3.415-26.445 3.320Q-26.507 3.224-26.624 3.203Q-26.742 3.181-26.988 3.181L-26.988 2.884L-25.765 2.798L-25.765 6.564L-24.667 5.677Q-24.460 5.497-24.460 5.349Q-24.460 5.283-24.513 5.240Q-24.566 5.197-24.636 5.197L-24.636 4.900L-23.101 4.900L-23.101 5.197Q-23.632 5.197-24.230 5.677L-24.839 6.173L-23.765 7.572Q-23.628 7.747-23.521 7.855Q-23.413 7.962-23.279 8.007Q-23.144 8.052-22.917 8.052L-22.917 8.349L-24.542 8.349L-24.542 8.052Q-24.300 8.052-24.300 7.900Q-24.300 7.822-24.343 7.751Q-24.386 7.681-24.468 7.572L-25.269 6.525L-25.796 6.951L-25.796 7.790Q-25.796 7.958-25.628 8.005Q-25.460 8.052-25.191 8.052\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(220.893 -67.45)\">\u003Cpath d=\"M-40.024 19.841Q-40.637 19.384-41.039 18.749Q-41.442 18.115-41.637 17.369Q-41.832 16.622-41.832 15.849Q-41.832 15.076-41.637 14.329Q-41.442 13.583-41.039 12.949Q-40.637 12.314-40.024 11.857Q-40.012 11.853-40.004 11.851Q-39.996 11.849-39.985 11.849L-39.907 11.849Q-39.868 11.849-39.842 11.876Q-39.817 11.904-39.817 11.947Q-39.817 11.997-39.848 12.017Q-40.356 12.470-40.678 13.093Q-41 13.716-41.141 14.412Q-41.282 15.107-41.282 15.849Q-41.282 16.583-41.143 17.283Q-41.004 17.982-40.680 18.607Q-40.356 19.232-39.848 19.681Q-39.817 19.701-39.817 19.751Q-39.817 19.794-39.842 19.822Q-39.868 19.849-39.907 19.849L-39.985 19.849Q-39.993 19.845-40.002 19.843Q-40.012 19.841-40.024 19.841M-39.055 17.841L-39.055 16.619Q-39.055 16.591-39.024 16.560Q-38.993 16.529-38.969 16.529L-38.864 16.529Q-38.793 16.529-38.778 16.591Q-38.715 16.912-38.577 17.152Q-38.438 17.392-38.205 17.533Q-37.973 17.673-37.664 17.673Q-37.426 17.673-37.217 17.613Q-37.008 17.552-36.871 17.404Q-36.735 17.255-36.735 17.009Q-36.735 16.755-36.946 16.589Q-37.157 16.423-37.426 16.369L-38.047 16.255Q-38.453 16.177-38.754 15.921Q-39.055 15.665-39.055 15.290Q-39.055 14.923-38.854 14.701Q-38.653 14.478-38.328 14.380Q-38.004 14.283-37.664 14.283Q-37.200 14.283-36.903 14.490L-36.680 14.306Q-36.657 14.283-36.625 14.283L-36.575 14.283Q-36.543 14.283-36.516 14.310Q-36.489 14.337-36.489 14.369L-36.489 15.353Q-36.489 15.384-36.514 15.413Q-36.539 15.443-36.575 15.443L-36.680 15.443Q-36.715 15.443-36.743 15.415Q-36.770 15.388-36.770 15.353Q-36.770 14.954-37.022 14.734Q-37.274 14.513-37.672 14.513Q-38.028 14.513-38.311 14.636Q-38.594 14.759-38.594 15.064Q-38.594 15.283-38.393 15.415Q-38.192 15.548-37.946 15.591L-37.321 15.704Q-36.891 15.794-36.582 16.091Q-36.274 16.388-36.274 16.802Q-36.274 17.372-36.672 17.650Q-37.071 17.927-37.664 17.927Q-38.215 17.927-38.567 17.591L-38.864 17.904Q-38.887 17.927-38.922 17.927L-38.969 17.927Q-38.993 17.927-39.024 17.896Q-39.055 17.865-39.055 17.841M-34.161 17.818L-35.231 14.962Q-35.297 14.783-35.428 14.740Q-35.559 14.697-35.817 14.697L-35.817 14.400L-34.137 14.400L-34.137 14.697Q-34.586 14.697-34.586 14.896Q-34.582 14.912-34.580 14.929Q-34.578 14.947-34.578 14.962L-33.786 17.056L-33.075 15.146Q-33.110 15.052-33.110 15.007Q-33.110 14.962-33.145 14.962Q-33.211 14.783-33.342 14.740Q-33.473 14.697-33.727 14.697L-33.727 14.400L-32.137 14.400L-32.137 14.697Q-32.586 14.697-32.586 14.896Q-32.582 14.915-32.580 14.933Q-32.578 14.951-32.578 14.962L-31.746 17.177L-30.993 15.177Q-30.969 15.119-30.969 15.048Q-30.969 14.888-31.106 14.792Q-31.243 14.697-31.411 14.697L-31.411 14.400L-30.024 14.400L-30.024 14.697Q-30.258 14.697-30.436 14.824Q-30.614 14.951-30.696 15.177L-31.680 17.818Q-31.735 17.927-31.848 17.927L-31.907 17.927Q-32.020 17.927-32.063 17.818L-32.922 15.544L-33.778 17.818Q-33.817 17.927-33.938 17.927L-33.993 17.927Q-34.106 17.927-34.161 17.818\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(220.893 -67.45)\">\u003Cpath d=\"M-29.744 17.017Q-29.744 16.533-29.342 16.238Q-28.939 15.943-28.389 15.824Q-27.838 15.704-27.346 15.704L-27.346 15.415Q-27.346 15.189-27.461 14.982Q-27.576 14.775-27.773 14.656Q-27.971 14.537-28.201 14.537Q-28.627 14.537-28.912 14.642Q-28.842 14.669-28.795 14.724Q-28.748 14.779-28.723 14.849Q-28.697 14.919-28.697 14.994Q-28.697 15.099-28.748 15.191Q-28.799 15.283-28.891 15.333Q-28.982 15.384-29.088 15.384Q-29.193 15.384-29.285 15.333Q-29.377 15.283-29.428 15.191Q-29.478 15.099-29.478 14.994Q-29.478 14.576-29.090 14.429Q-28.701 14.283-28.201 14.283Q-27.869 14.283-27.516 14.413Q-27.162 14.544-26.934 14.798Q-26.705 15.052-26.705 15.400L-26.705 17.201Q-26.705 17.333-26.633 17.443Q-26.560 17.552-26.432 17.552Q-26.307 17.552-26.238 17.447Q-26.170 17.341-26.170 17.201L-26.170 16.689L-25.889 16.689L-25.889 17.201Q-25.889 17.404-26.006 17.562Q-26.123 17.720-26.305 17.804Q-26.486 17.888-26.689 17.888Q-26.920 17.888-27.072 17.716Q-27.225 17.544-27.256 17.314Q-27.416 17.595-27.725 17.761Q-28.033 17.927-28.385 17.927Q-28.896 17.927-29.320 17.704Q-29.744 17.482-29.744 17.017M-29.057 17.017Q-29.057 17.302-28.830 17.488Q-28.603 17.673-28.310 17.673Q-28.064 17.673-27.840 17.556Q-27.615 17.439-27.480 17.236Q-27.346 17.033-27.346 16.779L-27.346 15.947Q-27.611 15.947-27.896 16.001Q-28.182 16.056-28.453 16.185Q-28.725 16.314-28.891 16.521Q-29.057 16.728-29.057 17.017M-23.713 19.400L-25.568 19.400L-25.568 19.107Q-25.299 19.107-25.131 19.062Q-24.963 19.017-24.963 18.841L-24.963 15.017Q-24.963 14.810-25.119 14.757Q-25.275 14.704-25.568 14.704L-25.568 14.408L-24.346 14.322L-24.346 14.787Q-24.115 14.564-23.801 14.443Q-23.486 14.322-23.146 14.322Q-22.674 14.322-22.269 14.568Q-21.865 14.814-21.633 15.230Q-21.400 15.646-21.400 16.122Q-21.400 16.497-21.549 16.826Q-21.697 17.154-21.967 17.406Q-22.236 17.658-22.580 17.792Q-22.924 17.927-23.283 17.927Q-23.572 17.927-23.844 17.806Q-24.115 17.685-24.322 17.474L-24.322 18.841Q-24.322 19.017-24.154 19.062Q-23.986 19.107-23.713 19.107L-23.713 19.400M-24.322 15.185L-24.322 17.025Q-24.170 17.314-23.908 17.494Q-23.646 17.673-23.338 17.673Q-23.053 17.673-22.830 17.535Q-22.607 17.396-22.455 17.165Q-22.303 16.935-22.225 16.663Q-22.146 16.392-22.146 16.122Q-22.146 15.790-22.271 15.433Q-22.396 15.076-22.644 14.839Q-22.892 14.603-23.240 14.603Q-23.564 14.603-23.859 14.759Q-24.154 14.915-24.322 15.185M-20.475 19.849L-20.557 19.849Q-20.592 19.849-20.617 19.820Q-20.642 19.790-20.642 19.751Q-20.642 19.701-20.611 19.681Q-20.225 19.345-19.941 18.896Q-19.658 18.447-19.492 17.947Q-19.326 17.447-19.252 16.929Q-19.178 16.412-19.178 15.849Q-19.178 15.279-19.252 14.763Q-19.326 14.247-19.492 13.751Q-19.658 13.255-19.937 12.808Q-20.217 12.361-20.611 12.017Q-20.642 11.997-20.642 11.947Q-20.642 11.908-20.617 11.878Q-20.592 11.849-20.557 11.849L-20.475 11.849Q-20.463 11.849-20.453 11.851Q-20.443 11.853-20.435 11.857Q-19.822 12.314-19.420 12.949Q-19.017 13.583-18.822 14.329Q-18.627 15.076-18.627 15.849Q-18.627 16.622-18.822 17.369Q-19.017 18.115-19.420 18.749Q-19.822 19.384-20.435 19.841Q-20.447 19.841-20.455 19.843Q-20.463 19.845-20.475 19.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-19.679 17.85h51.66\"\u002F>\u003Cpath stroke=\"none\" d=\"m33.981 17.85-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-40.024 19.841Q-40.637 19.384-41.039 18.749Q-41.442 18.115-41.637 17.369Q-41.832 16.622-41.832 15.849Q-41.832 15.076-41.637 14.329Q-41.442 13.583-41.039 12.949Q-40.637 12.314-40.024 11.857Q-40.012 11.853-40.004 11.851Q-39.996 11.849-39.985 11.849L-39.907 11.849Q-39.868 11.849-39.842 11.876Q-39.817 11.904-39.817 11.947Q-39.817 11.997-39.848 12.017Q-40.356 12.470-40.678 13.093Q-41 13.716-41.141 14.412Q-41.282 15.107-41.282 15.849Q-41.282 16.583-41.143 17.283Q-41.004 17.982-40.680 18.607Q-40.356 19.232-39.848 19.681Q-39.817 19.701-39.817 19.751Q-39.817 19.794-39.842 19.822Q-39.868 19.849-39.907 19.849L-39.985 19.849Q-39.993 19.845-40.002 19.843Q-40.012 19.841-40.024 19.841M-35.743 17.849L-38.536 17.849L-38.536 17.552Q-37.473 17.552-37.473 17.290L-37.473 13.122Q-37.903 13.337-38.582 13.337L-38.582 13.040Q-37.563 13.040-37.047 12.529L-36.903 12.529Q-36.828 12.548-36.809 12.626L-36.809 17.290Q-36.809 17.552-35.743 17.552L-35.743 17.849M-34.450 19.849L-34.532 19.849Q-34.567 19.849-34.592 19.820Q-34.618 19.790-34.618 19.751Q-34.618 19.701-34.586 19.681Q-34.200 19.345-33.916 18.896Q-33.633 18.447-33.467 17.947Q-33.301 17.447-33.227 16.929Q-33.153 16.412-33.153 15.849Q-33.153 15.279-33.227 14.763Q-33.301 14.247-33.467 13.751Q-33.633 13.255-33.912 12.808Q-34.192 12.361-34.586 12.017Q-34.618 11.997-34.618 11.947Q-34.618 11.908-34.592 11.878Q-34.567 11.849-34.532 11.849L-34.450 11.849Q-34.438 11.849-34.428 11.851Q-34.418 11.853-34.411 11.857Q-33.797 12.314-33.395 12.949Q-32.993 13.583-32.797 14.329Q-32.602 15.076-32.602 15.849Q-32.602 16.622-32.797 17.369Q-32.993 18.115-33.395 18.749Q-33.797 19.384-34.411 19.841Q-34.422 19.841-34.430 19.843Q-34.438 19.845-34.450 19.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-25.970 17.904L-27.994 12.947Q-28.076 12.775-28.269 12.728Q-28.463 12.681-28.771 12.681L-28.771 12.384L-26.580 12.384L-26.580 12.681Q-27.205 12.681-27.205 12.896Q-27.201 12.912-27.199 12.925Q-27.197 12.939-27.193 12.947L-25.533 17.040L-23.947 13.162Q-23.924 13.115-23.924 13.048Q-23.924 12.865-24.093 12.773Q-24.263 12.681-24.474 12.681L-24.474 12.384L-22.763 12.384L-22.763 12.681Q-23.060 12.681-23.291 12.796Q-23.521 12.912-23.627 13.162L-25.564 17.904Q-25.603 18.017-25.732 18.017L-25.802 18.017Q-25.931 18.017-25.970 17.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.05 -5.533)\">\u003Cpath d=\"M-21.485 17.849L-23.235 17.849L-23.235 17.552Q-22.536 17.552-22.348 17.072L-20.547 12.247Q-20.493 12.138-20.379 12.138L-20.309 12.138Q-20.196 12.138-20.141 12.247L-18.251 17.290Q-18.172 17.458-17.969 17.505Q-17.766 17.552-17.454 17.552L-17.454 17.849L-19.676 17.849L-19.676 17.552Q-19.036 17.552-19.036 17.337Q-19.036 17.318-19.038 17.308Q-19.040 17.298-19.044 17.290L-19.508 16.056L-21.653 16.056L-22.036 17.072Q-22.040 17.087-22.045 17.117Q-22.051 17.146-22.051 17.169Q-22.051 17.310-21.962 17.394Q-21.872 17.478-21.739 17.515Q-21.606 17.552-21.485 17.552L-21.485 17.849M-20.579 13.193L-21.547 15.759L-19.622 15.759\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M85.596 3.623h65.887\"\u002F>\u003Cpath stroke=\"none\" d=\"m153.483 3.623-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(144.535 -19.51)\">\u003Cpath d=\"M-40.197 19.599Q-40.747 19.199-41.118 18.644Q-41.489 18.088-41.670 17.442Q-41.851 16.796-41.851 16.099Q-41.851 15.586-41.751 15.091Q-41.650 14.595-41.445 14.144Q-41.240 13.693-40.927 13.301Q-40.614 12.910-40.197 12.606Q-40.187 12.602-40.180 12.601Q-40.173 12.599-40.163 12.599L-40.095 12.599Q-40.060 12.599-40.038 12.623Q-40.016 12.647-40.016 12.684Q-40.016 12.729-40.043 12.746Q-40.392 13.047-40.645 13.431Q-40.898 13.816-41.050 14.257Q-41.202 14.698-41.274 15.154Q-41.346 15.610-41.346 16.099Q-41.346 17.100-41.036 17.987Q-40.727 18.874-40.043 19.459Q-40.016 19.476-40.016 19.520Q-40.016 19.558-40.038 19.582Q-40.060 19.606-40.095 19.606L-40.163 19.606Q-40.170 19.602-40.178 19.601Q-40.187 19.599-40.197 19.599M-36.195 17.849L-39.079 17.849L-39.079 17.647Q-39.079 17.617-39.052 17.589L-37.805 16.372Q-37.733 16.297-37.690 16.255Q-37.647 16.212-37.569 16.133Q-37.155 15.720-36.924 15.362Q-36.694 15.005-36.694 14.581Q-36.694 14.349-36.772 14.146Q-36.851 13.942-36.993 13.792Q-37.135 13.641-37.329 13.561Q-37.524 13.481-37.757 13.481Q-38.068 13.481-38.326 13.640Q-38.584 13.799-38.714 14.076L-38.693 14.076Q-38.526 14.076-38.418 14.187Q-38.310 14.298-38.310 14.462Q-38.310 14.619-38.420 14.732Q-38.529 14.845-38.693 14.845Q-38.854 14.845-38.967 14.732Q-39.079 14.619-39.079 14.462Q-39.079 14.086-38.871 13.799Q-38.662 13.512-38.328 13.356Q-37.993 13.201-37.637 13.201Q-37.213 13.201-36.834 13.359Q-36.454 13.518-36.220 13.835Q-35.986 14.151-35.986 14.581Q-35.986 14.892-36.126 15.161Q-36.266 15.429-36.472 15.634Q-36.677 15.839-37.039 16.121Q-37.401 16.403-37.511 16.499L-38.365 17.227L-37.723 17.227Q-37.459 17.227-37.171 17.225Q-36.882 17.224-36.663 17.215Q-36.444 17.206-36.427 17.189Q-36.366 17.124-36.328 16.957Q-36.290 16.789-36.253 16.547L-35.986 16.547L-36.195 17.849M-34.903 19.606L-34.971 19.606Q-35.005 19.606-35.027 19.580Q-35.050 19.555-35.050 19.520Q-35.050 19.476-35.019 19.459Q-34.663 19.155-34.414 18.765Q-34.164 18.375-34.012 17.943Q-33.860 17.511-33.790 17.042Q-33.720 16.574-33.720 16.099Q-33.720 15.620-33.790 15.154Q-33.860 14.687-34.014 14.252Q-34.168 13.816-34.419 13.428Q-34.670 13.040-35.019 12.746Q-35.050 12.729-35.050 12.684Q-35.050 12.650-35.027 12.625Q-35.005 12.599-34.971 12.599L-34.903 12.599Q-34.892 12.599-34.884 12.601Q-34.875 12.602-34.865 12.606Q-34.322 13.006-33.949 13.559Q-33.577 14.113-33.395 14.759Q-33.214 15.405-33.214 16.099Q-33.214 16.800-33.395 17.447Q-33.577 18.095-33.951 18.649Q-34.325 19.203-34.865 19.599Q-34.875 19.599-34.884 19.601Q-34.892 19.602-34.903 19.606\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.535 -19.51)\">\u003Cpath d=\"M-27.185 17.849L-29.318 17.849L-29.318 17.569Q-28.597 17.569-28.597 17.360L-28.597 13.559Q-28.597 13.348-29.318 13.348L-29.318 13.067L-26.652 13.067Q-26.242 13.067-25.821 13.221Q-25.401 13.375-25.117 13.679Q-24.834 13.983-24.834 14.397Q-24.834 14.715-25.001 14.961Q-25.169 15.207-25.445 15.373Q-25.722 15.538-26.044 15.622Q-26.365 15.706-26.652 15.706L-27.906 15.706L-27.906 17.360Q-27.906 17.569-27.185 17.569L-27.185 17.849M-27.934 13.559L-27.934 15.456L-26.847 15.456Q-26.238 15.456-25.924 15.219Q-25.609 14.981-25.609 14.397Q-25.609 14.004-25.755 13.770Q-25.900 13.536-26.172 13.442Q-26.443 13.348-26.847 13.348L-27.568 13.348Q-27.756 13.348-27.845 13.382Q-27.934 13.416-27.934 13.559M-20.120 17.849L-22.858 17.849L-22.858 17.569Q-22.509 17.569-22.173 17.533Q-21.836 17.497-21.836 17.360L-21.836 13.559Q-21.836 13.416-21.925 13.382Q-22.014 13.348-22.198 13.348L-22.557 13.348Q-22.858 13.348-23.073 13.395Q-23.289 13.443-23.446 13.600Q-23.583 13.734-23.642 14.012Q-23.702 14.291-23.740 14.704L-24.006 14.704L-23.859 13.067L-19.126 13.067L-18.979 14.704L-19.245 14.704Q-19.283 14.291-19.339 14.014Q-19.396 13.737-19.539 13.600Q-19.700 13.440-19.912 13.394Q-20.124 13.348-20.428 13.348L-20.780 13.348Q-20.964 13.348-21.053 13.382Q-21.142 13.416-21.142 13.559L-21.142 17.360Q-21.142 17.497-20.805 17.533Q-20.469 17.569-20.120 17.569L-20.120 17.849M-13.855 17.849L-18.257 17.849L-18.257 17.569Q-17.536 17.569-17.536 17.360L-17.536 13.559Q-17.536 13.348-18.257 13.348L-18.257 13.067L-13.968 13.067L-13.759 14.704L-14.023 14.704Q-14.081 14.233-14.183 13.968Q-14.286 13.703-14.470 13.570Q-14.655 13.436-14.927 13.392Q-15.198 13.348-15.697 13.348L-16.480 13.348Q-16.668 13.348-16.757 13.382Q-16.846 13.416-16.846 13.559L-16.846 15.224L-16.272 15.224Q-15.882 15.224-15.699 15.173Q-15.516 15.121-15.434 14.949Q-15.352 14.776-15.352 14.404L-15.089 14.404L-15.089 16.325L-15.352 16.325Q-15.352 15.952-15.434 15.779Q-15.516 15.607-15.699 15.556Q-15.882 15.504-16.272 15.504L-16.846 15.504L-16.846 17.360Q-16.846 17.500-16.757 17.535Q-16.668 17.569-16.480 17.569L-15.632 17.569Q-15.103 17.569-14.793 17.500Q-14.484 17.432-14.296 17.265Q-14.108 17.097-14 16.795Q-13.893 16.492-13.807 15.979L-13.541 15.979L-13.855 17.849M-11.363 17.849L-12.953 17.849L-12.953 17.569Q-12.310 17.569-12.153 17.169L-10.509 12.954Q-10.475 12.859-10.362 12.859L-10.280 12.859Q-10.170 12.859-10.129 12.954L-8.410 17.360Q-8.342 17.500-8.152 17.535Q-7.962 17.569-7.689 17.569L-7.689 17.849L-9.689 17.849L-9.689 17.569Q-9.125 17.569-9.125 17.394Q-9.125 17.377-9.126 17.370Q-9.128 17.364-9.131 17.360L-9.552 16.294L-11.510 16.294L-11.852 17.169Q-11.866 17.169-11.866 17.247Q-11.866 17.408-11.703 17.488Q-11.541 17.569-11.363 17.569L-11.363 17.849M-10.529 13.775L-11.398 16.014L-9.654 16.014\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M87.596 17.85h65.887\"\u002F>\u003Cpath stroke=\"none\" d=\"m85.596 17.85 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(137.844 -5.283)\">\u003Cpath d=\"M-40.197 19.599Q-40.747 19.199-41.118 18.644Q-41.489 18.088-41.670 17.442Q-41.851 16.796-41.851 16.099Q-41.851 15.586-41.751 15.091Q-41.650 14.595-41.445 14.144Q-41.240 13.693-40.927 13.301Q-40.614 12.910-40.197 12.606Q-40.187 12.602-40.180 12.601Q-40.173 12.599-40.163 12.599L-40.095 12.599Q-40.060 12.599-40.038 12.623Q-40.016 12.647-40.016 12.684Q-40.016 12.729-40.043 12.746Q-40.392 13.047-40.645 13.431Q-40.898 13.816-41.050 14.257Q-41.202 14.698-41.274 15.154Q-41.346 15.610-41.346 16.099Q-41.346 17.100-41.036 17.987Q-40.727 18.874-40.043 19.459Q-40.016 19.476-40.016 19.520Q-40.016 19.558-40.038 19.582Q-40.060 19.606-40.095 19.606L-40.163 19.606Q-40.170 19.602-40.178 19.601Q-40.187 19.599-40.197 19.599M-38.724 17.302Q-38.604 17.459-38.413 17.558Q-38.222 17.658-38.006 17.697Q-37.791 17.736-37.569 17.736Q-37.271 17.736-37.077 17.581Q-36.882 17.425-36.791 17.171Q-36.701 16.916-36.701 16.632Q-36.701 16.338-36.793 16.087Q-36.885 15.836-37.083 15.680Q-37.282 15.525-37.576 15.525L-38.092 15.525Q-38.119 15.525-38.145 15.499Q-38.170 15.474-38.170 15.450L-38.170 15.378Q-38.170 15.347-38.145 15.325Q-38.119 15.303-38.092 15.303L-37.651 15.272Q-37.288 15.272-37.068 14.915Q-36.848 14.557-36.848 14.168Q-36.848 13.840-37.042 13.636Q-37.237 13.433-37.569 13.433Q-37.856 13.433-38.109 13.517Q-38.362 13.600-38.526 13.788Q-38.379 13.788-38.278 13.903Q-38.177 14.017-38.177 14.168Q-38.177 14.318-38.283 14.428Q-38.389 14.537-38.546 14.537Q-38.707 14.537-38.816 14.428Q-38.926 14.318-38.926 14.168Q-38.926 13.843-38.717 13.624Q-38.509 13.406-38.193 13.303Q-37.876 13.201-37.569 13.201Q-37.251 13.201-36.923 13.305Q-36.595 13.409-36.367 13.631Q-36.140 13.853-36.140 14.168Q-36.140 14.602-36.427 14.927Q-36.714 15.251-37.148 15.398Q-36.837 15.463-36.557 15.629Q-36.277 15.795-36.099 16.053Q-35.921 16.311-35.921 16.632Q-35.921 17.042-36.166 17.352Q-36.410 17.661-36.791 17.825Q-37.172 17.989-37.569 17.989Q-37.938 17.989-38.295 17.876Q-38.652 17.764-38.897 17.514Q-39.141 17.265-39.141 16.895Q-39.141 16.724-39.025 16.612Q-38.909 16.499-38.738 16.499Q-38.628 16.499-38.538 16.550Q-38.447 16.601-38.392 16.694Q-38.338 16.786-38.338 16.895Q-38.338 17.063-38.451 17.182Q-38.563 17.302-38.724 17.302M-34.903 19.606L-34.971 19.606Q-35.005 19.606-35.027 19.580Q-35.050 19.555-35.050 19.520Q-35.050 19.476-35.019 19.459Q-34.663 19.155-34.414 18.765Q-34.164 18.375-34.012 17.943Q-33.860 17.511-33.790 17.042Q-33.720 16.574-33.720 16.099Q-33.720 15.620-33.790 15.154Q-33.860 14.687-34.014 14.252Q-34.168 13.816-34.419 13.428Q-34.670 13.040-35.019 12.746Q-35.050 12.729-35.050 12.684Q-35.050 12.650-35.027 12.625Q-35.005 12.599-34.971 12.599L-34.903 12.599Q-34.892 12.599-34.884 12.601Q-34.875 12.602-34.865 12.606Q-34.322 13.006-33.949 13.559Q-33.577 14.113-33.395 14.759Q-33.214 15.405-33.214 16.099Q-33.214 16.800-33.395 17.447Q-33.577 18.095-33.951 18.649Q-34.325 19.203-34.865 19.599Q-34.875 19.599-34.884 19.601Q-34.892 19.602-34.903 19.606\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.844 -5.283)\">\u003Cpath d=\"M-27.185 17.849L-29.318 17.849L-29.318 17.569Q-28.597 17.569-28.597 17.360L-28.597 13.559Q-28.597 13.348-29.318 13.348L-29.318 13.067L-26.652 13.067Q-26.242 13.067-25.821 13.221Q-25.401 13.375-25.117 13.679Q-24.834 13.983-24.834 14.397Q-24.834 14.715-25.001 14.961Q-25.169 15.207-25.445 15.373Q-25.722 15.538-26.044 15.622Q-26.365 15.706-26.652 15.706L-27.906 15.706L-27.906 17.360Q-27.906 17.569-27.185 17.569L-27.185 17.849M-27.934 13.559L-27.934 15.456L-26.847 15.456Q-26.238 15.456-25.924 15.219Q-25.609 14.981-25.609 14.397Q-25.609 14.004-25.755 13.770Q-25.900 13.536-26.172 13.442Q-26.443 13.348-26.847 13.348L-27.568 13.348Q-27.756 13.348-27.845 13.382Q-27.934 13.416-27.934 13.559M-20.120 17.849L-22.858 17.849L-22.858 17.569Q-22.509 17.569-22.173 17.533Q-21.836 17.497-21.836 17.360L-21.836 13.559Q-21.836 13.416-21.925 13.382Q-22.014 13.348-22.198 13.348L-22.557 13.348Q-22.858 13.348-23.073 13.395Q-23.289 13.443-23.446 13.600Q-23.583 13.734-23.642 14.012Q-23.702 14.291-23.740 14.704L-24.006 14.704L-23.859 13.067L-19.126 13.067L-18.979 14.704L-19.245 14.704Q-19.283 14.291-19.339 14.014Q-19.396 13.737-19.539 13.600Q-19.700 13.440-19.912 13.394Q-20.124 13.348-20.428 13.348L-20.780 13.348Q-20.964 13.348-21.053 13.382Q-21.142 13.416-21.142 13.559L-21.142 17.360Q-21.142 17.497-20.805 17.533Q-20.469 17.569-20.120 17.569L-20.120 17.849M-13.855 17.849L-18.257 17.849L-18.257 17.569Q-17.536 17.569-17.536 17.360L-17.536 13.559Q-17.536 13.348-18.257 13.348L-18.257 13.067L-13.968 13.067L-13.759 14.704L-14.023 14.704Q-14.081 14.233-14.183 13.968Q-14.286 13.703-14.470 13.570Q-14.655 13.436-14.927 13.392Q-15.198 13.348-15.697 13.348L-16.480 13.348Q-16.668 13.348-16.757 13.382Q-16.846 13.416-16.846 13.559L-16.846 15.224L-16.272 15.224Q-15.882 15.224-15.699 15.173Q-15.516 15.121-15.434 14.949Q-15.352 14.776-15.352 14.404L-15.089 14.404L-15.089 16.325L-15.352 16.325Q-15.352 15.952-15.434 15.779Q-15.516 15.607-15.699 15.556Q-15.882 15.504-16.272 15.504L-16.846 15.504L-16.846 17.360Q-16.846 17.500-16.757 17.535Q-16.668 17.569-16.480 17.569L-15.632 17.569Q-15.103 17.569-14.793 17.500Q-14.484 17.432-14.296 17.265Q-14.108 17.097-14 16.795Q-13.893 16.492-13.807 15.979L-13.541 15.979L-13.855 17.849M-12.553 17.429Q-12.553 17.261-12.430 17.138Q-12.307 17.015-12.132 17.015Q-11.965 17.015-11.842 17.138Q-11.719 17.261-11.719 17.429Q-11.719 17.603-11.842 17.726Q-11.965 17.849-12.132 17.849Q-12.307 17.849-12.430 17.726Q-12.553 17.603-12.553 17.429M-12.553 15.245Q-12.553 15.077-12.430 14.954Q-12.307 14.831-12.132 14.831Q-11.965 14.831-11.842 14.954Q-11.719 15.077-11.719 15.245Q-11.719 15.419-11.842 15.542Q-11.965 15.665-12.132 15.665Q-12.307 15.665-12.430 15.542Q-12.553 15.419-12.553 15.245\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.844 -5.283)\">\u003Cpath d=\"M-6.390 17.822L-7.518 15.323Q-7.590 15.176-7.720 15.144Q-7.850 15.111-8.079 15.111L-8.079 14.831L-6.565 14.831L-6.565 15.111Q-6.917 15.111-6.917 15.258Q-6.917 15.303-6.906 15.323L-6.042 17.241L-5.262 15.511Q-5.228 15.443-5.228 15.364Q-5.228 15.251-5.312 15.181Q-5.396 15.111-5.515 15.111L-5.515 14.831L-4.319 14.831L-4.319 15.111Q-4.538 15.111-4.709 15.214Q-4.879 15.316-4.968 15.511L-6.004 17.822Q-6.052 17.917-6.158 17.917L-6.236 17.917Q-6.342 17.917-6.390 17.822M1.389 17.042L-3.444 17.042Q-3.512 17.032-3.558 16.986Q-3.605 16.940-3.605 16.868Q-3.605 16.803-3.558 16.757Q-3.512 16.711-3.444 16.701L1.389 16.701Q1.457 16.711 1.504 16.757Q1.550 16.803 1.550 16.868Q1.550 16.940 1.504 16.986Q1.457 17.032 1.389 17.042M1.389 15.504L-3.444 15.504Q-3.512 15.494-3.558 15.448Q-3.605 15.402-3.605 15.330Q-3.605 15.186-3.444 15.162L1.389 15.162Q1.550 15.186 1.550 15.330Q1.550 15.402 1.504 15.448Q1.457 15.494 1.389 15.504M4.035 17.989Q3.399 17.989 3.035 17.644Q2.671 17.299 2.536 16.774Q2.401 16.249 2.401 15.624Q2.401 14.599 2.756 13.900Q3.112 13.201 4.035 13.201Q4.961 13.201 5.313 13.900Q5.665 14.599 5.665 15.624Q5.665 16.249 5.530 16.774Q5.395 17.299 5.033 17.644Q4.670 17.989 4.035 17.989M4.035 17.764Q4.472 17.764 4.686 17.389Q4.899 17.015 4.949 16.548Q4.998 16.082 4.998 15.504Q4.998 14.951 4.949 14.523Q4.899 14.096 4.687 13.761Q4.476 13.426 4.035 13.426Q3.693 13.426 3.489 13.633Q3.286 13.840 3.199 14.152Q3.112 14.465 3.090 14.781Q3.067 15.098 3.067 15.504Q3.067 15.921 3.090 16.263Q3.112 16.605 3.201 16.953Q3.289 17.302 3.495 17.533Q3.700 17.764 4.035 17.764\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M59.789-5.113V-38.28\"\u002F>\u003Cpath stroke=\"none\" d=\"m59.789-40.28-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(105.963 -38.545)\">\u003Cpath d=\"M-40.024 19.841Q-40.637 19.384-41.039 18.749Q-41.442 18.115-41.637 17.369Q-41.832 16.622-41.832 15.849Q-41.832 15.076-41.637 14.329Q-41.442 13.583-41.039 12.949Q-40.637 12.314-40.024 11.857Q-40.012 11.853-40.004 11.851Q-39.996 11.849-39.985 11.849L-39.907 11.849Q-39.868 11.849-39.842 11.876Q-39.817 11.904-39.817 11.947Q-39.817 11.997-39.848 12.017Q-40.356 12.470-40.678 13.093Q-41 13.716-41.141 14.412Q-41.282 15.107-41.282 15.849Q-41.282 16.583-41.143 17.283Q-41.004 17.982-40.680 18.607Q-40.356 19.232-39.848 19.681Q-39.817 19.701-39.817 19.751Q-39.817 19.794-39.842 19.822Q-39.868 19.849-39.907 19.849L-39.985 19.849Q-39.993 19.845-40.002 19.843Q-40.012 19.841-40.024 19.841M-36.856 16.537L-39.098 16.537L-39.098 16.240L-36.528 12.583Q-36.489 12.529-36.426 12.529L-36.282 12.529Q-36.231 12.529-36.200 12.560Q-36.168 12.591-36.168 12.642L-36.168 16.240L-35.336 16.240L-35.336 16.537L-36.168 16.537L-36.168 17.290Q-36.168 17.552-35.344 17.552L-35.344 17.849L-37.680 17.849L-37.680 17.552Q-36.856 17.552-36.856 17.290L-36.856 16.537M-36.801 13.435L-38.770 16.240L-36.801 16.240L-36.801 13.435M-34.450 19.849L-34.532 19.849Q-34.567 19.849-34.592 19.820Q-34.618 19.790-34.618 19.751Q-34.618 19.701-34.586 19.681Q-34.200 19.345-33.916 18.896Q-33.633 18.447-33.467 17.947Q-33.301 17.447-33.227 16.929Q-33.153 16.412-33.153 15.849Q-33.153 15.279-33.227 14.763Q-33.301 14.247-33.467 13.751Q-33.633 13.255-33.912 12.808Q-34.192 12.361-34.586 12.017Q-34.618 11.997-34.618 11.947Q-34.618 11.908-34.592 11.878Q-34.567 11.849-34.532 11.849L-34.450 11.849Q-34.438 11.849-34.428 11.851Q-34.418 11.853-34.411 11.857Q-33.797 12.314-33.395 12.949Q-32.993 13.583-32.797 14.329Q-32.602 15.076-32.602 15.849Q-32.602 16.622-32.797 17.369Q-32.993 18.115-33.395 18.749Q-33.797 19.384-34.411 19.841Q-34.422 19.841-34.430 19.843Q-34.438 19.845-34.450 19.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -38.545)\">\u003Cpath d=\"M-28.709 16.095Q-28.709 15.615-28.476 15.199Q-28.244 14.783-27.834 14.533Q-27.424 14.283-26.947 14.283Q-26.217 14.283-25.818 14.724Q-25.420 15.165-25.420 15.896Q-25.420 16.001-25.513 16.025L-27.963 16.025L-27.963 16.095Q-27.963 16.505-27.842 16.861Q-27.720 17.216-27.449 17.433Q-27.177 17.650-26.748 17.650Q-26.384 17.650-26.088 17.421Q-25.791 17.193-25.689 16.841Q-25.681 16.794-25.595 16.779L-25.513 16.779Q-25.420 16.806-25.420 16.888Q-25.420 16.896-25.427 16.927Q-25.490 17.154-25.629 17.337Q-25.767 17.521-25.959 17.654Q-26.150 17.787-26.369 17.857Q-26.588 17.927-26.826 17.927Q-27.197 17.927-27.535 17.790Q-27.873 17.654-28.140 17.402Q-28.408 17.150-28.558 16.810Q-28.709 16.470-28.709 16.095M-27.955 15.787L-25.994 15.787Q-25.994 15.482-26.095 15.191Q-26.197 14.900-26.414 14.718Q-26.631 14.537-26.947 14.537Q-27.248 14.537-27.478 14.724Q-27.709 14.912-27.832 15.203Q-27.955 15.494-27.955 15.787M-23.545 17.849L-25.041 17.849L-25.041 17.552Q-24.408 17.552-23.986 17.072L-23.217 16.162L-24.209 14.962Q-24.365 14.783-24.527 14.740Q-24.689 14.697-24.994 14.697L-24.994 14.400L-23.306 14.400L-23.306 14.697Q-23.400 14.697-23.476 14.740Q-23.552 14.783-23.552 14.872Q-23.552 14.915-23.521 14.962L-22.865 15.751L-22.384 15.177Q-22.267 15.040-22.267 14.904Q-22.267 14.814-22.318 14.755Q-22.369 14.697-22.451 14.697L-22.451 14.400L-20.963 14.400L-20.963 14.697Q-21.599 14.697-22.009 15.177L-22.689 15.978L-21.603 17.290Q-21.443 17.466-21.283 17.509Q-21.123 17.552-20.818 17.552L-20.818 17.849L-22.506 17.849L-22.506 17.552Q-22.416 17.552-22.338 17.509Q-22.259 17.466-22.259 17.376Q-22.259 17.353-22.291 17.290L-23.033 16.384L-23.619 17.072Q-23.736 17.208-23.736 17.345Q-23.736 17.431-23.685 17.492Q-23.634 17.552-23.545 17.552L-23.545 17.849M-20.408 16.122Q-20.408 15.626-20.158 15.201Q-19.908 14.775-19.488 14.529Q-19.068 14.283-18.568 14.283Q-18.029 14.283-17.638 14.408Q-17.248 14.533-17.248 14.947Q-17.248 15.052-17.299 15.144Q-17.349 15.236-17.441 15.287Q-17.533 15.337-17.642 15.337Q-17.748 15.337-17.840 15.287Q-17.931 15.236-17.982 15.144Q-18.033 15.052-18.033 14.947Q-18.033 14.724-17.865 14.619Q-18.088 14.560-18.560 14.560Q-18.857 14.560-19.072 14.699Q-19.287 14.837-19.418 15.068Q-19.549 15.298-19.607 15.568Q-19.666 15.837-19.666 16.122Q-19.666 16.517-19.533 16.867Q-19.400 17.216-19.129 17.433Q-18.857 17.650-18.459 17.650Q-18.084 17.650-17.808 17.433Q-17.533 17.216-17.431 16.857Q-17.416 16.794-17.353 16.794L-17.248 16.794Q-17.213 16.794-17.187 16.822Q-17.162 16.849-17.162 16.888L-17.162 16.912Q-17.295 17.392-17.679 17.660Q-18.064 17.927-18.568 17.927Q-18.931 17.927-19.265 17.790Q-19.599 17.654-19.859 17.404Q-20.119 17.154-20.263 16.818Q-20.408 16.482-20.408 16.122M-16.674 16.095Q-16.674 15.615-16.441 15.199Q-16.209 14.783-15.799 14.533Q-15.388 14.283-14.912 14.283Q-14.181 14.283-13.783 14.724Q-13.384 15.165-13.384 15.896Q-13.384 16.001-13.478 16.025L-15.927 16.025L-15.927 16.095Q-15.927 16.505-15.806 16.861Q-15.685 17.216-15.414 17.433Q-15.142 17.650-14.713 17.650Q-14.349 17.650-14.052 17.421Q-13.756 17.193-13.654 16.841Q-13.646 16.794-13.560 16.779L-13.478 16.779Q-13.384 16.806-13.384 16.888Q-13.384 16.896-13.392 16.927Q-13.455 17.154-13.593 17.337Q-13.732 17.521-13.924 17.654Q-14.115 17.787-14.334 17.857Q-14.552 17.927-14.791 17.927Q-15.162 17.927-15.500 17.790Q-15.838 17.654-16.105 17.402Q-16.373 17.150-16.523 16.810Q-16.674 16.470-16.674 16.095M-15.920 15.787L-13.959 15.787Q-13.959 15.482-14.060 15.191Q-14.162 14.900-14.379 14.718Q-14.595 14.537-14.912 14.537Q-15.213 14.537-15.443 14.724Q-15.674 14.912-15.797 15.203Q-15.920 15.494-15.920 15.787M-11.013 19.400L-12.869 19.400L-12.869 19.107Q-12.599 19.107-12.431 19.062Q-12.263 19.017-12.263 18.841L-12.263 15.017Q-12.263 14.810-12.420 14.757Q-12.576 14.704-12.869 14.704L-12.869 14.408L-11.646 14.322L-11.646 14.787Q-11.416 14.564-11.101 14.443Q-10.787 14.322-10.447 14.322Q-9.974 14.322-9.570 14.568Q-9.166 14.814-8.933 15.230Q-8.701 15.646-8.701 16.122Q-8.701 16.497-8.849 16.826Q-8.998 17.154-9.267 17.406Q-9.537 17.658-9.881 17.792Q-10.224 17.927-10.584 17.927Q-10.873 17.927-11.144 17.806Q-11.416 17.685-11.623 17.474L-11.623 18.841Q-11.623 19.017-11.455 19.062Q-11.287 19.107-11.013 19.107L-11.013 19.400M-11.623 15.185L-11.623 17.025Q-11.470 17.314-11.209 17.494Q-10.947 17.673-10.638 17.673Q-10.353 17.673-10.131 17.535Q-9.908 17.396-9.756 17.165Q-9.603 16.935-9.525 16.663Q-9.447 16.392-9.447 16.122Q-9.447 15.790-9.572 15.433Q-9.697 15.076-9.945 14.839Q-10.193 14.603-10.541 14.603Q-10.865 14.603-11.160 14.759Q-11.455 14.915-11.623 15.185M-7.552 16.888L-7.552 14.697L-8.256 14.697L-8.256 14.443Q-7.900 14.443-7.658 14.210Q-7.416 13.978-7.304 13.630Q-7.193 13.283-7.193 12.927L-6.912 12.927L-6.912 14.400L-5.736 14.400L-5.736 14.697L-6.912 14.697L-6.912 16.872Q-6.912 17.193-6.793 17.421Q-6.674 17.650-6.392 17.650Q-6.213 17.650-6.095 17.527Q-5.978 17.404-5.926 17.224Q-5.873 17.044-5.873 16.872L-5.873 16.400L-5.592 16.400L-5.592 16.888Q-5.592 17.142-5.697 17.382Q-5.802 17.622-6 17.775Q-6.197 17.927-6.455 17.927Q-6.771 17.927-7.023 17.804Q-7.275 17.681-7.414 17.447Q-7.552 17.212-7.552 16.888M-3.013 17.849L-4.791 17.849L-4.791 17.552Q-4.517 17.552-4.349 17.505Q-4.181 17.458-4.181 17.290L-4.181 15.154Q-4.181 14.939-4.238 14.843Q-4.295 14.747-4.408 14.726Q-4.521 14.704-4.767 14.704L-4.767 14.408L-3.568 14.322L-3.568 17.290Q-3.568 17.458-3.422 17.505Q-3.275 17.552-3.013 17.552L-3.013 17.849M-4.455 12.927Q-4.455 12.736-4.320 12.605Q-4.185 12.474-3.990 12.474Q-3.869 12.474-3.765 12.537Q-3.662 12.599-3.599 12.703Q-3.537 12.806-3.537 12.927Q-3.537 13.122-3.668 13.257Q-3.799 13.392-3.990 13.392Q-4.189 13.392-4.322 13.259Q-4.455 13.126-4.455 12.927M-2.513 16.154Q-2.513 15.650-2.258 15.218Q-2.002 14.787-1.566 14.535Q-1.131 14.283-0.631 14.283Q-0.244 14.283 0.098 14.427Q0.440 14.572 0.701 14.833Q0.963 15.095 1.106 15.431Q1.248 15.767 1.248 16.154Q1.248 16.646 0.985 17.056Q0.721 17.466 0.291 17.697Q-0.138 17.927-0.631 17.927Q-1.123 17.927-1.556 17.695Q-1.990 17.462-2.252 17.054Q-2.513 16.646-2.513 16.154M-0.631 17.650Q-0.174 17.650 0.078 17.427Q0.330 17.204 0.418 16.853Q0.506 16.501 0.506 16.056Q0.506 15.626 0.412 15.288Q0.319 14.951 0.065 14.744Q-0.189 14.537-0.631 14.537Q-1.279 14.537-1.523 14.953Q-1.767 15.369-1.767 16.056Q-1.767 16.501-1.679 16.853Q-1.592 17.204-1.340 17.427Q-1.088 17.650-0.631 17.650M3.662 17.849L1.807 17.849L1.807 17.552Q2.080 17.552 2.248 17.505Q2.416 17.458 2.416 17.290L2.416 15.154Q2.416 14.939 2.354 14.843Q2.291 14.747 2.172 14.726Q2.053 14.704 1.807 14.704L1.807 14.408L2.998 14.322L2.998 15.056Q3.112 14.841 3.305 14.673Q3.498 14.505 3.737 14.413Q3.975 14.322 4.229 14.322Q5.397 14.322 5.397 15.400L5.397 17.290Q5.397 17.458 5.567 17.505Q5.737 17.552 6.006 17.552L6.006 17.849L4.151 17.849L4.151 17.552Q4.424 17.552 4.592 17.505Q4.760 17.458 4.760 17.290L4.760 15.415Q4.760 15.033 4.639 14.804Q4.518 14.576 4.166 14.576Q3.854 14.576 3.600 14.738Q3.346 14.900 3.199 15.169Q3.053 15.439 3.053 15.736L3.053 17.290Q3.053 17.458 3.223 17.505Q3.393 17.552 3.662 17.552\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M102.668-56.128h60.196\"\u002F>\u003Cpath stroke=\"none\" d=\"m164.864-56.128-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(153.08 -79.26)\">\u003Cpath d=\"M-40.197 19.599Q-40.747 19.199-41.118 18.644Q-41.489 18.088-41.670 17.442Q-41.851 16.796-41.851 16.099Q-41.851 15.586-41.751 15.091Q-41.650 14.595-41.445 14.144Q-41.240 13.693-40.927 13.301Q-40.614 12.910-40.197 12.606Q-40.187 12.602-40.180 12.601Q-40.173 12.599-40.163 12.599L-40.095 12.599Q-40.060 12.599-40.038 12.623Q-40.016 12.647-40.016 12.684Q-40.016 12.729-40.043 12.746Q-40.392 13.047-40.645 13.431Q-40.898 13.816-41.050 14.257Q-41.202 14.698-41.274 15.154Q-41.346 15.610-41.346 16.099Q-41.346 17.100-41.036 17.987Q-40.727 18.874-40.043 19.459Q-40.016 19.476-40.016 19.520Q-40.016 19.558-40.038 19.582Q-40.060 19.606-40.095 19.606L-40.163 19.606Q-40.170 19.602-40.178 19.601Q-40.187 19.599-40.197 19.599M-38.714 17.087L-38.745 17.087Q-38.608 17.384-38.310 17.560Q-38.013 17.736-37.685 17.736Q-37.323 17.736-37.095 17.558Q-36.868 17.381-36.774 17.092Q-36.680 16.803-36.680 16.441Q-36.680 16.126-36.735 15.841Q-36.789 15.556-36.962 15.350Q-37.135 15.145-37.449 15.145Q-37.723 15.145-37.905 15.212Q-38.088 15.279-38.193 15.368Q-38.297 15.456-38.392 15.566Q-38.488 15.675-38.533 15.685L-38.611 15.685Q-38.683 15.668-38.700 15.597L-38.700 13.279Q-38.700 13.245-38.676 13.223Q-38.652 13.201-38.618 13.201L-38.591 13.201Q-38.304 13.317-38.035 13.371Q-37.767 13.426-37.490 13.426Q-37.213 13.426-36.943 13.371Q-36.673 13.317-36.393 13.201L-36.369 13.201Q-36.335 13.201-36.311 13.224Q-36.287 13.248-36.287 13.279L-36.287 13.348Q-36.287 13.375-36.308 13.395Q-36.581 13.710-36.965 13.886Q-37.350 14.062-37.764 14.062Q-38.102 14.062-38.420 13.976L-38.420 15.258Q-38.023 14.923-37.449 14.923Q-37.046 14.923-36.709 15.133Q-36.372 15.344-36.179 15.696Q-35.986 16.048-35.986 16.448Q-35.986 16.779-36.126 17.065Q-36.266 17.350-36.511 17.560Q-36.755 17.770-37.058 17.880Q-37.360 17.989-37.678 17.989Q-38.037 17.989-38.363 17.825Q-38.690 17.661-38.885 17.369Q-39.079 17.077-39.079 16.714Q-39.079 16.564-38.974 16.458Q-38.868 16.352-38.714 16.352Q-38.560 16.352-38.456 16.456Q-38.351 16.560-38.351 16.714Q-38.351 16.871-38.456 16.979Q-38.560 17.087-38.714 17.087M-34.903 19.606L-34.971 19.606Q-35.005 19.606-35.027 19.580Q-35.050 19.555-35.050 19.520Q-35.050 19.476-35.019 19.459Q-34.663 19.155-34.414 18.765Q-34.164 18.375-34.012 17.943Q-33.860 17.511-33.790 17.042Q-33.720 16.574-33.720 16.099Q-33.720 15.620-33.790 15.154Q-33.860 14.687-34.014 14.252Q-34.168 13.816-34.419 13.428Q-34.670 13.040-35.019 12.746Q-35.050 12.729-35.050 12.684Q-35.050 12.650-35.027 12.625Q-35.005 12.599-34.971 12.599L-34.903 12.599Q-34.892 12.599-34.884 12.601Q-34.875 12.602-34.865 12.606Q-34.322 13.006-33.949 13.559Q-33.577 14.113-33.395 14.759Q-33.214 15.405-33.214 16.099Q-33.214 16.800-33.395 17.447Q-33.577 18.095-33.951 18.649Q-34.325 19.203-34.865 19.599Q-34.875 19.599-34.884 19.601Q-34.892 19.602-34.903 19.606\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(153.08 -79.26)\">\u003Cpath d=\"M-27.647 17.849L-29.383 17.849L-29.383 17.569Q-29.154 17.569-29.005 17.535Q-28.857 17.500-28.857 17.360L-28.857 15.511Q-28.857 15.241-28.964 15.180Q-29.072 15.118-29.383 15.118L-29.383 14.838L-28.354 14.763L-28.354 15.470Q-28.224 15.162-27.982 14.963Q-27.739 14.763-27.421 14.763Q-27.202 14.763-27.031 14.887Q-26.860 15.012-26.860 15.224Q-26.860 15.361-26.960 15.460Q-27.059 15.559-27.192 15.559Q-27.329 15.559-27.428 15.460Q-27.527 15.361-27.527 15.224Q-27.527 15.084-27.428 14.985Q-27.718 14.985-27.918 15.181Q-28.118 15.378-28.211 15.672Q-28.303 15.966-28.303 16.246L-28.303 17.360Q-28.303 17.569-27.647 17.569L-27.647 17.849M-26.317 16.314Q-26.317 15.993-26.192 15.704Q-26.067 15.415-25.842 15.192Q-25.616 14.968-25.321 14.848Q-25.025 14.728-24.707 14.728Q-24.379 14.728-24.117 14.828Q-23.856 14.927-23.680 15.109Q-23.504 15.292-23.410 15.550Q-23.316 15.808-23.316 16.140Q-23.316 16.232-23.398 16.253L-25.654 16.253L-25.654 16.314Q-25.654 16.902-25.370 17.285Q-25.086 17.668-24.519 17.668Q-24.198 17.668-23.930 17.475Q-23.661 17.282-23.572 16.967Q-23.565 16.926-23.490 16.912L-23.398 16.912Q-23.316 16.936-23.316 17.008Q-23.316 17.015-23.323 17.042Q-23.436 17.439-23.806 17.678Q-24.177 17.917-24.601 17.917Q-25.039 17.917-25.439 17.709Q-25.838 17.500-26.078 17.133Q-26.317 16.766-26.317 16.314M-25.647 16.044L-23.832 16.044Q-23.832 15.767-23.930 15.515Q-24.027 15.262-24.225 15.106Q-24.423 14.951-24.707 14.951Q-24.984 14.951-25.198 15.109Q-25.411 15.268-25.529 15.523Q-25.647 15.778-25.647 16.044M-22.670 17.121Q-22.670 16.789-22.446 16.562Q-22.222 16.335-21.879 16.207Q-21.535 16.078-21.163 16.026Q-20.790 15.973-20.486 15.973L-20.486 15.720Q-20.486 15.515-20.594 15.335Q-20.701 15.156-20.882 15.053Q-21.064 14.951-21.272 14.951Q-21.679 14.951-21.915 15.043Q-21.826 15.080-21.780 15.164Q-21.733 15.248-21.733 15.350Q-21.733 15.446-21.780 15.525Q-21.826 15.603-21.906 15.648Q-21.986 15.692-22.075 15.692Q-22.226 15.692-22.326 15.595Q-22.427 15.497-22.427 15.350Q-22.427 14.728-21.272 14.728Q-21.060 14.728-20.811 14.792Q-20.561 14.855-20.359 14.974Q-20.158 15.094-20.031 15.279Q-19.905 15.463-19.905 15.706L-19.905 17.282Q-19.905 17.398-19.843 17.494Q-19.782 17.589-19.669 17.589Q-19.560 17.589-19.495 17.495Q-19.430 17.401-19.430 17.282L-19.430 16.834L-19.163 16.834L-19.163 17.282Q-19.163 17.552-19.390 17.717Q-19.618 17.883-19.898 17.883Q-20.107 17.883-20.243 17.729Q-20.380 17.576-20.404 17.360Q-20.551 17.627-20.833 17.772Q-21.115 17.917-21.440 17.917Q-21.716 17.917-22 17.842Q-22.284 17.767-22.477 17.588Q-22.670 17.408-22.670 17.121M-22.055 17.121Q-22.055 17.295-21.954 17.425Q-21.853 17.555-21.698 17.625Q-21.542 17.695-21.378 17.695Q-21.159 17.695-20.951 17.598Q-20.742 17.500-20.614 17.319Q-20.486 17.138-20.486 16.912L-20.486 16.184Q-20.811 16.184-21.176 16.275Q-21.542 16.366-21.798 16.578Q-22.055 16.789-22.055 17.121M-18.746 16.338Q-18.746 16-18.606 15.709Q-18.466 15.419-18.221 15.205Q-17.977 14.992-17.673 14.877Q-17.369 14.763-17.044 14.763Q-16.774 14.763-16.511 14.862Q-16.248 14.961-16.056 15.139L-16.056 13.741Q-16.056 13.471-16.164 13.409Q-16.272 13.348-16.583 13.348L-16.583 13.067L-15.506 12.992L-15.506 17.176Q-15.506 17.364-15.451 17.447Q-15.397 17.531-15.296 17.550Q-15.195 17.569-14.980 17.569L-14.980 17.849L-16.087 17.917L-16.087 17.500Q-16.504 17.917-17.129 17.917Q-17.560 17.917-17.933 17.705Q-18.305 17.494-18.526 17.133Q-18.746 16.772-18.746 16.338M-17.071 17.695Q-16.863 17.695-16.677 17.623Q-16.490 17.552-16.336 17.415Q-16.183 17.278-16.087 17.100L-16.087 15.491Q-16.172 15.344-16.318 15.224Q-16.463 15.104-16.632 15.045Q-16.801 14.985-16.982 14.985Q-17.543 14.985-17.811 15.374Q-18.080 15.764-18.080 16.345Q-18.080 16.916-17.846 17.306Q-17.611 17.695-17.071 17.695\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(153.08 -79.26)\">\u003Cpath d=\"M-9.975 19.206L-11.605 19.206L-11.605 18.926Q-11.376 18.926-11.227 18.891Q-11.079 18.857-11.079 18.717L-11.079 15.371Q-11.079 15.200-11.215 15.159Q-11.352 15.118-11.605 15.118L-11.605 14.838L-10.525 14.763L-10.525 15.169Q-10.303 14.968-10.016 14.865Q-9.728 14.763-9.421 14.763Q-8.994 14.763-8.630 14.976Q-8.266 15.190-8.052 15.554Q-7.838 15.918-7.838 16.338Q-7.838 16.783-8.078 17.147Q-8.317 17.511-8.710 17.714Q-9.103 17.917-9.547 17.917Q-9.814 17.917-10.062 17.817Q-10.309 17.716-10.497 17.535L-10.497 18.717Q-10.497 18.854-10.349 18.890Q-10.200 18.926-9.975 18.926L-9.975 19.206M-10.497 15.518L-10.497 17.128Q-10.364 17.381-10.121 17.538Q-9.879 17.695-9.602 17.695Q-9.274 17.695-9.021 17.494Q-8.768 17.292-8.635 16.974Q-8.501 16.656-8.501 16.338Q-8.501 16.109-8.566 15.880Q-8.631 15.651-8.759 15.453Q-8.888 15.255-9.082 15.135Q-9.277 15.016-9.510 15.016Q-9.804 15.016-10.072 15.145Q-10.340 15.275-10.497 15.518M-7.144 17.121Q-7.144 16.789-6.921 16.562Q-6.697 16.335-6.353 16.207Q-6.010 16.078-5.637 16.026Q-5.265 15.973-4.960 15.973L-4.960 15.720Q-4.960 15.515-5.068 15.335Q-5.176 15.156-5.357 15.053Q-5.538 14.951-5.746 14.951Q-6.153 14.951-6.389 15.043Q-6.300 15.080-6.254 15.164Q-6.208 15.248-6.208 15.350Q-6.208 15.446-6.254 15.525Q-6.300 15.603-6.381 15.648Q-6.461 15.692-6.550 15.692Q-6.700 15.692-6.801 15.595Q-6.902 15.497-6.902 15.350Q-6.902 14.728-5.746 14.728Q-5.535 14.728-5.285 14.792Q-5.036 14.855-4.834 14.974Q-4.632 15.094-4.506 15.279Q-4.379 15.463-4.379 15.706L-4.379 17.282Q-4.379 17.398-4.318 17.494Q-4.256 17.589-4.143 17.589Q-4.034 17.589-3.969 17.495Q-3.904 17.401-3.904 17.282L-3.904 16.834L-3.638 16.834L-3.638 17.282Q-3.638 17.552-3.865 17.717Q-4.092 17.883-4.372 17.883Q-4.581 17.883-4.718 17.729Q-4.854 17.576-4.878 17.360Q-5.025 17.627-5.307 17.772Q-5.589 17.917-5.914 17.917Q-6.191 17.917-6.475 17.842Q-6.758 17.767-6.951 17.588Q-7.144 17.408-7.144 17.121M-6.529 17.121Q-6.529 17.295-6.428 17.425Q-6.328 17.555-6.172 17.625Q-6.016 17.695-5.852 17.695Q-5.634 17.695-5.425 17.598Q-5.217 17.500-5.089 17.319Q-4.960 17.138-4.960 16.912L-4.960 16.184Q-5.285 16.184-5.651 16.275Q-6.016 16.366-6.273 16.578Q-6.529 16.789-6.529 17.121M-3.262 18.382Q-3.262 18.136-3.065 17.952Q-2.869 17.767-2.612 17.688Q-2.749 17.576-2.821 17.415Q-2.892 17.254-2.892 17.073Q-2.892 16.752-2.681 16.506Q-3.016 16.208-3.016 15.798Q-3.016 15.337-2.626 15.050Q-2.236 14.763-1.758 14.763Q-1.286 14.763-0.951 15.009Q-0.777 14.855-0.567 14.773Q-0.356 14.691-0.127 14.691Q0.037 14.691 0.158 14.798Q0.279 14.906 0.279 15.070Q0.279 15.166 0.208 15.238Q0.136 15.309 0.044 15.309Q-0.056 15.309-0.126 15.236Q-0.196 15.162-0.196 15.063Q-0.196 15.009-0.182 14.978L-0.175 14.964Q-0.168 14.944-0.160 14.933Q-0.151 14.923-0.148 14.916Q-0.503 14.916-0.790 15.139Q-0.503 15.432-0.503 15.798Q-0.503 16.113-0.688 16.345Q-0.872 16.578-1.161 16.706Q-1.450 16.834-1.758 16.834Q-1.959 16.834-2.151 16.784Q-2.342 16.735-2.520 16.625Q-2.612 16.752-2.612 16.895Q-2.612 17.077-2.484 17.212Q-2.356 17.347-2.171 17.347L-1.539 17.347Q-1.091 17.347-0.722 17.418Q-0.353 17.490-0.093 17.719Q0.167 17.948 0.167 18.382Q0.167 18.703-0.129 18.905Q-0.425 19.107-0.828 19.196Q-1.231 19.285-1.546 19.285Q-1.864 19.285-2.267 19.196Q-2.670 19.107-2.966 18.905Q-3.262 18.703-3.262 18.382M-2.807 18.382Q-2.807 18.611-2.588 18.760Q-2.370 18.909-2.077 18.977Q-1.785 19.045-1.546 19.045Q-1.382 19.045-1.173 19.009Q-0.965 18.974-0.758 18.893Q-0.551 18.813-0.420 18.685Q-0.288 18.557-0.288 18.382Q-0.288 18.030-0.669 17.936Q-1.050 17.842-1.553 17.842L-2.171 17.842Q-2.411 17.842-2.609 17.993Q-2.807 18.143-2.807 18.382M-1.758 16.595Q-1.091 16.595-1.091 15.798Q-1.091 14.998-1.758 14.998Q-2.428 14.998-2.428 15.798Q-2.428 16.595-1.758 16.595M0.720 16.314Q0.720 15.993 0.845 15.704Q0.970 15.415 1.195 15.192Q1.421 14.968 1.717 14.848Q2.012 14.728 2.330 14.728Q2.658 14.728 2.920 14.828Q3.181 14.927 3.357 15.109Q3.533 15.292 3.627 15.550Q3.721 15.808 3.721 16.140Q3.721 16.232 3.639 16.253L1.383 16.253L1.383 16.314Q1.383 16.902 1.667 17.285Q1.951 17.668 2.518 17.668Q2.839 17.668 3.108 17.475Q3.376 17.282 3.465 16.967Q3.472 16.926 3.547 16.912L3.639 16.912Q3.721 16.936 3.721 17.008Q3.721 17.015 3.714 17.042Q3.602 17.439 3.231 17.678Q2.860 17.917 2.436 17.917Q1.999 17.917 1.599 17.709Q1.199 17.500 0.960 17.133Q0.720 16.766 0.720 16.314M1.390 16.044L3.205 16.044Q3.205 15.767 3.108 15.515Q3.010 15.262 2.812 15.106Q2.614 14.951 2.330 14.951Q2.053 14.951 1.840 15.109Q1.626 15.268 1.508 15.523Q1.390 15.778 1.390 16.044\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M190.671-40.28v33.167\"\u002F>\u003Cpath stroke=\"none\" d=\"m190.671-5.113 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(236.845 -38.545)\">\u003Cpath d=\"M-40.024 19.841Q-40.637 19.384-41.039 18.749Q-41.442 18.115-41.637 17.369Q-41.832 16.622-41.832 15.849Q-41.832 15.076-41.637 14.329Q-41.442 13.583-41.039 12.949Q-40.637 12.314-40.024 11.857Q-40.012 11.853-40.004 11.851Q-39.996 11.849-39.985 11.849L-39.907 11.849Q-39.868 11.849-39.842 11.876Q-39.817 11.904-39.817 11.947Q-39.817 11.997-39.848 12.017Q-40.356 12.470-40.678 13.093Q-41 13.716-41.141 14.412Q-41.282 15.107-41.282 15.849Q-41.282 16.583-41.143 17.283Q-41.004 17.982-40.680 18.607Q-40.356 19.232-39.848 19.681Q-39.817 19.701-39.817 19.751Q-39.817 19.794-39.842 19.822Q-39.868 19.849-39.907 19.849L-39.985 19.849Q-39.993 19.845-40.002 19.843Q-40.012 19.841-40.024 19.841M-37.215 18.017Q-37.887 18.017-38.284 17.593Q-38.680 17.169-38.832 16.550Q-38.985 15.931-38.985 15.263Q-38.985 14.603-38.713 13.970Q-38.442 13.337-37.928 12.933Q-37.414 12.529-36.743 12.529Q-36.453 12.529-36.205 12.628Q-35.957 12.728-35.811 12.929Q-35.664 13.130-35.664 13.435Q-35.664 13.540-35.715 13.632Q-35.766 13.724-35.858 13.775Q-35.950 13.826-36.055 13.826Q-36.223 13.826-36.336 13.712Q-36.450 13.599-36.450 13.435Q-36.450 13.275-36.340 13.158Q-36.231 13.040-36.063 13.040Q-36.262 12.771-36.743 12.771Q-37.161 12.771-37.493 13.048Q-37.825 13.326-38 13.744Q-38.200 14.244-38.200 15.146Q-38.036 14.822-37.756 14.622Q-37.477 14.423-37.129 14.423Q-36.645 14.423-36.260 14.669Q-35.875 14.915-35.662 15.324Q-35.450 15.732-35.450 16.216Q-35.450 16.708-35.680 17.120Q-35.911 17.533-36.321 17.775Q-36.731 18.017-37.215 18.017M-37.215 17.744Q-36.789 17.744-36.573 17.523Q-36.356 17.302-36.293 16.976Q-36.231 16.650-36.231 16.216Q-36.231 15.904-36.256 15.654Q-36.282 15.404-36.371 15.179Q-36.461 14.954-36.657 14.818Q-36.852 14.681-37.168 14.681Q-37.496 14.681-37.729 14.890Q-37.961 15.099-38.073 15.417Q-38.184 15.736-38.184 16.048Q-38.180 16.087-38.178 16.120Q-38.176 16.154-38.176 16.208Q-38.176 16.224-38.178 16.232Q-38.180 16.240-38.184 16.247Q-38.184 16.822-37.957 17.283Q-37.731 17.744-37.215 17.744M-34.450 19.849L-34.532 19.849Q-34.567 19.849-34.592 19.820Q-34.618 19.790-34.618 19.751Q-34.618 19.701-34.586 19.681Q-34.200 19.345-33.916 18.896Q-33.633 18.447-33.467 17.947Q-33.301 17.447-33.227 16.929Q-33.153 16.412-33.153 15.849Q-33.153 15.279-33.227 14.763Q-33.301 14.247-33.467 13.751Q-33.633 13.255-33.912 12.808Q-34.192 12.361-34.586 12.017Q-34.618 11.997-34.618 11.947Q-34.618 11.908-34.592 11.878Q-34.567 11.849-34.532 11.849L-34.450 11.849Q-34.438 11.849-34.428 11.851Q-34.418 11.853-34.411 11.857Q-33.797 12.314-33.395 12.949Q-32.993 13.583-32.797 14.329Q-32.602 15.076-32.602 15.849Q-32.602 16.622-32.797 17.369Q-32.993 18.115-33.395 18.749Q-33.797 19.384-34.411 19.841Q-34.422 19.841-34.430 19.843Q-34.438 19.845-34.450 19.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.845 -38.545)\">\u003Cpath d=\"M-26.779 17.849L-28.634 17.849L-28.634 17.552Q-28.361 17.552-28.193 17.505Q-28.025 17.458-28.025 17.290L-28.025 15.154Q-28.025 14.939-28.088 14.843Q-28.150 14.747-28.269 14.726Q-28.388 14.704-28.634 14.704L-28.634 14.408L-27.443 14.322L-27.443 15.056Q-27.330 14.841-27.136 14.673Q-26.943 14.505-26.705 14.413Q-26.467 14.322-26.213 14.322Q-25.045 14.322-25.045 15.400L-25.045 17.290Q-25.045 17.458-24.875 17.505Q-24.705 17.552-24.435 17.552L-24.435 17.849L-26.291 17.849L-26.291 17.552Q-26.017 17.552-25.849 17.505Q-25.681 17.458-25.681 17.290L-25.681 15.415Q-25.681 15.033-25.802 14.804Q-25.924 14.576-26.275 14.576Q-26.588 14.576-26.842 14.738Q-27.095 14.900-27.242 15.169Q-27.388 15.439-27.388 15.736L-27.388 17.290Q-27.388 17.458-27.218 17.505Q-27.049 17.552-26.779 17.552L-26.779 17.849M-23.990 16.095Q-23.990 15.615-23.758 15.199Q-23.525 14.783-23.115 14.533Q-22.705 14.283-22.228 14.283Q-21.498 14.283-21.099 14.724Q-20.701 15.165-20.701 15.896Q-20.701 16.001-20.795 16.025L-23.244 16.025L-23.244 16.095Q-23.244 16.505-23.123 16.861Q-23.002 17.216-22.730 17.433Q-22.459 17.650-22.029 17.650Q-21.666 17.650-21.369 17.421Q-21.072 17.193-20.970 16.841Q-20.963 16.794-20.877 16.779L-20.795 16.779Q-20.701 16.806-20.701 16.888Q-20.701 16.896-20.709 16.927Q-20.771 17.154-20.910 17.337Q-21.049 17.521-21.240 17.654Q-21.431 17.787-21.650 17.857Q-21.869 17.927-22.107 17.927Q-22.478 17.927-22.816 17.790Q-23.154 17.654-23.422 17.402Q-23.689 17.150-23.840 16.810Q-23.990 16.470-23.990 16.095M-23.236 15.787L-21.275 15.787Q-21.275 15.482-21.377 15.191Q-21.478 14.900-21.695 14.718Q-21.912 14.537-22.228 14.537Q-22.529 14.537-22.759 14.724Q-22.990 14.912-23.113 15.203Q-23.236 15.494-23.236 15.787M-18.627 17.818L-19.697 14.962Q-19.763 14.783-19.894 14.740Q-20.025 14.697-20.283 14.697L-20.283 14.400L-18.603 14.400L-18.603 14.697Q-19.052 14.697-19.052 14.896Q-19.049 14.912-19.047 14.929Q-19.045 14.947-19.045 14.962L-18.252 17.056L-17.541 15.146Q-17.576 15.052-17.576 15.007Q-17.576 14.962-17.611 14.962Q-17.677 14.783-17.808 14.740Q-17.939 14.697-18.193 14.697L-18.193 14.400L-16.603 14.400L-16.603 14.697Q-17.052 14.697-17.052 14.896Q-17.049 14.915-17.047 14.933Q-17.045 14.951-17.045 14.962L-16.213 17.177L-15.459 15.177Q-15.435 15.119-15.435 15.048Q-15.435 14.888-15.572 14.792Q-15.709 14.697-15.877 14.697L-15.877 14.400L-14.490 14.400L-14.490 14.697Q-14.724 14.697-14.902 14.824Q-15.080 14.951-15.162 15.177L-16.146 17.818Q-16.201 17.927-16.314 17.927L-16.373 17.927Q-16.486 17.927-16.529 17.818L-17.388 15.544L-18.244 17.818Q-18.283 17.927-18.404 17.927L-18.459 17.927Q-18.572 17.927-18.627 17.818\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.845 -38.545)\">\u003Cpath d=\"M-9.353 19.400L-11.208 19.400L-11.208 19.107Q-10.939 19.107-10.771 19.062Q-10.603 19.017-10.603 18.841L-10.603 15.017Q-10.603 14.810-10.759 14.757Q-10.915 14.704-11.208 14.704L-11.208 14.408L-9.986 14.322L-9.986 14.787Q-9.755 14.564-9.441 14.443Q-9.126 14.322-8.787 14.322Q-8.314 14.322-7.910 14.568Q-7.505 14.814-7.273 15.230Q-7.040 15.646-7.040 16.122Q-7.040 16.497-7.189 16.826Q-7.337 17.154-7.607 17.406Q-7.876 17.658-8.220 17.792Q-8.564 17.927-8.923 17.927Q-9.212 17.927-9.484 17.806Q-9.755 17.685-9.962 17.474L-9.962 18.841Q-9.962 19.017-9.794 19.062Q-9.626 19.107-9.353 19.107L-9.353 19.400M-9.962 15.185L-9.962 17.025Q-9.810 17.314-9.548 17.494Q-9.287 17.673-8.978 17.673Q-8.693 17.673-8.470 17.535Q-8.247 17.396-8.095 17.165Q-7.943 16.935-7.865 16.663Q-7.787 16.392-7.787 16.122Q-7.787 15.790-7.912 15.433Q-8.037 15.076-8.285 14.839Q-8.533 14.603-8.880 14.603Q-9.204 14.603-9.499 14.759Q-9.794 14.915-9.962 15.185M-6.419 17.017Q-6.419 16.533-6.017 16.238Q-5.615 15.943-5.064 15.824Q-4.513 15.704-4.021 15.704L-4.021 15.415Q-4.021 15.189-4.136 14.982Q-4.251 14.775-4.449 14.656Q-4.646 14.537-4.876 14.537Q-5.302 14.537-5.587 14.642Q-5.517 14.669-5.470 14.724Q-5.423 14.779-5.398 14.849Q-5.372 14.919-5.372 14.994Q-5.372 15.099-5.423 15.191Q-5.474 15.283-5.566 15.333Q-5.658 15.384-5.763 15.384Q-5.869 15.384-5.960 15.333Q-6.052 15.283-6.103 15.191Q-6.154 15.099-6.154 14.994Q-6.154 14.576-5.765 14.429Q-5.376 14.283-4.876 14.283Q-4.544 14.283-4.191 14.413Q-3.837 14.544-3.609 14.798Q-3.380 15.052-3.380 15.400L-3.380 17.201Q-3.380 17.333-3.308 17.443Q-3.236 17.552-3.107 17.552Q-2.982 17.552-2.913 17.447Q-2.845 17.341-2.845 17.201L-2.845 16.689L-2.564 16.689L-2.564 17.201Q-2.564 17.404-2.681 17.562Q-2.798 17.720-2.980 17.804Q-3.162 17.888-3.365 17.888Q-3.595 17.888-3.747 17.716Q-3.900 17.544-3.931 17.314Q-4.091 17.595-4.400 17.761Q-4.708 17.927-5.060 17.927Q-5.572 17.927-5.995 17.704Q-6.419 17.482-6.419 17.017M-5.732 17.017Q-5.732 17.302-5.505 17.488Q-5.279 17.673-4.986 17.673Q-4.740 17.673-4.515 17.556Q-4.290 17.439-4.156 17.236Q-4.021 17.033-4.021 16.779L-4.021 15.947Q-4.287 15.947-4.572 16.001Q-4.857 16.056-5.128 16.185Q-5.400 16.314-5.566 16.521Q-5.732 16.728-5.732 17.017M-2.271 18.458Q-2.271 18.177-2.060 17.966Q-1.849 17.755-1.564 17.665Q-1.720 17.540-1.798 17.351Q-1.876 17.162-1.876 16.962Q-1.876 16.607-1.646 16.314Q-2.013 15.974-2.013 15.505Q-2.013 15.154-1.810 14.884Q-1.607 14.615-1.287 14.468Q-0.966 14.322-0.622 14.322Q-0.103 14.322 0.268 14.603Q0.631 14.232 1.178 14.232Q1.358 14.232 1.485 14.359Q1.612 14.486 1.612 14.665Q1.612 14.771 1.534 14.849Q1.456 14.927 1.346 14.927Q1.237 14.927 1.161 14.851Q1.085 14.775 1.085 14.665Q1.085 14.564 1.124 14.513Q1.131 14.505 1.135 14.499Q1.139 14.494 1.139 14.490Q0.764 14.490 0.444 14.744Q0.764 15.083 0.764 15.505Q0.764 15.775 0.647 15.992Q0.530 16.208 0.325 16.367Q0.120 16.525-0.122 16.607Q-0.365 16.689-0.622 16.689Q-0.841 16.689-1.054 16.630Q-1.267 16.572-1.462 16.451Q-1.556 16.591-1.556 16.771Q-1.556 16.978-1.419 17.130Q-1.283 17.283-1.076 17.283L-0.380 17.283Q0.108 17.283 0.520 17.367Q0.932 17.451 1.212 17.708Q1.491 17.966 1.491 18.458Q1.491 18.822 1.171 19.054Q0.850 19.287 0.409 19.388Q-0.033 19.490-0.388 19.490Q-0.744 19.490-1.187 19.388Q-1.630 19.287-1.951 19.054Q-2.271 18.822-2.271 18.458M-1.767 18.458Q-1.767 18.654-1.622 18.802Q-1.478 18.951-1.265 19.040Q-1.052 19.130-0.812 19.177Q-0.572 19.224-0.388 19.224Q-0.146 19.224 0.184 19.146Q0.514 19.068 0.751 18.894Q0.987 18.720 0.987 18.458Q0.987 18.052 0.577 17.943Q0.167 17.833-0.396 17.833L-1.076 17.833Q-1.345 17.833-1.556 18.011Q-1.767 18.189-1.767 18.458M-0.622 16.423Q0.100 16.423 0.100 15.505Q0.100 14.583-0.622 14.583Q-1.349 14.583-1.349 15.505Q-1.349 16.423-0.622 16.423M1.975 16.095Q1.975 15.615 2.208 15.199Q2.440 14.783 2.850 14.533Q3.260 14.283 3.737 14.283Q4.467 14.283 4.866 14.724Q5.264 15.165 5.264 15.896Q5.264 16.001 5.171 16.025L2.721 16.025L2.721 16.095Q2.721 16.505 2.842 16.861Q2.963 17.216 3.235 17.433Q3.506 17.650 3.936 17.650Q4.299 17.650 4.596 17.421Q4.893 17.193 4.995 16.841Q5.003 16.794 5.088 16.779L5.171 16.779Q5.264 16.806 5.264 16.888Q5.264 16.896 5.256 16.927Q5.194 17.154 5.055 17.337Q4.917 17.521 4.725 17.654Q4.534 17.787 4.315 17.857Q4.096 17.927 3.858 17.927Q3.487 17.927 3.149 17.790Q2.811 17.654 2.544 17.402Q2.276 17.150 2.126 16.810Q1.975 16.470 1.975 16.095M2.729 15.787L4.690 15.787Q4.690 15.482 4.588 15.191Q4.487 14.900 4.270 14.718Q4.053 14.537 3.737 14.537Q3.436 14.537 3.206 14.724Q2.975 14.912 2.852 15.203Q2.729 15.494 2.729 15.787\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M16.91-56.128h-59.551v49.015\"\u002F>\u003Cpath stroke=\"none\" d=\"m-42.641-5.113 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-10.092 -81.536)\">\u003Cpath d=\"M-40.197 19.599Q-40.747 19.199-41.118 18.644Q-41.489 18.088-41.670 17.442Q-41.851 16.796-41.851 16.099Q-41.851 15.586-41.751 15.091Q-41.650 14.595-41.445 14.144Q-41.240 13.693-40.927 13.301Q-40.614 12.910-40.197 12.606Q-40.187 12.602-40.180 12.601Q-40.173 12.599-40.163 12.599L-40.095 12.599Q-40.060 12.599-40.038 12.623Q-40.016 12.647-40.016 12.684Q-40.016 12.729-40.043 12.746Q-40.392 13.047-40.645 13.431Q-40.898 13.816-41.050 14.257Q-41.202 14.698-41.274 15.154Q-41.346 15.610-41.346 16.099Q-41.346 17.100-41.036 17.987Q-40.727 18.874-40.043 19.459Q-40.016 19.476-40.016 19.520Q-40.016 19.558-40.038 19.582Q-40.060 19.606-40.095 19.606L-40.163 19.606Q-40.170 19.602-40.178 19.601Q-40.187 19.599-40.197 19.599M-38.085 17.641Q-38.085 17.135-37.955 16.627Q-37.825 16.120-37.588 15.658Q-37.350 15.197-37.015 14.776L-36.369 13.963L-37.183 13.963Q-37.767 13.963-38.163 13.971Q-38.560 13.980-38.584 14Q-38.686 14.117-38.765 14.643L-39.032 14.643L-38.786 13.119L-38.519 13.119L-38.519 13.139Q-38.519 13.207-38.444 13.250Q-38.369 13.293-38.290 13.300Q-38.099 13.324-37.904 13.330Q-37.709 13.337-37.517 13.339Q-37.326 13.341-37.128 13.341L-35.706 13.341L-35.706 13.529Q-35.716 13.577-35.726 13.587L-36.783 14.910Q-37.001 15.183-37.124 15.496Q-37.247 15.808-37.306 16.157Q-37.364 16.506-37.377 16.837Q-37.391 17.169-37.391 17.641Q-37.391 17.791-37.490 17.890Q-37.589 17.989-37.736 17.989Q-37.887 17.989-37.986 17.890Q-38.085 17.791-38.085 17.641M-34.903 19.606L-34.971 19.606Q-35.005 19.606-35.027 19.580Q-35.050 19.555-35.050 19.520Q-35.050 19.476-35.019 19.459Q-34.663 19.155-34.414 18.765Q-34.164 18.375-34.012 17.943Q-33.860 17.511-33.790 17.042Q-33.720 16.574-33.720 16.099Q-33.720 15.620-33.790 15.154Q-33.860 14.687-34.014 14.252Q-34.168 13.816-34.419 13.428Q-34.670 13.040-35.019 12.746Q-35.050 12.729-35.050 12.684Q-35.050 12.650-35.027 12.625Q-35.005 12.599-34.971 12.599L-34.903 12.599Q-34.892 12.599-34.884 12.601Q-34.875 12.602-34.865 12.606Q-34.322 13.006-33.949 13.559Q-33.577 14.113-33.395 14.759Q-33.214 15.405-33.214 16.099Q-33.214 16.800-33.395 17.447Q-33.577 18.095-33.951 18.649Q-34.325 19.203-34.865 19.599Q-34.875 19.599-34.884 19.601Q-34.892 19.602-34.903 19.606\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 -81.536)\">\u003Cpath d=\"M-27.647 17.849L-29.383 17.849L-29.383 17.569Q-29.154 17.569-29.005 17.535Q-28.857 17.500-28.857 17.360L-28.857 15.511Q-28.857 15.241-28.964 15.180Q-29.072 15.118-29.383 15.118L-29.383 14.838L-28.354 14.763L-28.354 15.470Q-28.224 15.162-27.982 14.963Q-27.739 14.763-27.421 14.763Q-27.202 14.763-27.031 14.887Q-26.860 15.012-26.860 15.224Q-26.860 15.361-26.960 15.460Q-27.059 15.559-27.192 15.559Q-27.329 15.559-27.428 15.460Q-27.527 15.361-27.527 15.224Q-27.527 15.084-27.428 14.985Q-27.718 14.985-27.918 15.181Q-28.118 15.378-28.211 15.672Q-28.303 15.966-28.303 16.246L-28.303 17.360Q-28.303 17.569-27.647 17.569L-27.647 17.849M-26.317 16.314Q-26.317 15.993-26.192 15.704Q-26.067 15.415-25.842 15.192Q-25.616 14.968-25.321 14.848Q-25.025 14.728-24.707 14.728Q-24.379 14.728-24.117 14.828Q-23.856 14.927-23.680 15.109Q-23.504 15.292-23.410 15.550Q-23.316 15.808-23.316 16.140Q-23.316 16.232-23.398 16.253L-25.654 16.253L-25.654 16.314Q-25.654 16.902-25.370 17.285Q-25.086 17.668-24.519 17.668Q-24.198 17.668-23.930 17.475Q-23.661 17.282-23.572 16.967Q-23.565 16.926-23.490 16.912L-23.398 16.912Q-23.316 16.936-23.316 17.008Q-23.316 17.015-23.323 17.042Q-23.436 17.439-23.806 17.678Q-24.177 17.917-24.601 17.917Q-25.039 17.917-25.439 17.709Q-25.838 17.500-26.078 17.133Q-26.317 16.766-26.317 16.314M-25.647 16.044L-23.832 16.044Q-23.832 15.767-23.930 15.515Q-24.027 15.262-24.225 15.106Q-24.423 14.951-24.707 14.951Q-24.984 14.951-25.198 15.109Q-25.411 15.268-25.529 15.523Q-25.647 15.778-25.647 16.044M-22.202 17.008L-22.202 15.111L-22.841 15.111L-22.841 14.889Q-22.523 14.889-22.306 14.679Q-22.089 14.469-21.988 14.159Q-21.887 13.850-21.887 13.542L-21.621 13.542L-21.621 14.831L-20.544 14.831L-20.544 15.111L-21.621 15.111L-21.621 16.995Q-21.621 17.271-21.516 17.470Q-21.412 17.668-21.152 17.668Q-20.995 17.668-20.889 17.564Q-20.783 17.459-20.734 17.306Q-20.684 17.152-20.684 16.995L-20.684 16.581L-20.418 16.581L-20.418 17.008Q-20.418 17.234-20.517 17.444Q-20.616 17.654-20.800 17.786Q-20.985 17.917-21.214 17.917Q-21.651 17.917-21.927 17.680Q-22.202 17.442-22.202 17.008M-19.033 17.015L-19.033 15.511Q-19.033 15.241-19.141 15.180Q-19.249 15.118-19.560 15.118L-19.560 14.838L-18.452 14.763L-18.452 16.995L-18.452 17.015Q-18.452 17.295-18.401 17.439Q-18.350 17.582-18.208 17.639Q-18.066 17.695-17.779 17.695Q-17.526 17.695-17.321 17.555Q-17.116 17.415-17 17.189Q-16.883 16.964-16.883 16.714L-16.883 15.511Q-16.883 15.241-16.991 15.180Q-17.099 15.118-17.410 15.118L-17.410 14.838L-16.302 14.763L-16.302 17.176Q-16.302 17.367-16.249 17.449Q-16.196 17.531-16.096 17.550Q-15.995 17.569-15.779 17.569L-15.779 17.849L-16.856 17.917L-16.856 17.353Q-16.965 17.535-17.111 17.658Q-17.256 17.781-17.442 17.849Q-17.628 17.917-17.830 17.917Q-19.033 17.917-19.033 17.015M-13.441 17.849L-15.178 17.849L-15.178 17.569Q-14.949 17.569-14.800 17.535Q-14.651 17.500-14.651 17.360L-14.651 15.511Q-14.651 15.241-14.759 15.180Q-14.867 15.118-15.178 15.118L-15.178 14.838L-14.149 14.763L-14.149 15.470Q-14.019 15.162-13.776 14.963Q-13.534 14.763-13.216 14.763Q-12.997 14.763-12.826 14.887Q-12.655 15.012-12.655 15.224Q-12.655 15.361-12.754 15.460Q-12.854 15.559-12.987 15.559Q-13.124 15.559-13.223 15.460Q-13.322 15.361-13.322 15.224Q-13.322 15.084-13.223 14.985Q-13.513 14.985-13.713 15.181Q-13.913 15.378-14.005 15.672Q-14.098 15.966-14.098 16.246L-14.098 17.360Q-14.098 17.569-13.441 17.569L-13.441 17.849M-10.389 17.849L-12.023 17.849L-12.023 17.569Q-11.794 17.569-11.645 17.535Q-11.497 17.500-11.497 17.360L-11.497 15.511Q-11.497 15.241-11.604 15.180Q-11.712 15.118-12.023 15.118L-12.023 14.838L-10.963 14.763L-10.963 15.412Q-10.793 15.104-10.488 14.933Q-10.184 14.763-9.839 14.763Q-9.333 14.763-9.049 14.986Q-8.766 15.210-8.766 15.706L-8.766 17.360Q-8.766 17.497-8.617 17.533Q-8.468 17.569-8.243 17.569L-8.243 17.849L-9.873 17.849L-9.873 17.569Q-9.644 17.569-9.495 17.535Q-9.347 17.500-9.347 17.360L-9.347 15.720Q-9.347 15.385-9.466 15.185Q-9.586 14.985-9.900 14.985Q-10.170 14.985-10.405 15.121Q-10.639 15.258-10.777 15.492Q-10.916 15.726-10.916 16L-10.916 17.360Q-10.916 17.497-10.765 17.533Q-10.615 17.569-10.389 17.569L-10.389 17.849M-7.156 19.079Q-7.156 19.045-7.128 19.018Q-6.858 18.789-6.710 18.466Q-6.561 18.143-6.561 17.787L-6.561 17.750Q-6.670 17.849-6.835 17.849Q-7.016 17.849-7.135 17.729Q-7.255 17.610-7.255 17.429Q-7.255 17.254-7.135 17.135Q-7.016 17.015-6.835 17.015Q-6.578 17.015-6.459 17.254Q-6.339 17.494-6.339 17.787Q-6.339 18.187-6.508 18.558Q-6.677 18.929-6.975 19.185Q-7.005 19.206-7.033 19.206Q-7.074 19.206-7.115 19.165Q-7.156 19.124-7.156 19.079\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 -81.536)\">\u003Cpath d=\"M-0.924 17.849L-2.660 17.849L-2.660 17.569Q-2.431 17.569-2.282 17.535Q-2.134 17.500-2.134 17.360L-2.134 15.511Q-2.134 15.241-2.241 15.180Q-2.349 15.118-2.660 15.118L-2.660 14.838L-1.631 14.763L-1.631 15.470Q-1.501 15.162-1.259 14.963Q-1.016 14.763-0.698 14.763Q-0.479 14.763-0.308 14.887Q-0.137 15.012-0.137 15.224Q-0.137 15.361-0.237 15.460Q-0.336 15.559-0.469 15.559Q-0.606 15.559-0.705 15.460Q-0.804 15.361-0.804 15.224Q-0.804 15.084-0.705 14.985Q-0.995 14.985-1.195 15.181Q-1.395 15.378-1.488 15.672Q-1.580 15.966-1.580 16.246L-1.580 17.360Q-1.580 17.569-0.924 17.569L-0.924 17.849M0.406 16.314Q0.406 15.993 0.531 15.704Q0.656 15.415 0.881 15.192Q1.107 14.968 1.402 14.848Q1.698 14.728 2.016 14.728Q2.344 14.728 2.606 14.828Q2.867 14.927 3.043 15.109Q3.219 15.292 3.313 15.550Q3.407 15.808 3.407 16.140Q3.407 16.232 3.325 16.253L1.069 16.253L1.069 16.314Q1.069 16.902 1.353 17.285Q1.637 17.668 2.204 17.668Q2.525 17.668 2.793 17.475Q3.062 17.282 3.151 16.967Q3.158 16.926 3.233 16.912L3.325 16.912Q3.407 16.936 3.407 17.008Q3.407 17.015 3.400 17.042Q3.287 17.439 2.917 17.678Q2.546 17.917 2.122 17.917Q1.684 17.917 1.284 17.709Q0.885 17.500 0.645 17.133Q0.406 16.766 0.406 16.314M1.076 16.044L2.891 16.044Q2.891 15.767 2.793 15.515Q2.696 15.262 2.498 15.106Q2.300 14.951 2.016 14.951Q1.739 14.951 1.525 15.109Q1.312 15.268 1.194 15.523Q1.076 15.778 1.076 16.044M3.995 17.842L3.995 16.779Q3.995 16.755 4.022 16.728Q4.050 16.701 4.074 16.701L4.183 16.701Q4.248 16.701 4.262 16.759Q4.357 17.193 4.603 17.444Q4.849 17.695 5.263 17.695Q5.605 17.695 5.858 17.562Q6.111 17.429 6.111 17.121Q6.111 16.964 6.017 16.849Q5.923 16.735 5.784 16.666Q5.646 16.598 5.478 16.560L4.897 16.461Q4.542 16.393 4.268 16.172Q3.995 15.952 3.995 15.610Q3.995 15.361 4.106 15.186Q4.217 15.012 4.403 14.913Q4.590 14.814 4.805 14.771Q5.020 14.728 5.263 14.728Q5.677 14.728 5.957 14.910L6.172 14.735Q6.182 14.732 6.189 14.730Q6.196 14.728 6.206 14.728L6.258 14.728Q6.285 14.728 6.309 14.752Q6.333 14.776 6.333 14.804L6.333 15.651Q6.333 15.672 6.309 15.699Q6.285 15.726 6.258 15.726L6.145 15.726Q6.117 15.726 6.092 15.701Q6.066 15.675 6.066 15.651Q6.066 15.415 5.960 15.251Q5.854 15.087 5.671 15.005Q5.489 14.923 5.256 14.923Q4.928 14.923 4.672 15.026Q4.415 15.128 4.415 15.405Q4.415 15.600 4.598 15.709Q4.781 15.819 5.010 15.860L5.584 15.966Q5.830 16.014 6.044 16.142Q6.258 16.270 6.394 16.473Q6.531 16.677 6.531 16.926Q6.531 17.439 6.165 17.678Q5.800 17.917 5.263 17.917Q4.767 17.917 4.436 17.623L4.169 17.897Q4.149 17.917 4.121 17.917L4.074 17.917Q4.050 17.917 4.022 17.890Q3.995 17.863 3.995 17.842M7.686 17.008L7.686 15.111L7.047 15.111L7.047 14.889Q7.365 14.889 7.582 14.679Q7.799 14.469 7.900 14.159Q8.001 13.850 8.001 13.542L8.267 13.542L8.267 14.831L9.344 14.831L9.344 15.111L8.267 15.111L8.267 16.995Q8.267 17.271 8.372 17.470Q8.476 17.668 8.736 17.668Q8.893 17.668 8.999 17.564Q9.105 17.459 9.154 17.306Q9.204 17.152 9.204 16.995L9.204 16.581L9.470 16.581L9.470 17.008Q9.470 17.234 9.371 17.444Q9.272 17.654 9.088 17.786Q8.903 17.917 8.674 17.917Q8.237 17.917 7.961 17.680Q7.686 17.442 7.686 17.008M10.339 17.121Q10.339 16.789 10.563 16.562Q10.786 16.335 11.130 16.207Q11.473 16.078 11.846 16.026Q12.219 15.973 12.523 15.973L12.523 15.720Q12.523 15.515 12.415 15.335Q12.307 15.156 12.126 15.053Q11.945 14.951 11.737 14.951Q11.330 14.951 11.094 15.043Q11.183 15.080 11.229 15.164Q11.275 15.248 11.275 15.350Q11.275 15.446 11.229 15.525Q11.183 15.603 11.103 15.648Q11.022 15.692 10.933 15.692Q10.783 15.692 10.682 15.595Q10.581 15.497 10.581 15.350Q10.581 14.728 11.737 14.728Q11.949 14.728 12.198 14.792Q12.448 14.855 12.649 14.974Q12.851 15.094 12.977 15.279Q13.104 15.463 13.104 15.706L13.104 17.282Q13.104 17.398 13.165 17.494Q13.227 17.589 13.340 17.589Q13.449 17.589 13.514 17.495Q13.579 17.401 13.579 17.282L13.579 16.834L13.845 16.834L13.845 17.282Q13.845 17.552 13.618 17.717Q13.391 17.883 13.111 17.883Q12.902 17.883 12.765 17.729Q12.629 17.576 12.605 17.360Q12.458 17.627 12.176 17.772Q11.894 17.917 11.569 17.917Q11.292 17.917 11.009 17.842Q10.725 17.767 10.532 17.588Q10.339 17.408 10.339 17.121M10.954 17.121Q10.954 17.295 11.055 17.425Q11.156 17.555 11.311 17.625Q11.467 17.695 11.631 17.695Q11.849 17.695 12.058 17.598Q12.266 17.500 12.395 17.319Q12.523 17.138 12.523 16.912L12.523 16.184Q12.198 16.184 11.832 16.275Q11.467 16.366 11.210 16.578Q10.954 16.789 10.954 17.121M16.012 17.849L14.276 17.849L14.276 17.569Q14.505 17.569 14.654 17.535Q14.803 17.500 14.803 17.360L14.803 15.511Q14.803 15.241 14.695 15.180Q14.587 15.118 14.276 15.118L14.276 14.838L15.305 14.763L15.305 15.470Q15.435 15.162 15.678 14.963Q15.920 14.763 16.238 14.763Q16.457 14.763 16.628 14.887Q16.799 15.012 16.799 15.224Q16.799 15.361 16.700 15.460Q16.600 15.559 16.467 15.559Q16.330 15.559 16.231 15.460Q16.132 15.361 16.132 15.224Q16.132 15.084 16.231 14.985Q15.941 14.985 15.741 15.181Q15.541 15.378 15.449 15.672Q15.356 15.966 15.356 16.246L15.356 17.360Q15.356 17.569 16.012 17.569L16.012 17.849M17.909 17.008L17.909 15.111L17.270 15.111L17.270 14.889Q17.588 14.889 17.805 14.679Q18.022 14.469 18.123 14.159Q18.224 13.850 18.224 13.542L18.491 13.542L18.491 14.831L19.567 14.831L19.567 15.111L18.491 15.111L18.491 16.995Q18.491 17.271 18.595 17.470Q18.699 17.668 18.959 17.668Q19.116 17.668 19.222 17.564Q19.328 17.459 19.377 17.306Q19.427 17.152 19.427 16.995L19.427 16.581L19.694 16.581L19.694 17.008Q19.694 17.234 19.595 17.444Q19.495 17.654 19.311 17.786Q19.126 17.917 18.897 17.917Q18.460 17.917 18.185 17.680Q17.909 17.442 17.909 17.008\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">A page fault diverts to software. Steps 1-3 proceed as in a hit, but the PTE comes back not-resident, so (4) the MMU raises an exception into the OS page-fault handler. (5) The handler evicts a victim if needed and reads the missing page from disk into a frame, (6) the page lands in memory and the PTE is updated, and (7) control returns and the CPU restarts the faulting instruction, which now hits.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:334.598px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 250.949 145.369\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-131.684 -70.53)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M76.712 7.148L74.731 7.148L74.731 6.851Q75.001 6.851 75.169 6.806Q75.337 6.761 75.337 6.589L75.337 4.453Q75.337 4.238 75.274 4.142Q75.212 4.046 75.095 4.025Q74.977 4.003 74.731 4.003L74.731 3.707L75.899 3.621L75.899 4.406Q75.977 4.195 76.130 4.009Q76.282 3.824 76.481 3.722Q76.681 3.621 76.907 3.621Q77.153 3.621 77.345 3.765Q77.536 3.910 77.536 4.140Q77.536 4.296 77.431 4.406Q77.325 4.515 77.169 4.515Q77.013 4.515 76.903 4.406Q76.794 4.296 76.794 4.140Q76.794 3.980 76.899 3.875Q76.575 3.875 76.360 4.103Q76.145 4.332 76.050 4.671Q75.954 5.011 75.954 5.316L75.954 6.589Q75.954 6.757 76.181 6.804Q76.407 6.851 76.712 6.851L76.712 7.148M78.017 5.453Q78.017 4.949 78.272 4.517Q78.528 4.085 78.964 3.834Q79.399 3.582 79.899 3.582Q80.286 3.582 80.628 3.726Q80.970 3.871 81.231 4.132Q81.493 4.394 81.636 4.730Q81.778 5.066 81.778 5.453Q81.778 5.945 81.515 6.355Q81.251 6.765 80.821 6.996Q80.392 7.226 79.899 7.226Q79.407 7.226 78.974 6.994Q78.540 6.761 78.278 6.353Q78.017 5.945 78.017 5.453M79.899 6.949Q80.356 6.949 80.608 6.726Q80.860 6.503 80.948 6.152Q81.036 5.800 81.036 5.355Q81.036 4.925 80.942 4.587Q80.849 4.250 80.595 4.043Q80.341 3.835 79.899 3.835Q79.251 3.835 79.007 4.252Q78.763 4.668 78.763 5.355Q78.763 5.800 78.851 6.152Q78.938 6.503 79.190 6.726Q79.442 6.949 79.899 6.949M82.306 5.421Q82.306 4.925 82.556 4.500Q82.806 4.074 83.226 3.828Q83.645 3.582 84.145 3.582Q84.684 3.582 85.075 3.707Q85.466 3.832 85.466 4.246Q85.466 4.351 85.415 4.443Q85.364 4.535 85.272 4.585Q85.181 4.636 85.071 4.636Q84.966 4.636 84.874 4.585Q84.782 4.535 84.731 4.443Q84.681 4.351 84.681 4.246Q84.681 4.023 84.849 3.918Q84.626 3.859 84.153 3.859Q83.856 3.859 83.642 3.998Q83.427 4.136 83.296 4.367Q83.165 4.597 83.106 4.867Q83.048 5.136 83.048 5.421Q83.048 5.816 83.181 6.166Q83.313 6.515 83.585 6.732Q83.856 6.949 84.255 6.949Q84.630 6.949 84.905 6.732Q85.181 6.515 85.282 6.156Q85.298 6.093 85.360 6.093L85.466 6.093Q85.501 6.093 85.526 6.121Q85.552 6.148 85.552 6.187L85.552 6.210Q85.419 6.691 85.034 6.959Q84.649 7.226 84.145 7.226Q83.782 7.226 83.448 7.089Q83.114 6.953 82.854 6.703Q82.595 6.453 82.450 6.117Q82.306 5.781 82.306 5.421M86.040 5.394Q86.040 4.914 86.272 4.498Q86.505 4.082 86.915 3.832Q87.325 3.582 87.802 3.582Q88.532 3.582 88.931 4.023Q89.329 4.464 89.329 5.195Q89.329 5.300 89.235 5.324L86.786 5.324L86.786 5.394Q86.786 5.804 86.907 6.160Q87.028 6.515 87.300 6.732Q87.571 6.949 88.001 6.949Q88.364 6.949 88.661 6.720Q88.958 6.492 89.059 6.140Q89.067 6.093 89.153 6.078L89.235 6.078Q89.329 6.105 89.329 6.187Q89.329 6.195 89.321 6.226Q89.259 6.453 89.120 6.636Q88.981 6.820 88.790 6.953Q88.599 7.085 88.380 7.156Q88.161 7.226 87.923 7.226Q87.552 7.226 87.214 7.089Q86.876 6.953 86.608 6.701Q86.341 6.449 86.190 6.109Q86.040 5.769 86.040 5.394M86.794 5.085L88.755 5.085Q88.755 4.781 88.653 4.490Q88.552 4.199 88.335 4.017Q88.118 3.835 87.802 3.835Q87.501 3.835 87.270 4.023Q87.040 4.210 86.917 4.502Q86.794 4.793 86.794 5.085M89.860 7.140L89.860 5.918Q89.860 5.890 89.892 5.859Q89.923 5.828 89.946 5.828L90.052 5.828Q90.122 5.828 90.138 5.890Q90.200 6.210 90.339 6.451Q90.477 6.691 90.710 6.832Q90.942 6.972 91.251 6.972Q91.489 6.972 91.698 6.912Q91.907 6.851 92.044 6.703Q92.181 6.554 92.181 6.308Q92.181 6.054 91.970 5.888Q91.759 5.722 91.489 5.668L90.868 5.554Q90.462 5.476 90.161 5.220Q89.860 4.964 89.860 4.589Q89.860 4.222 90.061 4Q90.263 3.777 90.587 3.679Q90.911 3.582 91.251 3.582Q91.716 3.582 92.013 3.789L92.235 3.605Q92.259 3.582 92.290 3.582L92.341 3.582Q92.372 3.582 92.399 3.609Q92.427 3.636 92.427 3.668L92.427 4.652Q92.427 4.683 92.401 4.712Q92.376 4.742 92.341 4.742L92.235 4.742Q92.200 4.742 92.173 4.714Q92.145 4.687 92.145 4.652Q92.145 4.253 91.893 4.033Q91.642 3.812 91.243 3.812Q90.888 3.812 90.604 3.935Q90.321 4.058 90.321 4.363Q90.321 4.582 90.522 4.714Q90.724 4.847 90.970 4.890L91.595 5.003Q92.024 5.093 92.333 5.390Q92.642 5.687 92.642 6.101Q92.642 6.671 92.243 6.949Q91.845 7.226 91.251 7.226Q90.700 7.226 90.349 6.890L90.052 7.203Q90.028 7.226 89.993 7.226L89.946 7.226Q89.923 7.226 89.892 7.195Q89.860 7.164 89.860 7.140M93.212 7.140L93.212 5.918Q93.212 5.890 93.243 5.859Q93.274 5.828 93.298 5.828L93.403 5.828Q93.474 5.828 93.489 5.890Q93.552 6.210 93.690 6.451Q93.829 6.691 94.061 6.832Q94.294 6.972 94.602 6.972Q94.841 6.972 95.050 6.912Q95.259 6.851 95.395 6.703Q95.532 6.554 95.532 6.308Q95.532 6.054 95.321 5.888Q95.110 5.722 94.841 5.668L94.220 5.554Q93.813 5.476 93.513 5.220Q93.212 4.964 93.212 4.589Q93.212 4.222 93.413 4Q93.614 3.777 93.938 3.679Q94.263 3.582 94.602 3.582Q95.067 3.582 95.364 3.789L95.587 3.605Q95.610 3.582 95.642 3.582L95.692 3.582Q95.724 3.582 95.751 3.609Q95.778 3.636 95.778 3.668L95.778 4.652Q95.778 4.683 95.753 4.712Q95.727 4.742 95.692 4.742L95.587 4.742Q95.552 4.742 95.524 4.714Q95.497 4.687 95.497 4.652Q95.497 4.253 95.245 4.033Q94.993 3.812 94.595 3.812Q94.239 3.812 93.956 3.935Q93.673 4.058 93.673 4.363Q93.673 4.582 93.874 4.714Q94.075 4.847 94.321 4.890L94.946 5.003Q95.376 5.093 95.684 5.390Q95.993 5.687 95.993 6.101Q95.993 6.671 95.595 6.949Q95.196 7.226 94.602 7.226Q94.052 7.226 93.700 6.890L93.403 7.203Q93.380 7.226 93.345 7.226L93.298 7.226Q93.274 7.226 93.243 7.195Q93.212 7.164 93.212 7.140\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-131.684 -70.53)\">\u003Cpath d=\"M101.166 7.148L99.416 7.148L99.416 6.851Q100.115 6.851 100.303 6.371L102.104 1.546Q102.158 1.437 102.272 1.437L102.342 1.437Q102.455 1.437 102.510 1.546L104.400 6.589Q104.479 6.757 104.682 6.804Q104.885 6.851 105.197 6.851L105.197 7.148L102.975 7.148L102.975 6.851Q103.615 6.851 103.615 6.636Q103.615 6.617 103.613 6.607Q103.611 6.597 103.607 6.589L103.143 5.355L100.998 5.355L100.615 6.371Q100.611 6.386 100.606 6.416Q100.600 6.445 100.600 6.468Q100.600 6.609 100.689 6.693Q100.779 6.777 100.912 6.814Q101.045 6.851 101.166 6.851L101.166 7.148M102.072 2.492L101.104 5.058L103.029 5.058\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-32.685h42.679v-17.072h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-125.853 -46.57)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M74.802 6.316Q74.802 5.832 75.204 5.537Q75.606 5.242 76.157 5.123Q76.708 5.003 77.200 5.003L77.200 4.714Q77.200 4.488 77.085 4.281Q76.970 4.074 76.772 3.955Q76.575 3.835 76.345 3.835Q75.919 3.835 75.634 3.941Q75.704 3.968 75.751 4.023Q75.798 4.078 75.823 4.148Q75.849 4.218 75.849 4.293Q75.849 4.398 75.798 4.490Q75.747 4.582 75.655 4.632Q75.563 4.683 75.458 4.683Q75.352 4.683 75.261 4.632Q75.169 4.582 75.118 4.490Q75.067 4.398 75.067 4.293Q75.067 3.875 75.456 3.728Q75.845 3.582 76.345 3.582Q76.677 3.582 77.030 3.712Q77.384 3.843 77.612 4.097Q77.841 4.351 77.841 4.699L77.841 6.500Q77.841 6.632 77.913 6.742Q77.985 6.851 78.114 6.851Q78.239 6.851 78.308 6.746Q78.376 6.640 78.376 6.500L78.376 5.988L78.657 5.988L78.657 6.500Q78.657 6.703 78.540 6.861Q78.423 7.019 78.241 7.103Q78.059 7.187 77.856 7.187Q77.626 7.187 77.474 7.015Q77.321 6.843 77.290 6.613Q77.130 6.894 76.821 7.060Q76.513 7.226 76.161 7.226Q75.649 7.226 75.226 7.003Q74.802 6.781 74.802 6.316M75.489 6.316Q75.489 6.601 75.716 6.787Q75.942 6.972 76.235 6.972Q76.481 6.972 76.706 6.855Q76.931 6.738 77.065 6.535Q77.200 6.332 77.200 6.078L77.200 5.246Q76.934 5.246 76.649 5.300Q76.364 5.355 76.093 5.484Q75.821 5.613 75.655 5.820Q75.489 6.027 75.489 6.316M78.950 7.757Q78.950 7.476 79.161 7.265Q79.372 7.054 79.657 6.964Q79.501 6.839 79.423 6.650Q79.345 6.460 79.345 6.261Q79.345 5.906 79.575 5.613Q79.208 5.273 79.208 4.804Q79.208 4.453 79.411 4.183Q79.614 3.914 79.934 3.767Q80.255 3.621 80.599 3.621Q81.118 3.621 81.489 3.902Q81.852 3.531 82.399 3.531Q82.579 3.531 82.706 3.658Q82.833 3.785 82.833 3.964Q82.833 4.070 82.755 4.148Q82.677 4.226 82.567 4.226Q82.458 4.226 82.382 4.150Q82.306 4.074 82.306 3.964Q82.306 3.863 82.345 3.812Q82.352 3.804 82.356 3.798Q82.360 3.793 82.360 3.789Q81.985 3.789 81.665 4.043Q81.985 4.382 81.985 4.804Q81.985 5.074 81.868 5.291Q81.751 5.507 81.546 5.666Q81.341 5.824 81.099 5.906Q80.856 5.988 80.599 5.988Q80.380 5.988 80.167 5.929Q79.954 5.871 79.759 5.750Q79.665 5.890 79.665 6.070Q79.665 6.277 79.802 6.429Q79.938 6.582 80.145 6.582L80.841 6.582Q81.329 6.582 81.741 6.666Q82.153 6.750 82.433 7.007Q82.712 7.265 82.712 7.757Q82.712 8.121 82.392 8.353Q82.071 8.585 81.630 8.687Q81.188 8.789 80.833 8.789Q80.477 8.789 80.034 8.687Q79.591 8.585 79.270 8.353Q78.950 8.121 78.950 7.757M79.454 7.757Q79.454 7.953 79.599 8.101Q79.743 8.250 79.956 8.339Q80.169 8.429 80.409 8.476Q80.649 8.523 80.833 8.523Q81.075 8.523 81.405 8.445Q81.735 8.367 81.972 8.193Q82.208 8.019 82.208 7.757Q82.208 7.351 81.798 7.242Q81.388 7.132 80.825 7.132L80.145 7.132Q79.876 7.132 79.665 7.310Q79.454 7.488 79.454 7.757M80.599 5.722Q81.321 5.722 81.321 4.804Q81.321 3.882 80.599 3.882Q79.872 3.882 79.872 4.804Q79.872 5.722 80.599 5.722M83.196 5.394Q83.196 4.914 83.429 4.498Q83.661 4.082 84.071 3.832Q84.481 3.582 84.958 3.582Q85.688 3.582 86.087 4.023Q86.485 4.464 86.485 5.195Q86.485 5.300 86.392 5.324L83.942 5.324L83.942 5.394Q83.942 5.804 84.063 6.160Q84.184 6.515 84.456 6.732Q84.727 6.949 85.157 6.949Q85.520 6.949 85.817 6.720Q86.114 6.492 86.216 6.140Q86.224 6.093 86.309 6.078L86.392 6.078Q86.485 6.105 86.485 6.187Q86.485 6.195 86.477 6.226Q86.415 6.453 86.276 6.636Q86.138 6.820 85.946 6.953Q85.755 7.085 85.536 7.156Q85.317 7.226 85.079 7.226Q84.708 7.226 84.370 7.089Q84.032 6.953 83.765 6.701Q83.497 6.449 83.347 6.109Q83.196 5.769 83.196 5.394M83.950 5.085L85.911 5.085Q85.911 4.781 85.809 4.490Q85.708 4.199 85.491 4.017Q85.274 3.835 84.958 3.835Q84.657 3.835 84.427 4.023Q84.196 4.210 84.073 4.502Q83.950 4.793 83.950 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-125.853 -46.57)\">\u003Cpath d=\"M91.702 7.316Q90.999 7.316 90.599 6.916Q90.198 6.515 90.054 5.906Q89.909 5.296 89.909 4.597Q89.909 4.074 89.979 3.611Q90.050 3.148 90.243 2.736Q90.436 2.324 90.794 2.076Q91.151 1.828 91.702 1.828Q92.253 1.828 92.610 2.076Q92.968 2.324 93.159 2.734Q93.351 3.144 93.421 3.613Q93.491 4.082 93.491 4.597Q93.491 5.296 93.349 5.904Q93.206 6.511 92.806 6.914Q92.405 7.316 91.702 7.316M91.702 7.058Q92.175 7.058 92.407 6.623Q92.640 6.187 92.694 5.648Q92.749 5.109 92.749 4.468Q92.749 3.472 92.565 2.779Q92.382 2.085 91.702 2.085Q91.335 2.085 91.114 2.324Q90.894 2.562 90.798 2.919Q90.702 3.277 90.677 3.648Q90.651 4.019 90.651 4.468Q90.651 5.109 90.706 5.648Q90.761 6.187 90.993 6.623Q91.226 7.058 91.702 7.058\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-12.768h42.679V-29.84h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-125.853 -26.653)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M74.802 6.316Q74.802 5.832 75.204 5.537Q75.606 5.242 76.157 5.123Q76.708 5.003 77.200 5.003L77.200 4.714Q77.200 4.488 77.085 4.281Q76.970 4.074 76.772 3.955Q76.575 3.835 76.345 3.835Q75.919 3.835 75.634 3.941Q75.704 3.968 75.751 4.023Q75.798 4.078 75.823 4.148Q75.849 4.218 75.849 4.293Q75.849 4.398 75.798 4.490Q75.747 4.582 75.655 4.632Q75.563 4.683 75.458 4.683Q75.352 4.683 75.261 4.632Q75.169 4.582 75.118 4.490Q75.067 4.398 75.067 4.293Q75.067 3.875 75.456 3.728Q75.845 3.582 76.345 3.582Q76.677 3.582 77.030 3.712Q77.384 3.843 77.612 4.097Q77.841 4.351 77.841 4.699L77.841 6.500Q77.841 6.632 77.913 6.742Q77.985 6.851 78.114 6.851Q78.239 6.851 78.308 6.746Q78.376 6.640 78.376 6.500L78.376 5.988L78.657 5.988L78.657 6.500Q78.657 6.703 78.540 6.861Q78.423 7.019 78.241 7.103Q78.059 7.187 77.856 7.187Q77.626 7.187 77.474 7.015Q77.321 6.843 77.290 6.613Q77.130 6.894 76.821 7.060Q76.513 7.226 76.161 7.226Q75.649 7.226 75.226 7.003Q74.802 6.781 74.802 6.316M75.489 6.316Q75.489 6.601 75.716 6.787Q75.942 6.972 76.235 6.972Q76.481 6.972 76.706 6.855Q76.931 6.738 77.065 6.535Q77.200 6.332 77.200 6.078L77.200 5.246Q76.934 5.246 76.649 5.300Q76.364 5.355 76.093 5.484Q75.821 5.613 75.655 5.820Q75.489 6.027 75.489 6.316M78.950 7.757Q78.950 7.476 79.161 7.265Q79.372 7.054 79.657 6.964Q79.501 6.839 79.423 6.650Q79.345 6.460 79.345 6.261Q79.345 5.906 79.575 5.613Q79.208 5.273 79.208 4.804Q79.208 4.453 79.411 4.183Q79.614 3.914 79.934 3.767Q80.255 3.621 80.599 3.621Q81.118 3.621 81.489 3.902Q81.852 3.531 82.399 3.531Q82.579 3.531 82.706 3.658Q82.833 3.785 82.833 3.964Q82.833 4.070 82.755 4.148Q82.677 4.226 82.567 4.226Q82.458 4.226 82.382 4.150Q82.306 4.074 82.306 3.964Q82.306 3.863 82.345 3.812Q82.352 3.804 82.356 3.798Q82.360 3.793 82.360 3.789Q81.985 3.789 81.665 4.043Q81.985 4.382 81.985 4.804Q81.985 5.074 81.868 5.291Q81.751 5.507 81.546 5.666Q81.341 5.824 81.099 5.906Q80.856 5.988 80.599 5.988Q80.380 5.988 80.167 5.929Q79.954 5.871 79.759 5.750Q79.665 5.890 79.665 6.070Q79.665 6.277 79.802 6.429Q79.938 6.582 80.145 6.582L80.841 6.582Q81.329 6.582 81.741 6.666Q82.153 6.750 82.433 7.007Q82.712 7.265 82.712 7.757Q82.712 8.121 82.392 8.353Q82.071 8.585 81.630 8.687Q81.188 8.789 80.833 8.789Q80.477 8.789 80.034 8.687Q79.591 8.585 79.270 8.353Q78.950 8.121 78.950 7.757M79.454 7.757Q79.454 7.953 79.599 8.101Q79.743 8.250 79.956 8.339Q80.169 8.429 80.409 8.476Q80.649 8.523 80.833 8.523Q81.075 8.523 81.405 8.445Q81.735 8.367 81.972 8.193Q82.208 8.019 82.208 7.757Q82.208 7.351 81.798 7.242Q81.388 7.132 80.825 7.132L80.145 7.132Q79.876 7.132 79.665 7.310Q79.454 7.488 79.454 7.757M80.599 5.722Q81.321 5.722 81.321 4.804Q81.321 3.882 80.599 3.882Q79.872 3.882 79.872 4.804Q79.872 5.722 80.599 5.722M83.196 5.394Q83.196 4.914 83.429 4.498Q83.661 4.082 84.071 3.832Q84.481 3.582 84.958 3.582Q85.688 3.582 86.087 4.023Q86.485 4.464 86.485 5.195Q86.485 5.300 86.392 5.324L83.942 5.324L83.942 5.394Q83.942 5.804 84.063 6.160Q84.184 6.515 84.456 6.732Q84.727 6.949 85.157 6.949Q85.520 6.949 85.817 6.720Q86.114 6.492 86.216 6.140Q86.224 6.093 86.309 6.078L86.392 6.078Q86.485 6.105 86.485 6.187Q86.485 6.195 86.477 6.226Q86.415 6.453 86.276 6.636Q86.138 6.820 85.946 6.953Q85.755 7.085 85.536 7.156Q85.317 7.226 85.079 7.226Q84.708 7.226 84.370 7.089Q84.032 6.953 83.765 6.701Q83.497 6.449 83.347 6.109Q83.196 5.769 83.196 5.394M83.950 5.085L85.911 5.085Q85.911 4.781 85.809 4.490Q85.708 4.199 85.491 4.017Q85.274 3.835 84.958 3.835Q84.657 3.835 84.427 4.023Q84.196 4.210 84.073 4.502Q83.950 4.793 83.950 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-125.853 -26.653)\">\u003Cpath d=\"M93.175 7.148L90.382 7.148L90.382 6.851Q91.444 6.851 91.444 6.589L91.444 2.421Q91.015 2.636 90.335 2.636L90.335 2.339Q91.354 2.339 91.870 1.828L92.015 1.828Q92.089 1.847 92.108 1.925L92.108 6.589Q92.108 6.851 93.175 6.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-131.51 9.138)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M76.712 7.148L74.731 7.148L74.731 6.851Q75.001 6.851 75.169 6.806Q75.337 6.761 75.337 6.589L75.337 4.453Q75.337 4.238 75.274 4.142Q75.212 4.046 75.095 4.025Q74.977 4.003 74.731 4.003L74.731 3.707L75.899 3.621L75.899 4.406Q75.977 4.195 76.130 4.009Q76.282 3.824 76.481 3.722Q76.681 3.621 76.907 3.621Q77.153 3.621 77.345 3.765Q77.536 3.910 77.536 4.140Q77.536 4.296 77.431 4.406Q77.325 4.515 77.169 4.515Q77.013 4.515 76.903 4.406Q76.794 4.296 76.794 4.140Q76.794 3.980 76.899 3.875Q76.575 3.875 76.360 4.103Q76.145 4.332 76.050 4.671Q75.954 5.011 75.954 5.316L75.954 6.589Q75.954 6.757 76.181 6.804Q76.407 6.851 76.712 6.851L76.712 7.148M78.017 5.453Q78.017 4.949 78.272 4.517Q78.528 4.085 78.964 3.834Q79.399 3.582 79.899 3.582Q80.286 3.582 80.628 3.726Q80.970 3.871 81.231 4.132Q81.493 4.394 81.636 4.730Q81.778 5.066 81.778 5.453Q81.778 5.945 81.515 6.355Q81.251 6.765 80.821 6.996Q80.392 7.226 79.899 7.226Q79.407 7.226 78.974 6.994Q78.540 6.761 78.278 6.353Q78.017 5.945 78.017 5.453M79.899 6.949Q80.356 6.949 80.608 6.726Q80.860 6.503 80.948 6.152Q81.036 5.800 81.036 5.355Q81.036 4.925 80.942 4.587Q80.849 4.250 80.595 4.043Q80.341 3.835 79.899 3.835Q79.251 3.835 79.007 4.252Q78.763 4.668 78.763 5.355Q78.763 5.800 78.851 6.152Q78.938 6.503 79.190 6.726Q79.442 6.949 79.899 6.949M82.306 5.421Q82.306 4.925 82.556 4.500Q82.806 4.074 83.226 3.828Q83.645 3.582 84.145 3.582Q84.684 3.582 85.075 3.707Q85.466 3.832 85.466 4.246Q85.466 4.351 85.415 4.443Q85.364 4.535 85.272 4.585Q85.181 4.636 85.071 4.636Q84.966 4.636 84.874 4.585Q84.782 4.535 84.731 4.443Q84.681 4.351 84.681 4.246Q84.681 4.023 84.849 3.918Q84.626 3.859 84.153 3.859Q83.856 3.859 83.642 3.998Q83.427 4.136 83.296 4.367Q83.165 4.597 83.106 4.867Q83.048 5.136 83.048 5.421Q83.048 5.816 83.181 6.166Q83.313 6.515 83.585 6.732Q83.856 6.949 84.255 6.949Q84.630 6.949 84.905 6.732Q85.181 6.515 85.282 6.156Q85.298 6.093 85.360 6.093L85.466 6.093Q85.501 6.093 85.526 6.121Q85.552 6.148 85.552 6.187L85.552 6.210Q85.419 6.691 85.034 6.959Q84.649 7.226 84.145 7.226Q83.782 7.226 83.448 7.089Q83.114 6.953 82.854 6.703Q82.595 6.453 82.450 6.117Q82.306 5.781 82.306 5.421M86.040 5.394Q86.040 4.914 86.272 4.498Q86.505 4.082 86.915 3.832Q87.325 3.582 87.802 3.582Q88.532 3.582 88.931 4.023Q89.329 4.464 89.329 5.195Q89.329 5.300 89.235 5.324L86.786 5.324L86.786 5.394Q86.786 5.804 86.907 6.160Q87.028 6.515 87.300 6.732Q87.571 6.949 88.001 6.949Q88.364 6.949 88.661 6.720Q88.958 6.492 89.059 6.140Q89.067 6.093 89.153 6.078L89.235 6.078Q89.329 6.105 89.329 6.187Q89.329 6.195 89.321 6.226Q89.259 6.453 89.120 6.636Q88.981 6.820 88.790 6.953Q88.599 7.085 88.380 7.156Q88.161 7.226 87.923 7.226Q87.552 7.226 87.214 7.089Q86.876 6.953 86.608 6.701Q86.341 6.449 86.190 6.109Q86.040 5.769 86.040 5.394M86.794 5.085L88.755 5.085Q88.755 4.781 88.653 4.490Q88.552 4.199 88.335 4.017Q88.118 3.835 87.802 3.835Q87.501 3.835 87.270 4.023Q87.040 4.210 86.917 4.502Q86.794 4.793 86.794 5.085M89.860 7.140L89.860 5.918Q89.860 5.890 89.892 5.859Q89.923 5.828 89.946 5.828L90.052 5.828Q90.122 5.828 90.138 5.890Q90.200 6.210 90.339 6.451Q90.477 6.691 90.710 6.832Q90.942 6.972 91.251 6.972Q91.489 6.972 91.698 6.912Q91.907 6.851 92.044 6.703Q92.181 6.554 92.181 6.308Q92.181 6.054 91.970 5.888Q91.759 5.722 91.489 5.668L90.868 5.554Q90.462 5.476 90.161 5.220Q89.860 4.964 89.860 4.589Q89.860 4.222 90.061 4Q90.263 3.777 90.587 3.679Q90.911 3.582 91.251 3.582Q91.716 3.582 92.013 3.789L92.235 3.605Q92.259 3.582 92.290 3.582L92.341 3.582Q92.372 3.582 92.399 3.609Q92.427 3.636 92.427 3.668L92.427 4.652Q92.427 4.683 92.401 4.712Q92.376 4.742 92.341 4.742L92.235 4.742Q92.200 4.742 92.173 4.714Q92.145 4.687 92.145 4.652Q92.145 4.253 91.893 4.033Q91.642 3.812 91.243 3.812Q90.888 3.812 90.604 3.935Q90.321 4.058 90.321 4.363Q90.321 4.582 90.522 4.714Q90.724 4.847 90.970 4.890L91.595 5.003Q92.024 5.093 92.333 5.390Q92.642 5.687 92.642 6.101Q92.642 6.671 92.243 6.949Q91.845 7.226 91.251 7.226Q90.700 7.226 90.349 6.890L90.052 7.203Q90.028 7.226 89.993 7.226L89.946 7.226Q89.923 7.226 89.892 7.195Q89.860 7.164 89.860 7.140M93.212 7.140L93.212 5.918Q93.212 5.890 93.243 5.859Q93.274 5.828 93.298 5.828L93.403 5.828Q93.474 5.828 93.489 5.890Q93.552 6.210 93.690 6.451Q93.829 6.691 94.061 6.832Q94.294 6.972 94.602 6.972Q94.841 6.972 95.050 6.912Q95.259 6.851 95.395 6.703Q95.532 6.554 95.532 6.308Q95.532 6.054 95.321 5.888Q95.110 5.722 94.841 5.668L94.220 5.554Q93.813 5.476 93.513 5.220Q93.212 4.964 93.212 4.589Q93.212 4.222 93.413 4Q93.614 3.777 93.938 3.679Q94.263 3.582 94.602 3.582Q95.067 3.582 95.364 3.789L95.587 3.605Q95.610 3.582 95.642 3.582L95.692 3.582Q95.724 3.582 95.751 3.609Q95.778 3.636 95.778 3.668L95.778 4.652Q95.778 4.683 95.753 4.712Q95.727 4.742 95.692 4.742L95.587 4.742Q95.552 4.742 95.524 4.714Q95.497 4.687 95.497 4.652Q95.497 4.253 95.245 4.033Q94.993 3.812 94.595 3.812Q94.239 3.812 93.956 3.935Q93.673 4.058 93.673 4.363Q93.673 4.582 93.874 4.714Q94.075 4.847 94.321 4.890L94.946 5.003Q95.376 5.093 95.684 5.390Q95.993 5.687 95.993 6.101Q95.993 6.671 95.595 6.949Q95.196 7.226 94.602 7.226Q94.052 7.226 93.700 6.890L93.403 7.203Q93.380 7.226 93.345 7.226L93.298 7.226Q93.274 7.226 93.243 7.195Q93.212 7.164 93.212 7.140\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-131.51 9.138)\">\u003Cpath d=\"M102.775 7.148L99.494 7.148L99.494 6.851Q99.818 6.851 100.061 6.804Q100.303 6.757 100.303 6.589L100.303 2.246Q100.303 2.074 100.061 2.027Q99.818 1.980 99.494 1.980L99.494 1.683L102.541 1.683Q102.967 1.683 103.400 1.837Q103.834 1.992 104.129 2.300Q104.424 2.609 104.424 3.043Q104.424 3.296 104.299 3.513Q104.174 3.730 103.973 3.886Q103.772 4.043 103.539 4.142Q103.307 4.242 103.049 4.293Q103.424 4.328 103.803 4.505Q104.182 4.683 104.422 4.982Q104.662 5.281 104.662 5.675Q104.662 6.128 104.379 6.462Q104.096 6.796 103.660 6.972Q103.225 7.148 102.775 7.148M101.014 4.437L101.014 6.589Q101.014 6.761 101.106 6.806Q101.197 6.851 101.416 6.851L102.541 6.851Q102.779 6.851 103.014 6.763Q103.248 6.675 103.434 6.515Q103.619 6.355 103.721 6.142Q103.822 5.929 103.822 5.675Q103.822 5.355 103.670 5.070Q103.518 4.785 103.248 4.611Q102.979 4.437 102.662 4.437L101.014 4.437M101.014 2.246L101.014 4.179L102.303 4.179Q102.545 4.179 102.783 4.097Q103.022 4.015 103.205 3.869Q103.389 3.722 103.502 3.505Q103.615 3.289 103.615 3.043Q103.615 2.832 103.529 2.630Q103.443 2.429 103.297 2.287Q103.150 2.144 102.955 2.062Q102.760 1.980 102.541 1.980L101.416 1.980Q101.197 1.980 101.106 2.023Q101.014 2.066 101.014 2.246\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403 46.982h42.679V29.911h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-125.853 33.098)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M74.802 6.316Q74.802 5.832 75.204 5.537Q75.606 5.242 76.157 5.123Q76.708 5.003 77.200 5.003L77.200 4.714Q77.200 4.488 77.085 4.281Q76.970 4.074 76.772 3.955Q76.575 3.835 76.345 3.835Q75.919 3.835 75.634 3.941Q75.704 3.968 75.751 4.023Q75.798 4.078 75.823 4.148Q75.849 4.218 75.849 4.293Q75.849 4.398 75.798 4.490Q75.747 4.582 75.655 4.632Q75.563 4.683 75.458 4.683Q75.352 4.683 75.261 4.632Q75.169 4.582 75.118 4.490Q75.067 4.398 75.067 4.293Q75.067 3.875 75.456 3.728Q75.845 3.582 76.345 3.582Q76.677 3.582 77.030 3.712Q77.384 3.843 77.612 4.097Q77.841 4.351 77.841 4.699L77.841 6.500Q77.841 6.632 77.913 6.742Q77.985 6.851 78.114 6.851Q78.239 6.851 78.308 6.746Q78.376 6.640 78.376 6.500L78.376 5.988L78.657 5.988L78.657 6.500Q78.657 6.703 78.540 6.861Q78.423 7.019 78.241 7.103Q78.059 7.187 77.856 7.187Q77.626 7.187 77.474 7.015Q77.321 6.843 77.290 6.613Q77.130 6.894 76.821 7.060Q76.513 7.226 76.161 7.226Q75.649 7.226 75.226 7.003Q74.802 6.781 74.802 6.316M75.489 6.316Q75.489 6.601 75.716 6.787Q75.942 6.972 76.235 6.972Q76.481 6.972 76.706 6.855Q76.931 6.738 77.065 6.535Q77.200 6.332 77.200 6.078L77.200 5.246Q76.934 5.246 76.649 5.300Q76.364 5.355 76.093 5.484Q75.821 5.613 75.655 5.820Q75.489 6.027 75.489 6.316M78.950 7.757Q78.950 7.476 79.161 7.265Q79.372 7.054 79.657 6.964Q79.501 6.839 79.423 6.650Q79.345 6.460 79.345 6.261Q79.345 5.906 79.575 5.613Q79.208 5.273 79.208 4.804Q79.208 4.453 79.411 4.183Q79.614 3.914 79.934 3.767Q80.255 3.621 80.599 3.621Q81.118 3.621 81.489 3.902Q81.852 3.531 82.399 3.531Q82.579 3.531 82.706 3.658Q82.833 3.785 82.833 3.964Q82.833 4.070 82.755 4.148Q82.677 4.226 82.567 4.226Q82.458 4.226 82.382 4.150Q82.306 4.074 82.306 3.964Q82.306 3.863 82.345 3.812Q82.352 3.804 82.356 3.798Q82.360 3.793 82.360 3.789Q81.985 3.789 81.665 4.043Q81.985 4.382 81.985 4.804Q81.985 5.074 81.868 5.291Q81.751 5.507 81.546 5.666Q81.341 5.824 81.099 5.906Q80.856 5.988 80.599 5.988Q80.380 5.988 80.167 5.929Q79.954 5.871 79.759 5.750Q79.665 5.890 79.665 6.070Q79.665 6.277 79.802 6.429Q79.938 6.582 80.145 6.582L80.841 6.582Q81.329 6.582 81.741 6.666Q82.153 6.750 82.433 7.007Q82.712 7.265 82.712 7.757Q82.712 8.121 82.392 8.353Q82.071 8.585 81.630 8.687Q81.188 8.789 80.833 8.789Q80.477 8.789 80.034 8.687Q79.591 8.585 79.270 8.353Q78.950 8.121 78.950 7.757M79.454 7.757Q79.454 7.953 79.599 8.101Q79.743 8.250 79.956 8.339Q80.169 8.429 80.409 8.476Q80.649 8.523 80.833 8.523Q81.075 8.523 81.405 8.445Q81.735 8.367 81.972 8.193Q82.208 8.019 82.208 7.757Q82.208 7.351 81.798 7.242Q81.388 7.132 80.825 7.132L80.145 7.132Q79.876 7.132 79.665 7.310Q79.454 7.488 79.454 7.757M80.599 5.722Q81.321 5.722 81.321 4.804Q81.321 3.882 80.599 3.882Q79.872 3.882 79.872 4.804Q79.872 5.722 80.599 5.722M83.196 5.394Q83.196 4.914 83.429 4.498Q83.661 4.082 84.071 3.832Q84.481 3.582 84.958 3.582Q85.688 3.582 86.087 4.023Q86.485 4.464 86.485 5.195Q86.485 5.300 86.392 5.324L83.942 5.324L83.942 5.394Q83.942 5.804 84.063 6.160Q84.184 6.515 84.456 6.732Q84.727 6.949 85.157 6.949Q85.520 6.949 85.817 6.720Q86.114 6.492 86.216 6.140Q86.224 6.093 86.309 6.078L86.392 6.078Q86.485 6.105 86.485 6.187Q86.485 6.195 86.477 6.226Q86.415 6.453 86.276 6.636Q86.138 6.820 85.946 6.953Q85.755 7.085 85.536 7.156Q85.317 7.226 85.079 7.226Q84.708 7.226 84.370 7.089Q84.032 6.953 83.765 6.701Q83.497 6.449 83.347 6.109Q83.196 5.769 83.196 5.394M83.950 5.085L85.911 5.085Q85.911 4.781 85.809 4.490Q85.708 4.199 85.491 4.017Q85.274 3.835 84.958 3.835Q84.657 3.835 84.427 4.023Q84.196 4.210 84.073 4.502Q83.950 4.793 83.950 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-125.853 33.098)\">\u003Cpath d=\"M91.702 7.316Q90.999 7.316 90.599 6.916Q90.198 6.515 90.054 5.906Q89.909 5.296 89.909 4.597Q89.909 4.074 89.979 3.611Q90.050 3.148 90.243 2.736Q90.436 2.324 90.794 2.076Q91.151 1.828 91.702 1.828Q92.253 1.828 92.610 2.076Q92.968 2.324 93.159 2.734Q93.351 3.144 93.421 3.613Q93.491 4.082 93.491 4.597Q93.491 5.296 93.349 5.904Q93.206 6.511 92.806 6.914Q92.405 7.316 91.702 7.316M91.702 7.058Q92.175 7.058 92.407 6.623Q92.640 6.187 92.694 5.648Q92.749 5.109 92.749 4.468Q92.749 3.472 92.565 2.779Q92.382 2.085 91.702 2.085Q91.335 2.085 91.114 2.324Q90.894 2.562 90.798 2.919Q90.702 3.277 90.677 3.648Q90.651 4.019 90.651 4.468Q90.651 5.109 90.706 5.648Q90.761 6.187 90.993 6.623Q91.226 7.058 91.702 7.058\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403 66.9h42.679V49.827h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-125.853 53.015)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M74.802 6.316Q74.802 5.832 75.204 5.537Q75.606 5.242 76.157 5.123Q76.708 5.003 77.200 5.003L77.200 4.714Q77.200 4.488 77.085 4.281Q76.970 4.074 76.772 3.955Q76.575 3.835 76.345 3.835Q75.919 3.835 75.634 3.941Q75.704 3.968 75.751 4.023Q75.798 4.078 75.823 4.148Q75.849 4.218 75.849 4.293Q75.849 4.398 75.798 4.490Q75.747 4.582 75.655 4.632Q75.563 4.683 75.458 4.683Q75.352 4.683 75.261 4.632Q75.169 4.582 75.118 4.490Q75.067 4.398 75.067 4.293Q75.067 3.875 75.456 3.728Q75.845 3.582 76.345 3.582Q76.677 3.582 77.030 3.712Q77.384 3.843 77.612 4.097Q77.841 4.351 77.841 4.699L77.841 6.500Q77.841 6.632 77.913 6.742Q77.985 6.851 78.114 6.851Q78.239 6.851 78.308 6.746Q78.376 6.640 78.376 6.500L78.376 5.988L78.657 5.988L78.657 6.500Q78.657 6.703 78.540 6.861Q78.423 7.019 78.241 7.103Q78.059 7.187 77.856 7.187Q77.626 7.187 77.474 7.015Q77.321 6.843 77.290 6.613Q77.130 6.894 76.821 7.060Q76.513 7.226 76.161 7.226Q75.649 7.226 75.226 7.003Q74.802 6.781 74.802 6.316M75.489 6.316Q75.489 6.601 75.716 6.787Q75.942 6.972 76.235 6.972Q76.481 6.972 76.706 6.855Q76.931 6.738 77.065 6.535Q77.200 6.332 77.200 6.078L77.200 5.246Q76.934 5.246 76.649 5.300Q76.364 5.355 76.093 5.484Q75.821 5.613 75.655 5.820Q75.489 6.027 75.489 6.316M78.950 7.757Q78.950 7.476 79.161 7.265Q79.372 7.054 79.657 6.964Q79.501 6.839 79.423 6.650Q79.345 6.460 79.345 6.261Q79.345 5.906 79.575 5.613Q79.208 5.273 79.208 4.804Q79.208 4.453 79.411 4.183Q79.614 3.914 79.934 3.767Q80.255 3.621 80.599 3.621Q81.118 3.621 81.489 3.902Q81.852 3.531 82.399 3.531Q82.579 3.531 82.706 3.658Q82.833 3.785 82.833 3.964Q82.833 4.070 82.755 4.148Q82.677 4.226 82.567 4.226Q82.458 4.226 82.382 4.150Q82.306 4.074 82.306 3.964Q82.306 3.863 82.345 3.812Q82.352 3.804 82.356 3.798Q82.360 3.793 82.360 3.789Q81.985 3.789 81.665 4.043Q81.985 4.382 81.985 4.804Q81.985 5.074 81.868 5.291Q81.751 5.507 81.546 5.666Q81.341 5.824 81.099 5.906Q80.856 5.988 80.599 5.988Q80.380 5.988 80.167 5.929Q79.954 5.871 79.759 5.750Q79.665 5.890 79.665 6.070Q79.665 6.277 79.802 6.429Q79.938 6.582 80.145 6.582L80.841 6.582Q81.329 6.582 81.741 6.666Q82.153 6.750 82.433 7.007Q82.712 7.265 82.712 7.757Q82.712 8.121 82.392 8.353Q82.071 8.585 81.630 8.687Q81.188 8.789 80.833 8.789Q80.477 8.789 80.034 8.687Q79.591 8.585 79.270 8.353Q78.950 8.121 78.950 7.757M79.454 7.757Q79.454 7.953 79.599 8.101Q79.743 8.250 79.956 8.339Q80.169 8.429 80.409 8.476Q80.649 8.523 80.833 8.523Q81.075 8.523 81.405 8.445Q81.735 8.367 81.972 8.193Q82.208 8.019 82.208 7.757Q82.208 7.351 81.798 7.242Q81.388 7.132 80.825 7.132L80.145 7.132Q79.876 7.132 79.665 7.310Q79.454 7.488 79.454 7.757M80.599 5.722Q81.321 5.722 81.321 4.804Q81.321 3.882 80.599 3.882Q79.872 3.882 79.872 4.804Q79.872 5.722 80.599 5.722M83.196 5.394Q83.196 4.914 83.429 4.498Q83.661 4.082 84.071 3.832Q84.481 3.582 84.958 3.582Q85.688 3.582 86.087 4.023Q86.485 4.464 86.485 5.195Q86.485 5.300 86.392 5.324L83.942 5.324L83.942 5.394Q83.942 5.804 84.063 6.160Q84.184 6.515 84.456 6.732Q84.727 6.949 85.157 6.949Q85.520 6.949 85.817 6.720Q86.114 6.492 86.216 6.140Q86.224 6.093 86.309 6.078L86.392 6.078Q86.485 6.105 86.485 6.187Q86.485 6.195 86.477 6.226Q86.415 6.453 86.276 6.636Q86.138 6.820 85.946 6.953Q85.755 7.085 85.536 7.156Q85.317 7.226 85.079 7.226Q84.708 7.226 84.370 7.089Q84.032 6.953 83.765 6.701Q83.497 6.449 83.347 6.109Q83.196 5.769 83.196 5.394M83.950 5.085L85.911 5.085Q85.911 4.781 85.809 4.490Q85.708 4.199 85.491 4.017Q85.274 3.835 84.958 3.835Q84.657 3.835 84.427 4.023Q84.196 4.210 84.073 4.502Q83.950 4.793 83.950 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-125.853 53.015)\">\u003Cpath d=\"M93.175 7.148L90.382 7.148L90.382 6.851Q91.444 6.851 91.444 6.589L91.444 2.421Q91.015 2.636 90.335 2.636L90.335 2.339Q91.354 2.339 91.870 1.828L92.015 1.828Q92.089 1.847 92.108 1.925L92.108 6.589Q92.108 6.851 93.175 6.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(36.974 -70.53)\">\u003Cpath d=\"M71.868 8.699L70.013 8.699L70.013 8.406Q70.282 8.406 70.450 8.361Q70.618 8.316 70.618 8.140L70.618 4.316Q70.618 4.109 70.462 4.056Q70.306 4.003 70.013 4.003L70.013 3.707L71.235 3.621L71.235 4.085Q71.466 3.863 71.780 3.742Q72.095 3.621 72.434 3.621Q72.907 3.621 73.311 3.867Q73.716 4.113 73.948 4.529Q74.181 4.945 74.181 5.421Q74.181 5.796 74.032 6.125Q73.884 6.453 73.614 6.705Q73.345 6.957 73.001 7.091Q72.657 7.226 72.298 7.226Q72.009 7.226 71.737 7.105Q71.466 6.984 71.259 6.773L71.259 8.140Q71.259 8.316 71.427 8.361Q71.595 8.406 71.868 8.406L71.868 8.699M71.259 4.484L71.259 6.324Q71.411 6.613 71.673 6.793Q71.934 6.972 72.243 6.972Q72.528 6.972 72.751 6.834Q72.974 6.695 73.126 6.464Q73.278 6.234 73.356 5.962Q73.434 5.691 73.434 5.421Q73.434 5.089 73.309 4.732Q73.184 4.375 72.936 4.138Q72.688 3.902 72.341 3.902Q72.017 3.902 71.722 4.058Q71.427 4.214 71.259 4.484M76.634 7.148L74.778 7.148L74.778 6.851Q75.052 6.851 75.220 6.804Q75.388 6.757 75.388 6.589L75.388 2.429Q75.388 2.214 75.325 2.119Q75.263 2.023 75.143 2.002Q75.024 1.980 74.778 1.980L74.778 1.683L76.001 1.597L76.001 4.300Q76.126 4.089 76.313 3.939Q76.501 3.789 76.727 3.705Q76.954 3.621 77.200 3.621Q78.368 3.621 78.368 4.699L78.368 6.589Q78.368 6.757 78.538 6.804Q78.708 6.851 78.977 6.851L78.977 7.148L77.122 7.148L77.122 6.851Q77.395 6.851 77.563 6.804Q77.731 6.757 77.731 6.589L77.731 4.714Q77.731 4.332 77.610 4.103Q77.489 3.875 77.138 3.875Q76.825 3.875 76.571 4.037Q76.317 4.199 76.171 4.468Q76.024 4.738 76.024 5.035L76.024 6.589Q76.024 6.757 76.194 6.804Q76.364 6.851 76.634 6.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(36.974 -70.53)\">\u003Cpath d=\"M79.612 8.445Q79.726 8.523 79.901 8.523Q80.190 8.523 80.411 8.310Q80.632 8.097 80.757 7.796L81.046 7.148L79.772 4.261Q79.690 4.085 79.546 4.041Q79.401 3.996 79.132 3.996L79.132 3.699L80.851 3.699L80.851 3.996Q80.429 3.996 80.429 4.179Q80.429 4.191 80.444 4.261L81.382 6.386L82.214 4.476Q82.253 4.386 82.253 4.308Q82.253 4.168 82.151 4.082Q82.050 3.996 81.909 3.996L81.909 3.699L83.261 3.699L83.261 3.996Q83.007 3.996 82.813 4.121Q82.620 4.246 82.515 4.476L81.069 7.796Q80.956 8.050 80.790 8.273Q80.624 8.496 80.395 8.638Q80.167 8.781 79.901 8.781Q79.604 8.781 79.364 8.589Q79.124 8.398 79.124 8.109Q79.124 7.953 79.229 7.851Q79.335 7.750 79.483 7.750Q79.589 7.750 79.669 7.796Q79.749 7.843 79.796 7.921Q79.843 8 79.843 8.109Q79.843 8.230 79.782 8.318Q79.722 8.406 79.612 8.445M83.718 7.140L83.718 5.918Q83.718 5.890 83.749 5.859Q83.780 5.828 83.804 5.828L83.909 5.828Q83.979 5.828 83.995 5.890Q84.058 6.210 84.196 6.451Q84.335 6.691 84.567 6.832Q84.800 6.972 85.108 6.972Q85.347 6.972 85.556 6.912Q85.765 6.851 85.901 6.703Q86.038 6.554 86.038 6.308Q86.038 6.054 85.827 5.888Q85.616 5.722 85.347 5.668L84.726 5.554Q84.319 5.476 84.019 5.220Q83.718 4.964 83.718 4.589Q83.718 4.222 83.919 4Q84.120 3.777 84.444 3.679Q84.769 3.582 85.108 3.582Q85.573 3.582 85.870 3.789L86.093 3.605Q86.116 3.582 86.147 3.582L86.198 3.582Q86.229 3.582 86.257 3.609Q86.284 3.636 86.284 3.668L86.284 4.652Q86.284 4.683 86.259 4.712Q86.233 4.742 86.198 4.742L86.093 4.742Q86.058 4.742 86.030 4.714Q86.003 4.687 86.003 4.652Q86.003 4.253 85.751 4.033Q85.499 3.812 85.101 3.812Q84.745 3.812 84.462 3.935Q84.179 4.058 84.179 4.363Q84.179 4.582 84.380 4.714Q84.581 4.847 84.827 4.890L85.452 5.003Q85.882 5.093 86.190 5.390Q86.499 5.687 86.499 6.101Q86.499 6.671 86.101 6.949Q85.702 7.226 85.108 7.226Q84.558 7.226 84.206 6.890L83.909 7.203Q83.886 7.226 83.851 7.226L83.804 7.226Q83.780 7.226 83.749 7.195Q83.718 7.164 83.718 7.140M88.886 7.148L87.108 7.148L87.108 6.851Q87.382 6.851 87.550 6.804Q87.718 6.757 87.718 6.589L87.718 4.453Q87.718 4.238 87.661 4.142Q87.604 4.046 87.491 4.025Q87.378 4.003 87.132 4.003L87.132 3.707L88.331 3.621L88.331 6.589Q88.331 6.757 88.477 6.804Q88.624 6.851 88.886 6.851L88.886 7.148M87.444 2.226Q87.444 2.035 87.579 1.904Q87.714 1.773 87.909 1.773Q88.030 1.773 88.134 1.835Q88.237 1.898 88.300 2.002Q88.362 2.105 88.362 2.226Q88.362 2.421 88.231 2.556Q88.101 2.691 87.909 2.691Q87.710 2.691 87.577 2.558Q87.444 2.425 87.444 2.226M89.429 5.421Q89.429 4.925 89.679 4.500Q89.929 4.074 90.349 3.828Q90.769 3.582 91.269 3.582Q91.808 3.582 92.198 3.707Q92.589 3.832 92.589 4.246Q92.589 4.351 92.538 4.443Q92.487 4.535 92.395 4.585Q92.304 4.636 92.194 4.636Q92.089 4.636 91.997 4.585Q91.905 4.535 91.854 4.443Q91.804 4.351 91.804 4.246Q91.804 4.023 91.972 3.918Q91.749 3.859 91.276 3.859Q90.979 3.859 90.765 3.998Q90.550 4.136 90.419 4.367Q90.288 4.597 90.229 4.867Q90.171 5.136 90.171 5.421Q90.171 5.816 90.304 6.166Q90.436 6.515 90.708 6.732Q90.979 6.949 91.378 6.949Q91.753 6.949 92.028 6.732Q92.304 6.515 92.405 6.156Q92.421 6.093 92.483 6.093L92.589 6.093Q92.624 6.093 92.649 6.121Q92.675 6.148 92.675 6.187L92.675 6.210Q92.542 6.691 92.157 6.959Q91.772 7.226 91.269 7.226Q90.905 7.226 90.571 7.089Q90.237 6.953 89.977 6.703Q89.718 6.453 89.573 6.117Q89.429 5.781 89.429 5.421M93.261 6.316Q93.261 5.832 93.663 5.537Q94.065 5.242 94.616 5.123Q95.167 5.003 95.659 5.003L95.659 4.714Q95.659 4.488 95.544 4.281Q95.429 4.074 95.231 3.955Q95.034 3.835 94.804 3.835Q94.378 3.835 94.093 3.941Q94.163 3.968 94.210 4.023Q94.257 4.078 94.282 4.148Q94.308 4.218 94.308 4.293Q94.308 4.398 94.257 4.490Q94.206 4.582 94.114 4.632Q94.022 4.683 93.917 4.683Q93.811 4.683 93.720 4.632Q93.628 4.582 93.577 4.490Q93.526 4.398 93.526 4.293Q93.526 3.875 93.915 3.728Q94.304 3.582 94.804 3.582Q95.136 3.582 95.489 3.712Q95.843 3.843 96.071 4.097Q96.300 4.351 96.300 4.699L96.300 6.500Q96.300 6.632 96.372 6.742Q96.444 6.851 96.573 6.851Q96.698 6.851 96.767 6.746Q96.835 6.640 96.835 6.500L96.835 5.988L97.116 5.988L97.116 6.500Q97.116 6.703 96.999 6.861Q96.882 7.019 96.700 7.103Q96.519 7.187 96.315 7.187Q96.085 7.187 95.933 7.015Q95.780 6.843 95.749 6.613Q95.589 6.894 95.280 7.060Q94.972 7.226 94.620 7.226Q94.108 7.226 93.685 7.003Q93.261 6.781 93.261 6.316M93.948 6.316Q93.948 6.601 94.175 6.787Q94.401 6.972 94.694 6.972Q94.940 6.972 95.165 6.855Q95.390 6.738 95.524 6.535Q95.659 6.332 95.659 6.078L95.659 5.246Q95.394 5.246 95.108 5.300Q94.823 5.355 94.552 5.484Q94.280 5.613 94.114 5.820Q93.948 6.027 93.948 6.316M99.323 7.148L97.491 7.148L97.491 6.851Q97.765 6.851 97.933 6.804Q98.101 6.757 98.101 6.589L98.101 2.429Q98.101 2.214 98.038 2.119Q97.976 2.023 97.856 2.002Q97.737 1.980 97.491 1.980L97.491 1.683L98.714 1.597L98.714 6.589Q98.714 6.757 98.882 6.804Q99.050 6.851 99.323 6.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(36.974 -70.53)\">\u003Cpath d=\"M104.546 7.148L102.691 7.148L102.691 6.851Q102.964 6.851 103.132 6.804Q103.300 6.757 103.300 6.589L103.300 4.453Q103.300 4.238 103.237 4.142Q103.175 4.046 103.056 4.025Q102.937 4.003 102.691 4.003L102.691 3.707L103.882 3.621L103.882 4.355Q103.995 4.140 104.189 3.972Q104.382 3.804 104.620 3.712Q104.858 3.621 105.112 3.621Q106.073 3.621 106.249 4.332Q106.433 4.003 106.761 3.812Q107.089 3.621 107.468 3.621Q108.644 3.621 108.644 4.699L108.644 6.589Q108.644 6.757 108.812 6.804Q108.980 6.851 109.249 6.851L109.249 7.148L107.394 7.148L107.394 6.851Q107.667 6.851 107.835 6.806Q108.003 6.761 108.003 6.589L108.003 4.714Q108.003 4.328 107.878 4.101Q107.753 3.875 107.401 3.875Q107.097 3.875 106.841 4.037Q106.585 4.199 106.437 4.468Q106.288 4.738 106.288 5.035L106.288 6.589Q106.288 6.757 106.458 6.804Q106.628 6.851 106.898 6.851L106.898 7.148L105.042 7.148L105.042 6.851Q105.316 6.851 105.483 6.804Q105.651 6.757 105.651 6.589L105.651 4.714Q105.651 4.328 105.526 4.101Q105.401 3.875 105.050 3.875Q104.745 3.875 104.489 4.037Q104.233 4.199 104.085 4.468Q103.937 4.738 103.937 5.035L103.937 6.589Q103.937 6.757 104.107 6.804Q104.276 6.851 104.546 6.851L104.546 7.148M109.694 5.394Q109.694 4.914 109.927 4.498Q110.159 4.082 110.569 3.832Q110.980 3.582 111.456 3.582Q112.187 3.582 112.585 4.023Q112.983 4.464 112.983 5.195Q112.983 5.300 112.890 5.324L110.441 5.324L110.441 5.394Q110.441 5.804 110.562 6.160Q110.683 6.515 110.954 6.732Q111.226 6.949 111.655 6.949Q112.019 6.949 112.316 6.720Q112.612 6.492 112.714 6.140Q112.722 6.093 112.808 6.078L112.890 6.078Q112.983 6.105 112.983 6.187Q112.983 6.195 112.976 6.226Q112.913 6.453 112.774 6.636Q112.636 6.820 112.444 6.953Q112.253 7.085 112.034 7.156Q111.816 7.226 111.577 7.226Q111.206 7.226 110.868 7.089Q110.530 6.953 110.263 6.701Q109.995 6.449 109.845 6.109Q109.694 5.769 109.694 5.394M110.448 5.085L112.409 5.085Q112.409 4.781 112.308 4.490Q112.206 4.199 111.989 4.017Q111.773 3.835 111.456 3.835Q111.155 3.835 110.925 4.023Q110.694 4.210 110.571 4.502Q110.448 4.793 110.448 5.085M115.401 7.148L113.546 7.148L113.546 6.851Q113.819 6.851 113.987 6.804Q114.155 6.757 114.155 6.589L114.155 4.453Q114.155 4.238 114.093 4.142Q114.030 4.046 113.911 4.025Q113.792 4.003 113.546 4.003L113.546 3.707L114.737 3.621L114.737 4.355Q114.851 4.140 115.044 3.972Q115.237 3.804 115.476 3.712Q115.714 3.621 115.968 3.621Q116.929 3.621 117.105 4.332Q117.288 4.003 117.616 3.812Q117.944 3.621 118.323 3.621Q119.499 3.621 119.499 4.699L119.499 6.589Q119.499 6.757 119.667 6.804Q119.835 6.851 120.105 6.851L120.105 7.148L118.249 7.148L118.249 6.851Q118.523 6.851 118.691 6.806Q118.858 6.761 118.858 6.589L118.858 4.714Q118.858 4.328 118.733 4.101Q118.608 3.875 118.257 3.875Q117.952 3.875 117.696 4.037Q117.441 4.199 117.292 4.468Q117.144 4.738 117.144 5.035L117.144 6.589Q117.144 6.757 117.314 6.804Q117.483 6.851 117.753 6.851L117.753 7.148L115.898 7.148L115.898 6.851Q116.171 6.851 116.339 6.804Q116.507 6.757 116.507 6.589L116.507 4.714Q116.507 4.328 116.382 4.101Q116.257 3.875 115.905 3.875Q115.601 3.875 115.345 4.037Q115.089 4.199 114.941 4.468Q114.792 4.738 114.792 5.035L114.792 6.589Q114.792 6.757 114.962 6.804Q115.132 6.851 115.401 6.851L115.401 7.148M120.550 5.453Q120.550 4.949 120.806 4.517Q121.062 4.085 121.497 3.834Q121.933 3.582 122.433 3.582Q122.819 3.582 123.161 3.726Q123.503 3.871 123.765 4.132Q124.026 4.394 124.169 4.730Q124.312 5.066 124.312 5.453Q124.312 5.945 124.048 6.355Q123.784 6.765 123.355 6.996Q122.925 7.226 122.433 7.226Q121.941 7.226 121.507 6.994Q121.073 6.761 120.812 6.353Q120.550 5.945 120.550 5.453M122.433 6.949Q122.890 6.949 123.142 6.726Q123.394 6.503 123.482 6.152Q123.569 5.800 123.569 5.355Q123.569 4.925 123.476 4.587Q123.382 4.250 123.128 4.043Q122.874 3.835 122.433 3.835Q121.784 3.835 121.540 4.252Q121.296 4.668 121.296 5.355Q121.296 5.800 121.384 6.152Q121.472 6.503 121.724 6.726Q121.976 6.949 122.433 6.949M126.804 7.148L124.823 7.148L124.823 6.851Q125.093 6.851 125.261 6.806Q125.429 6.761 125.429 6.589L125.429 4.453Q125.429 4.238 125.366 4.142Q125.304 4.046 125.187 4.025Q125.069 4.003 124.823 4.003L124.823 3.707L125.991 3.621L125.991 4.406Q126.069 4.195 126.222 4.009Q126.374 3.824 126.573 3.722Q126.773 3.621 126.999 3.621Q127.245 3.621 127.437 3.765Q127.628 3.910 127.628 4.140Q127.628 4.296 127.523 4.406Q127.417 4.515 127.261 4.515Q127.105 4.515 126.995 4.406Q126.886 4.296 126.886 4.140Q126.886 3.980 126.991 3.875Q126.667 3.875 126.452 4.103Q126.237 4.332 126.142 4.671Q126.046 5.011 126.046 5.316L126.046 6.589Q126.046 6.757 126.273 6.804Q126.499 6.851 126.804 6.851L126.804 7.148M128.526 8.445Q128.640 8.523 128.815 8.523Q129.105 8.523 129.325 8.310Q129.546 8.097 129.671 7.796L129.960 7.148L128.687 4.261Q128.605 4.085 128.460 4.041Q128.315 3.996 128.046 3.996L128.046 3.699L129.765 3.699L129.765 3.996Q129.343 3.996 129.343 4.179Q129.343 4.191 129.358 4.261L130.296 6.386L131.128 4.476Q131.167 4.386 131.167 4.308Q131.167 4.168 131.065 4.082Q130.964 3.996 130.823 3.996L130.823 3.699L132.175 3.699L132.175 3.996Q131.921 3.996 131.728 4.121Q131.534 4.246 131.429 4.476L129.983 7.796Q129.870 8.050 129.704 8.273Q129.538 8.496 129.310 8.638Q129.081 8.781 128.815 8.781Q128.519 8.781 128.278 8.589Q128.038 8.398 128.038 8.109Q128.038 7.953 128.144 7.851Q128.249 7.750 128.398 7.750Q128.503 7.750 128.583 7.796Q128.663 7.843 128.710 7.921Q128.757 8 128.757 8.109Q128.757 8.230 128.696 8.318Q128.636 8.406 128.526 8.445\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M116.694-32.685h42.68v-17.072h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(54.234 -45.592)\">\u003Cpath d=\"M72.052 7.148L70.067 7.148L70.067 6.851Q70.341 6.851 70.509 6.804Q70.677 6.757 70.677 6.589L70.677 3.996L70.036 3.996L70.036 3.699L70.677 3.699L70.677 2.765Q70.677 2.500 70.794 2.263Q70.911 2.027 71.104 1.863Q71.298 1.699 71.546 1.607Q71.794 1.515 72.059 1.515Q72.345 1.515 72.569 1.673Q72.794 1.832 72.794 2.109Q72.794 2.265 72.688 2.375Q72.583 2.484 72.419 2.484Q72.263 2.484 72.153 2.375Q72.044 2.265 72.044 2.109Q72.044 1.902 72.204 1.796Q72.106 1.773 72.013 1.773Q71.782 1.773 71.610 1.929Q71.438 2.085 71.352 2.322Q71.267 2.558 71.267 2.781L71.267 3.699L72.235 3.699L72.235 3.996L71.290 3.996L71.290 6.589Q71.290 6.757 71.517 6.804Q71.743 6.851 72.052 6.851L72.052 7.148M74.587 7.148L72.606 7.148L72.606 6.851Q72.876 6.851 73.044 6.806Q73.212 6.761 73.212 6.589L73.212 4.453Q73.212 4.238 73.149 4.142Q73.087 4.046 72.970 4.025Q72.852 4.003 72.606 4.003L72.606 3.707L73.774 3.621L73.774 4.406Q73.852 4.195 74.005 4.009Q74.157 3.824 74.356 3.722Q74.556 3.621 74.782 3.621Q75.028 3.621 75.220 3.765Q75.411 3.910 75.411 4.140Q75.411 4.296 75.306 4.406Q75.200 4.515 75.044 4.515Q74.888 4.515 74.778 4.406Q74.669 4.296 74.669 4.140Q74.669 3.980 74.774 3.875Q74.450 3.875 74.235 4.103Q74.020 4.332 73.925 4.671Q73.829 5.011 73.829 5.316L73.829 6.589Q73.829 6.757 74.056 6.804Q74.282 6.851 74.587 6.851L74.587 7.148M75.989 6.316Q75.989 5.832 76.392 5.537Q76.794 5.242 77.345 5.123Q77.895 5.003 78.388 5.003L78.388 4.714Q78.388 4.488 78.272 4.281Q78.157 4.074 77.960 3.955Q77.763 3.835 77.532 3.835Q77.106 3.835 76.821 3.941Q76.892 3.968 76.938 4.023Q76.985 4.078 77.011 4.148Q77.036 4.218 77.036 4.293Q77.036 4.398 76.985 4.490Q76.934 4.582 76.843 4.632Q76.751 4.683 76.645 4.683Q76.540 4.683 76.448 4.632Q76.356 4.582 76.306 4.490Q76.255 4.398 76.255 4.293Q76.255 3.875 76.643 3.728Q77.032 3.582 77.532 3.582Q77.864 3.582 78.218 3.712Q78.571 3.843 78.800 4.097Q79.028 4.351 79.028 4.699L79.028 6.500Q79.028 6.632 79.101 6.742Q79.173 6.851 79.302 6.851Q79.427 6.851 79.495 6.746Q79.563 6.640 79.563 6.500L79.563 5.988L79.845 5.988L79.845 6.500Q79.845 6.703 79.727 6.861Q79.610 7.019 79.429 7.103Q79.247 7.187 79.044 7.187Q78.813 7.187 78.661 7.015Q78.509 6.843 78.477 6.613Q78.317 6.894 78.009 7.060Q77.700 7.226 77.349 7.226Q76.837 7.226 76.413 7.003Q75.989 6.781 75.989 6.316M76.677 6.316Q76.677 6.601 76.903 6.787Q77.130 6.972 77.423 6.972Q77.669 6.972 77.893 6.855Q78.118 6.738 78.253 6.535Q78.388 6.332 78.388 6.078L78.388 5.246Q78.122 5.246 77.837 5.300Q77.552 5.355 77.280 5.484Q77.009 5.613 76.843 5.820Q76.677 6.027 76.677 6.316M82.067 7.148L80.212 7.148L80.212 6.851Q80.485 6.851 80.653 6.804Q80.821 6.757 80.821 6.589L80.821 4.453Q80.821 4.238 80.759 4.142Q80.696 4.046 80.577 4.025Q80.458 4.003 80.212 4.003L80.212 3.707L81.403 3.621L81.403 4.355Q81.517 4.140 81.710 3.972Q81.903 3.804 82.142 3.712Q82.380 3.621 82.634 3.621Q83.595 3.621 83.770 4.332Q83.954 4.003 84.282 3.812Q84.610 3.621 84.989 3.621Q86.165 3.621 86.165 4.699L86.165 6.589Q86.165 6.757 86.333 6.804Q86.501 6.851 86.770 6.851L86.770 7.148L84.915 7.148L84.915 6.851Q85.188 6.851 85.356 6.806Q85.524 6.761 85.524 6.589L85.524 4.714Q85.524 4.328 85.399 4.101Q85.274 3.875 84.923 3.875Q84.618 3.875 84.362 4.037Q84.106 4.199 83.958 4.468Q83.809 4.738 83.809 5.035L83.809 6.589Q83.809 6.757 83.979 6.804Q84.149 6.851 84.419 6.851L84.419 7.148L82.563 7.148L82.563 6.851Q82.837 6.851 83.005 6.804Q83.173 6.757 83.173 6.589L83.173 4.714Q83.173 4.328 83.048 4.101Q82.923 3.875 82.571 3.875Q82.267 3.875 82.011 4.037Q81.755 4.199 81.606 4.468Q81.458 4.738 81.458 5.035L81.458 6.589Q81.458 6.757 81.628 6.804Q81.798 6.851 82.067 6.851L82.067 7.148M87.216 5.394Q87.216 4.914 87.448 4.498Q87.681 4.082 88.091 3.832Q88.501 3.582 88.977 3.582Q89.708 3.582 90.106 4.023Q90.505 4.464 90.505 5.195Q90.505 5.300 90.411 5.324L87.962 5.324L87.962 5.394Q87.962 5.804 88.083 6.160Q88.204 6.515 88.476 6.732Q88.747 6.949 89.177 6.949Q89.540 6.949 89.837 6.720Q90.134 6.492 90.235 6.140Q90.243 6.093 90.329 6.078L90.411 6.078Q90.505 6.105 90.505 6.187Q90.505 6.195 90.497 6.226Q90.434 6.453 90.296 6.636Q90.157 6.820 89.966 6.953Q89.774 7.085 89.556 7.156Q89.337 7.226 89.099 7.226Q88.727 7.226 88.390 7.089Q88.052 6.953 87.784 6.701Q87.517 6.449 87.366 6.109Q87.216 5.769 87.216 5.394M87.970 5.085L89.931 5.085Q89.931 4.781 89.829 4.490Q89.727 4.199 89.511 4.017Q89.294 3.835 88.977 3.835Q88.677 3.835 88.446 4.023Q88.216 4.210 88.093 4.502Q87.970 4.793 87.970 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.234 -45.592)\">\u003Cpath d=\"M95.723 7.316Q95.020 7.316 94.620 6.916Q94.219 6.515 94.075 5.906Q93.930 5.296 93.930 4.597Q93.930 4.074 94 3.611Q94.071 3.148 94.264 2.736Q94.457 2.324 94.815 2.076Q95.172 1.828 95.723 1.828Q96.274 1.828 96.631 2.076Q96.989 2.324 97.180 2.734Q97.372 3.144 97.442 3.613Q97.512 4.082 97.512 4.597Q97.512 5.296 97.370 5.904Q97.227 6.511 96.827 6.914Q96.426 7.316 95.723 7.316M95.723 7.058Q96.196 7.058 96.428 6.623Q96.661 6.187 96.715 5.648Q96.770 5.109 96.770 4.468Q96.770 3.472 96.586 2.779Q96.403 2.085 95.723 2.085Q95.356 2.085 95.135 2.324Q94.915 2.562 94.819 2.919Q94.723 3.277 94.698 3.648Q94.672 4.019 94.672 4.468Q94.672 5.109 94.727 5.648Q94.782 6.187 95.014 6.623Q95.247 7.058 95.723 7.058\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M116.694-12.768h42.68V-29.84h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(54.234 -25.675)\">\u003Cpath d=\"M72.052 7.148L70.067 7.148L70.067 6.851Q70.341 6.851 70.509 6.804Q70.677 6.757 70.677 6.589L70.677 3.996L70.036 3.996L70.036 3.699L70.677 3.699L70.677 2.765Q70.677 2.500 70.794 2.263Q70.911 2.027 71.104 1.863Q71.298 1.699 71.546 1.607Q71.794 1.515 72.059 1.515Q72.345 1.515 72.569 1.673Q72.794 1.832 72.794 2.109Q72.794 2.265 72.688 2.375Q72.583 2.484 72.419 2.484Q72.263 2.484 72.153 2.375Q72.044 2.265 72.044 2.109Q72.044 1.902 72.204 1.796Q72.106 1.773 72.013 1.773Q71.782 1.773 71.610 1.929Q71.438 2.085 71.352 2.322Q71.267 2.558 71.267 2.781L71.267 3.699L72.235 3.699L72.235 3.996L71.290 3.996L71.290 6.589Q71.290 6.757 71.517 6.804Q71.743 6.851 72.052 6.851L72.052 7.148M74.587 7.148L72.606 7.148L72.606 6.851Q72.876 6.851 73.044 6.806Q73.212 6.761 73.212 6.589L73.212 4.453Q73.212 4.238 73.149 4.142Q73.087 4.046 72.970 4.025Q72.852 4.003 72.606 4.003L72.606 3.707L73.774 3.621L73.774 4.406Q73.852 4.195 74.005 4.009Q74.157 3.824 74.356 3.722Q74.556 3.621 74.782 3.621Q75.028 3.621 75.220 3.765Q75.411 3.910 75.411 4.140Q75.411 4.296 75.306 4.406Q75.200 4.515 75.044 4.515Q74.888 4.515 74.778 4.406Q74.669 4.296 74.669 4.140Q74.669 3.980 74.774 3.875Q74.450 3.875 74.235 4.103Q74.020 4.332 73.925 4.671Q73.829 5.011 73.829 5.316L73.829 6.589Q73.829 6.757 74.056 6.804Q74.282 6.851 74.587 6.851L74.587 7.148M75.989 6.316Q75.989 5.832 76.392 5.537Q76.794 5.242 77.345 5.123Q77.895 5.003 78.388 5.003L78.388 4.714Q78.388 4.488 78.272 4.281Q78.157 4.074 77.960 3.955Q77.763 3.835 77.532 3.835Q77.106 3.835 76.821 3.941Q76.892 3.968 76.938 4.023Q76.985 4.078 77.011 4.148Q77.036 4.218 77.036 4.293Q77.036 4.398 76.985 4.490Q76.934 4.582 76.843 4.632Q76.751 4.683 76.645 4.683Q76.540 4.683 76.448 4.632Q76.356 4.582 76.306 4.490Q76.255 4.398 76.255 4.293Q76.255 3.875 76.643 3.728Q77.032 3.582 77.532 3.582Q77.864 3.582 78.218 3.712Q78.571 3.843 78.800 4.097Q79.028 4.351 79.028 4.699L79.028 6.500Q79.028 6.632 79.101 6.742Q79.173 6.851 79.302 6.851Q79.427 6.851 79.495 6.746Q79.563 6.640 79.563 6.500L79.563 5.988L79.845 5.988L79.845 6.500Q79.845 6.703 79.727 6.861Q79.610 7.019 79.429 7.103Q79.247 7.187 79.044 7.187Q78.813 7.187 78.661 7.015Q78.509 6.843 78.477 6.613Q78.317 6.894 78.009 7.060Q77.700 7.226 77.349 7.226Q76.837 7.226 76.413 7.003Q75.989 6.781 75.989 6.316M76.677 6.316Q76.677 6.601 76.903 6.787Q77.130 6.972 77.423 6.972Q77.669 6.972 77.893 6.855Q78.118 6.738 78.253 6.535Q78.388 6.332 78.388 6.078L78.388 5.246Q78.122 5.246 77.837 5.300Q77.552 5.355 77.280 5.484Q77.009 5.613 76.843 5.820Q76.677 6.027 76.677 6.316M82.067 7.148L80.212 7.148L80.212 6.851Q80.485 6.851 80.653 6.804Q80.821 6.757 80.821 6.589L80.821 4.453Q80.821 4.238 80.759 4.142Q80.696 4.046 80.577 4.025Q80.458 4.003 80.212 4.003L80.212 3.707L81.403 3.621L81.403 4.355Q81.517 4.140 81.710 3.972Q81.903 3.804 82.142 3.712Q82.380 3.621 82.634 3.621Q83.595 3.621 83.770 4.332Q83.954 4.003 84.282 3.812Q84.610 3.621 84.989 3.621Q86.165 3.621 86.165 4.699L86.165 6.589Q86.165 6.757 86.333 6.804Q86.501 6.851 86.770 6.851L86.770 7.148L84.915 7.148L84.915 6.851Q85.188 6.851 85.356 6.806Q85.524 6.761 85.524 6.589L85.524 4.714Q85.524 4.328 85.399 4.101Q85.274 3.875 84.923 3.875Q84.618 3.875 84.362 4.037Q84.106 4.199 83.958 4.468Q83.809 4.738 83.809 5.035L83.809 6.589Q83.809 6.757 83.979 6.804Q84.149 6.851 84.419 6.851L84.419 7.148L82.563 7.148L82.563 6.851Q82.837 6.851 83.005 6.804Q83.173 6.757 83.173 6.589L83.173 4.714Q83.173 4.328 83.048 4.101Q82.923 3.875 82.571 3.875Q82.267 3.875 82.011 4.037Q81.755 4.199 81.606 4.468Q81.458 4.738 81.458 5.035L81.458 6.589Q81.458 6.757 81.628 6.804Q81.798 6.851 82.067 6.851L82.067 7.148M87.216 5.394Q87.216 4.914 87.448 4.498Q87.681 4.082 88.091 3.832Q88.501 3.582 88.977 3.582Q89.708 3.582 90.106 4.023Q90.505 4.464 90.505 5.195Q90.505 5.300 90.411 5.324L87.962 5.324L87.962 5.394Q87.962 5.804 88.083 6.160Q88.204 6.515 88.476 6.732Q88.747 6.949 89.177 6.949Q89.540 6.949 89.837 6.720Q90.134 6.492 90.235 6.140Q90.243 6.093 90.329 6.078L90.411 6.078Q90.505 6.105 90.505 6.187Q90.505 6.195 90.497 6.226Q90.434 6.453 90.296 6.636Q90.157 6.820 89.966 6.953Q89.774 7.085 89.556 7.156Q89.337 7.226 89.099 7.226Q88.727 7.226 88.390 7.089Q88.052 6.953 87.784 6.701Q87.517 6.449 87.366 6.109Q87.216 5.769 87.216 5.394M87.970 5.085L89.931 5.085Q89.931 4.781 89.829 4.490Q89.727 4.199 89.511 4.017Q89.294 3.835 88.977 3.835Q88.677 3.835 88.446 4.023Q88.216 4.210 88.093 4.502Q87.970 4.793 87.970 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.234 -25.675)\">\u003Cpath d=\"M97.196 7.148L94.403 7.148L94.403 6.851Q95.465 6.851 95.465 6.589L95.465 2.421Q95.036 2.636 94.356 2.636L94.356 2.339Q95.375 2.339 95.891 1.828L96.036 1.828Q96.110 1.847 96.129 1.925L96.129 6.589Q96.129 6.851 97.196 6.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M116.694 7.148h42.68V-9.923h-42.68Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(54.234 -5.758)\">\u003Cpath d=\"M72.052 7.148L70.067 7.148L70.067 6.851Q70.341 6.851 70.509 6.804Q70.677 6.757 70.677 6.589L70.677 3.996L70.036 3.996L70.036 3.699L70.677 3.699L70.677 2.765Q70.677 2.500 70.794 2.263Q70.911 2.027 71.104 1.863Q71.298 1.699 71.546 1.607Q71.794 1.515 72.059 1.515Q72.345 1.515 72.569 1.673Q72.794 1.832 72.794 2.109Q72.794 2.265 72.688 2.375Q72.583 2.484 72.419 2.484Q72.263 2.484 72.153 2.375Q72.044 2.265 72.044 2.109Q72.044 1.902 72.204 1.796Q72.106 1.773 72.013 1.773Q71.782 1.773 71.610 1.929Q71.438 2.085 71.352 2.322Q71.267 2.558 71.267 2.781L71.267 3.699L72.235 3.699L72.235 3.996L71.290 3.996L71.290 6.589Q71.290 6.757 71.517 6.804Q71.743 6.851 72.052 6.851L72.052 7.148M74.587 7.148L72.606 7.148L72.606 6.851Q72.876 6.851 73.044 6.806Q73.212 6.761 73.212 6.589L73.212 4.453Q73.212 4.238 73.149 4.142Q73.087 4.046 72.970 4.025Q72.852 4.003 72.606 4.003L72.606 3.707L73.774 3.621L73.774 4.406Q73.852 4.195 74.005 4.009Q74.157 3.824 74.356 3.722Q74.556 3.621 74.782 3.621Q75.028 3.621 75.220 3.765Q75.411 3.910 75.411 4.140Q75.411 4.296 75.306 4.406Q75.200 4.515 75.044 4.515Q74.888 4.515 74.778 4.406Q74.669 4.296 74.669 4.140Q74.669 3.980 74.774 3.875Q74.450 3.875 74.235 4.103Q74.020 4.332 73.925 4.671Q73.829 5.011 73.829 5.316L73.829 6.589Q73.829 6.757 74.056 6.804Q74.282 6.851 74.587 6.851L74.587 7.148M75.989 6.316Q75.989 5.832 76.392 5.537Q76.794 5.242 77.345 5.123Q77.895 5.003 78.388 5.003L78.388 4.714Q78.388 4.488 78.272 4.281Q78.157 4.074 77.960 3.955Q77.763 3.835 77.532 3.835Q77.106 3.835 76.821 3.941Q76.892 3.968 76.938 4.023Q76.985 4.078 77.011 4.148Q77.036 4.218 77.036 4.293Q77.036 4.398 76.985 4.490Q76.934 4.582 76.843 4.632Q76.751 4.683 76.645 4.683Q76.540 4.683 76.448 4.632Q76.356 4.582 76.306 4.490Q76.255 4.398 76.255 4.293Q76.255 3.875 76.643 3.728Q77.032 3.582 77.532 3.582Q77.864 3.582 78.218 3.712Q78.571 3.843 78.800 4.097Q79.028 4.351 79.028 4.699L79.028 6.500Q79.028 6.632 79.101 6.742Q79.173 6.851 79.302 6.851Q79.427 6.851 79.495 6.746Q79.563 6.640 79.563 6.500L79.563 5.988L79.845 5.988L79.845 6.500Q79.845 6.703 79.727 6.861Q79.610 7.019 79.429 7.103Q79.247 7.187 79.044 7.187Q78.813 7.187 78.661 7.015Q78.509 6.843 78.477 6.613Q78.317 6.894 78.009 7.060Q77.700 7.226 77.349 7.226Q76.837 7.226 76.413 7.003Q75.989 6.781 75.989 6.316M76.677 6.316Q76.677 6.601 76.903 6.787Q77.130 6.972 77.423 6.972Q77.669 6.972 77.893 6.855Q78.118 6.738 78.253 6.535Q78.388 6.332 78.388 6.078L78.388 5.246Q78.122 5.246 77.837 5.300Q77.552 5.355 77.280 5.484Q77.009 5.613 76.843 5.820Q76.677 6.027 76.677 6.316M82.067 7.148L80.212 7.148L80.212 6.851Q80.485 6.851 80.653 6.804Q80.821 6.757 80.821 6.589L80.821 4.453Q80.821 4.238 80.759 4.142Q80.696 4.046 80.577 4.025Q80.458 4.003 80.212 4.003L80.212 3.707L81.403 3.621L81.403 4.355Q81.517 4.140 81.710 3.972Q81.903 3.804 82.142 3.712Q82.380 3.621 82.634 3.621Q83.595 3.621 83.770 4.332Q83.954 4.003 84.282 3.812Q84.610 3.621 84.989 3.621Q86.165 3.621 86.165 4.699L86.165 6.589Q86.165 6.757 86.333 6.804Q86.501 6.851 86.770 6.851L86.770 7.148L84.915 7.148L84.915 6.851Q85.188 6.851 85.356 6.806Q85.524 6.761 85.524 6.589L85.524 4.714Q85.524 4.328 85.399 4.101Q85.274 3.875 84.923 3.875Q84.618 3.875 84.362 4.037Q84.106 4.199 83.958 4.468Q83.809 4.738 83.809 5.035L83.809 6.589Q83.809 6.757 83.979 6.804Q84.149 6.851 84.419 6.851L84.419 7.148L82.563 7.148L82.563 6.851Q82.837 6.851 83.005 6.804Q83.173 6.757 83.173 6.589L83.173 4.714Q83.173 4.328 83.048 4.101Q82.923 3.875 82.571 3.875Q82.267 3.875 82.011 4.037Q81.755 4.199 81.606 4.468Q81.458 4.738 81.458 5.035L81.458 6.589Q81.458 6.757 81.628 6.804Q81.798 6.851 82.067 6.851L82.067 7.148M87.216 5.394Q87.216 4.914 87.448 4.498Q87.681 4.082 88.091 3.832Q88.501 3.582 88.977 3.582Q89.708 3.582 90.106 4.023Q90.505 4.464 90.505 5.195Q90.505 5.300 90.411 5.324L87.962 5.324L87.962 5.394Q87.962 5.804 88.083 6.160Q88.204 6.515 88.476 6.732Q88.747 6.949 89.177 6.949Q89.540 6.949 89.837 6.720Q90.134 6.492 90.235 6.140Q90.243 6.093 90.329 6.078L90.411 6.078Q90.505 6.105 90.505 6.187Q90.505 6.195 90.497 6.226Q90.434 6.453 90.296 6.636Q90.157 6.820 89.966 6.953Q89.774 7.085 89.556 7.156Q89.337 7.226 89.099 7.226Q88.727 7.226 88.390 7.089Q88.052 6.953 87.784 6.701Q87.517 6.449 87.366 6.109Q87.216 5.769 87.216 5.394M87.970 5.085L89.931 5.085Q89.931 4.781 89.829 4.490Q89.727 4.199 89.511 4.017Q89.294 3.835 88.977 3.835Q88.677 3.835 88.446 4.023Q88.216 4.210 88.093 4.502Q87.970 4.793 87.970 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.234 -5.758)\">\u003Cpath d=\"M97.188 7.148L94.028 7.148L94.028 6.941Q94.028 6.914 94.051 6.882L95.403 5.484Q95.782 5.097 96.030 4.808Q96.278 4.519 96.452 4.162Q96.625 3.804 96.625 3.414Q96.625 3.066 96.493 2.773Q96.360 2.480 96.106 2.302Q95.852 2.125 95.497 2.125Q95.137 2.125 94.846 2.320Q94.555 2.515 94.411 2.843L94.465 2.843Q94.649 2.843 94.774 2.964Q94.899 3.085 94.899 3.277Q94.899 3.457 94.774 3.585Q94.649 3.714 94.465 3.714Q94.286 3.714 94.157 3.585Q94.028 3.457 94.028 3.277Q94.028 2.875 94.248 2.539Q94.469 2.203 94.834 2.015Q95.200 1.828 95.602 1.828Q96.082 1.828 96.498 2.015Q96.915 2.203 97.166 2.564Q97.418 2.925 97.418 3.414Q97.418 3.773 97.264 4.076Q97.110 4.378 96.858 4.638Q96.606 4.898 96.256 5.183Q95.907 5.468 95.739 5.621L94.809 6.460L95.524 6.460Q96.899 6.460 96.938 6.421Q97.008 6.343 97.051 6.158Q97.094 5.972 97.137 5.683L97.418 5.683\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M116.694 27.065h42.68V9.994h-42.68Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(54.234 14.159)\">\u003Cpath d=\"M72.052 7.148L70.067 7.148L70.067 6.851Q70.341 6.851 70.509 6.804Q70.677 6.757 70.677 6.589L70.677 3.996L70.036 3.996L70.036 3.699L70.677 3.699L70.677 2.765Q70.677 2.500 70.794 2.263Q70.911 2.027 71.104 1.863Q71.298 1.699 71.546 1.607Q71.794 1.515 72.059 1.515Q72.345 1.515 72.569 1.673Q72.794 1.832 72.794 2.109Q72.794 2.265 72.688 2.375Q72.583 2.484 72.419 2.484Q72.263 2.484 72.153 2.375Q72.044 2.265 72.044 2.109Q72.044 1.902 72.204 1.796Q72.106 1.773 72.013 1.773Q71.782 1.773 71.610 1.929Q71.438 2.085 71.352 2.322Q71.267 2.558 71.267 2.781L71.267 3.699L72.235 3.699L72.235 3.996L71.290 3.996L71.290 6.589Q71.290 6.757 71.517 6.804Q71.743 6.851 72.052 6.851L72.052 7.148M74.587 7.148L72.606 7.148L72.606 6.851Q72.876 6.851 73.044 6.806Q73.212 6.761 73.212 6.589L73.212 4.453Q73.212 4.238 73.149 4.142Q73.087 4.046 72.970 4.025Q72.852 4.003 72.606 4.003L72.606 3.707L73.774 3.621L73.774 4.406Q73.852 4.195 74.005 4.009Q74.157 3.824 74.356 3.722Q74.556 3.621 74.782 3.621Q75.028 3.621 75.220 3.765Q75.411 3.910 75.411 4.140Q75.411 4.296 75.306 4.406Q75.200 4.515 75.044 4.515Q74.888 4.515 74.778 4.406Q74.669 4.296 74.669 4.140Q74.669 3.980 74.774 3.875Q74.450 3.875 74.235 4.103Q74.020 4.332 73.925 4.671Q73.829 5.011 73.829 5.316L73.829 6.589Q73.829 6.757 74.056 6.804Q74.282 6.851 74.587 6.851L74.587 7.148M75.989 6.316Q75.989 5.832 76.392 5.537Q76.794 5.242 77.345 5.123Q77.895 5.003 78.388 5.003L78.388 4.714Q78.388 4.488 78.272 4.281Q78.157 4.074 77.960 3.955Q77.763 3.835 77.532 3.835Q77.106 3.835 76.821 3.941Q76.892 3.968 76.938 4.023Q76.985 4.078 77.011 4.148Q77.036 4.218 77.036 4.293Q77.036 4.398 76.985 4.490Q76.934 4.582 76.843 4.632Q76.751 4.683 76.645 4.683Q76.540 4.683 76.448 4.632Q76.356 4.582 76.306 4.490Q76.255 4.398 76.255 4.293Q76.255 3.875 76.643 3.728Q77.032 3.582 77.532 3.582Q77.864 3.582 78.218 3.712Q78.571 3.843 78.800 4.097Q79.028 4.351 79.028 4.699L79.028 6.500Q79.028 6.632 79.101 6.742Q79.173 6.851 79.302 6.851Q79.427 6.851 79.495 6.746Q79.563 6.640 79.563 6.500L79.563 5.988L79.845 5.988L79.845 6.500Q79.845 6.703 79.727 6.861Q79.610 7.019 79.429 7.103Q79.247 7.187 79.044 7.187Q78.813 7.187 78.661 7.015Q78.509 6.843 78.477 6.613Q78.317 6.894 78.009 7.060Q77.700 7.226 77.349 7.226Q76.837 7.226 76.413 7.003Q75.989 6.781 75.989 6.316M76.677 6.316Q76.677 6.601 76.903 6.787Q77.130 6.972 77.423 6.972Q77.669 6.972 77.893 6.855Q78.118 6.738 78.253 6.535Q78.388 6.332 78.388 6.078L78.388 5.246Q78.122 5.246 77.837 5.300Q77.552 5.355 77.280 5.484Q77.009 5.613 76.843 5.820Q76.677 6.027 76.677 6.316M82.067 7.148L80.212 7.148L80.212 6.851Q80.485 6.851 80.653 6.804Q80.821 6.757 80.821 6.589L80.821 4.453Q80.821 4.238 80.759 4.142Q80.696 4.046 80.577 4.025Q80.458 4.003 80.212 4.003L80.212 3.707L81.403 3.621L81.403 4.355Q81.517 4.140 81.710 3.972Q81.903 3.804 82.142 3.712Q82.380 3.621 82.634 3.621Q83.595 3.621 83.770 4.332Q83.954 4.003 84.282 3.812Q84.610 3.621 84.989 3.621Q86.165 3.621 86.165 4.699L86.165 6.589Q86.165 6.757 86.333 6.804Q86.501 6.851 86.770 6.851L86.770 7.148L84.915 7.148L84.915 6.851Q85.188 6.851 85.356 6.806Q85.524 6.761 85.524 6.589L85.524 4.714Q85.524 4.328 85.399 4.101Q85.274 3.875 84.923 3.875Q84.618 3.875 84.362 4.037Q84.106 4.199 83.958 4.468Q83.809 4.738 83.809 5.035L83.809 6.589Q83.809 6.757 83.979 6.804Q84.149 6.851 84.419 6.851L84.419 7.148L82.563 7.148L82.563 6.851Q82.837 6.851 83.005 6.804Q83.173 6.757 83.173 6.589L83.173 4.714Q83.173 4.328 83.048 4.101Q82.923 3.875 82.571 3.875Q82.267 3.875 82.011 4.037Q81.755 4.199 81.606 4.468Q81.458 4.738 81.458 5.035L81.458 6.589Q81.458 6.757 81.628 6.804Q81.798 6.851 82.067 6.851L82.067 7.148M87.216 5.394Q87.216 4.914 87.448 4.498Q87.681 4.082 88.091 3.832Q88.501 3.582 88.977 3.582Q89.708 3.582 90.106 4.023Q90.505 4.464 90.505 5.195Q90.505 5.300 90.411 5.324L87.962 5.324L87.962 5.394Q87.962 5.804 88.083 6.160Q88.204 6.515 88.476 6.732Q88.747 6.949 89.177 6.949Q89.540 6.949 89.837 6.720Q90.134 6.492 90.235 6.140Q90.243 6.093 90.329 6.078L90.411 6.078Q90.505 6.105 90.505 6.187Q90.505 6.195 90.497 6.226Q90.434 6.453 90.296 6.636Q90.157 6.820 89.966 6.953Q89.774 7.085 89.556 7.156Q89.337 7.226 89.099 7.226Q88.727 7.226 88.390 7.089Q88.052 6.953 87.784 6.701Q87.517 6.449 87.366 6.109Q87.216 5.769 87.216 5.394M87.970 5.085L89.931 5.085Q89.931 4.781 89.829 4.490Q89.727 4.199 89.511 4.017Q89.294 3.835 88.977 3.835Q88.677 3.835 88.446 4.023Q88.216 4.210 88.093 4.502Q87.970 4.793 87.970 5.085\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.234 14.159)\">\u003Cpath d=\"M94.395 6.515Q94.586 6.789 94.942 6.916Q95.297 7.043 95.680 7.043Q96.016 7.043 96.225 6.857Q96.434 6.671 96.530 6.378Q96.625 6.085 96.625 5.773Q96.625 5.449 96.528 5.154Q96.430 4.859 96.217 4.675Q96.004 4.492 95.672 4.492L95.106 4.492Q95.075 4.492 95.045 4.462Q95.016 4.433 95.016 4.406L95.016 4.324Q95.016 4.289 95.045 4.263Q95.075 4.238 95.106 4.238L95.586 4.203Q95.872 4.203 96.069 3.998Q96.266 3.793 96.362 3.498Q96.457 3.203 96.457 2.925Q96.457 2.546 96.258 2.308Q96.059 2.070 95.680 2.070Q95.360 2.070 95.071 2.177Q94.782 2.285 94.618 2.507Q94.797 2.507 94.920 2.634Q95.043 2.761 95.043 2.933Q95.043 3.105 94.918 3.230Q94.793 3.355 94.618 3.355Q94.446 3.355 94.321 3.230Q94.196 3.105 94.196 2.933Q94.196 2.566 94.420 2.318Q94.645 2.070 94.985 1.949Q95.325 1.828 95.680 1.828Q96.028 1.828 96.391 1.949Q96.754 2.070 97.002 2.320Q97.250 2.570 97.250 2.925Q97.250 3.410 96.932 3.793Q96.614 4.175 96.137 4.347Q96.688 4.457 97.088 4.843Q97.489 5.230 97.489 5.765Q97.489 6.222 97.225 6.578Q96.961 6.933 96.540 7.125Q96.118 7.316 95.680 7.316Q95.270 7.316 94.877 7.181Q94.485 7.046 94.219 6.761Q93.954 6.476 93.954 6.058Q93.954 5.863 94.086 5.734Q94.219 5.605 94.411 5.605Q94.536 5.605 94.639 5.664Q94.743 5.722 94.805 5.828Q94.868 5.933 94.868 6.058Q94.868 6.253 94.733 6.384Q94.598 6.515 94.395 6.515\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-22.524-41.221h137.018\"\u002F>\u003Cpath stroke=\"none\" d=\"m116.494-41.221-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-22.524-21.304 114.506-5.88\"\u002F>\u003Cpath stroke=\"none\" d=\"m116.494-5.655-3-1.948 1.013 1.724-1.372 1.456\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m-22.524 38.447 137.08-35.07\"\u002F>\u003Cpath stroke=\"none\" d=\"m116.494 2.88-3.496-.757 1.559 1.253-.766 1.847\"\u002F>\u003Cpath fill=\"none\" d=\"M-22.524 58.363 114.57 19.08\"\u002F>\u003Cpath stroke=\"none\" d=\"m116.494 18.53-3.517-.657 1.594 1.207-.712 1.869\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Two processes each have a private virtual address space; their pages map, through per-process translations, into the one shared physical memory. The two page 0s land in different frames (isolation), while A&#39;s page 1 and B&#39;s page 0 deliberately share frame 2 - a shared library mapped at different virtual addresses. Frame 1 is currently free.\u003C\u002Ffigcaption>",1785117691086]