[{"data":1,"prerenderedAt":9796},["ShallowReactive",2],{"lesson:\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":3,"course-wordcounts":4027,"ref-card-index":4939,"nav:reinforcement-learning":9622,"tikz:6fc9ec5ccae90c509ba19ad7050a54ea408f86e70961d057360914d0eef3a6d1":9791,"tikz:8f70ba178dfd1c26365afa691eaa961899df155d4217b5d3266ea03253bef969":9792,"tikz:6564cc17b5dcdefef4ca911eddfecbd20daef15117f09dff9d86010480567fd1":9793,"tikz:642e96c38e6f5f32dfd5111006592f6084f14fbdfa239db6a6b096e8255305aa":9794,"tikz:42a63b98cc130cb2b9fb0b2620617274b383490fc1b2e999e9b583eaac2259b4":9795},{"id":4,"title":5,"blurb":6,"body":7,"brief":4000,"category":4001,"description":4002,"draft":4003,"extension":4004,"meta":4005,"module":4007,"navigation":4008,"path":4009,"practice":4010,"rawbody":4011,"readingTime":4012,"seo":4017,"sources":4018,"status":4021,"stem":4022,"summary":4023,"topics":4024,"__hash__":4026},"course\u002F07.reinforcement-learning\u002F02.tabular-methods\u002F12.monte-carlo-tree-search.md","Monte Carlo Tree Search","",{"type":8,"value":9,"toc":3987},"minimark",[10,20,24,41,86,91,94,98,136,140,143,146,150,174,565,932,935,995,1395,1399,1526,2289,2638,2961,3174,3438,3441,3445,3448,3548,3555,3559,3586,3590,3746,3750,3753,3787,3837,3852,3871,3874,3881,3983],[11,12,13,14,19],"p",{},"This builds on ",[15,16,18],"a",{"href":17},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning",",\nwhich developed real-time DP, heuristic search, and rollout algorithms — planners\nthat compute one action for the current state and discard the work. Rollouts throw\naway every simulated trajectory. Monte Carlo Tree Search keeps them, and that one\nchange is what carried computer Go from weak amateur to superhuman.",[21,22,5],"h2",{"id":23},"monte-carlo-tree-search",[11,25,26,29,30,40],{},[27,28,5],"strong",{}," (MCTS) is a rollout algorithm with memory. Plain\nrollouts throw away every simulated trajectory; MCTS accumulates the value estimates\nfrom successive simulations and uses them to steer later simulations toward the\nhigher-rewarding parts of the space.",[31,32,33],"sup",{},[15,34,39],{"href":35,"ariaDescribedBy":36,"dataFootnoteRef":6,"id":38},"#user-content-fn-sb-mcts",[37],"footnote-label","user-content-fnref-sb-mcts","1"," It is largely responsible for the\nimprovement of computer Go from a weak amateur level in 2005 to grandmaster (6 dan\nor more) in 2015, and, combined with a deep neural network, it is the search behind\nthe 2016 AlphaGo victories. It applies to any single-agent sequential problem with a\nmodel fast enough for repeated multistep simulation, not only games.",[11,42,43,44,47,48,51,52,77,78,81,82,85],{},"Like any rollout algorithm, MCTS runs after each new state to select the action, is\nan iterative process that simulates many trajectories from the current state to a\nterminal state (or until discounting makes further reward negligible), and repeats\nuntil a compute budget is spent. Its one addition is the ",[27,45,46],{},"tree",". MCTS maintains a\ntree rooted at the current state, holding Monte Carlo value estimates for the\nstate–action pairs most likely to be reached in a few steps. Any simulated\ntrajectory passes through the tree and then exits it at some leaf. Inside the tree,\nwhere it has estimates for at least some actions, MCTS selects with an informed\n",[27,49,50],{},"tree policy"," that balances exploration and exploitation — for example an\n",[53,54,57],"span",{"className":55},[56],"katex",[53,58,62],{"className":59,"ariaHidden":61},[60],"katex-html","true",[53,63,66,71],{"className":64},[65],"base",[53,67],{"className":68,"style":70},[69],"strut","height:0.4306em;",[53,72,76],{"className":73},[74,75],"mord","mathnormal","ε","-greedy or UCB rule. Outside the tree, and at the leaves, it falls back\nto the simple ",[27,79,80],{},"rollout policy"," (the ",[27,83,84],{},"default policy",").",[87,88,90],"h3",{"id":89},"the-four-steps","The four steps",[11,92,93],{},"Each iteration of a basic MCTS consists of four operations, repeated until time runs\nout.",[95,96],"tikz-figure",{"hash":97},"6fc9ec5ccae90c509ba19ad7050a54ea408f86e70961d057360914d0eef3a6d1",[99,100,101,111,117,126],"ol",{},[102,103,104,107,108,110],"li",{},[27,105,106],{},"Selection."," Starting at the root, a ",[27,109,50],{}," based on the action values\nattached to the tree's edges traverses the tree to select a leaf node.",[102,112,113,116],{},[27,114,115],{},"Expansion."," On some iterations (depending on the application), the tree is\nexpanded from the selected leaf by adding one or more child nodes reached from\nit via unexplored actions.",[102,118,119,122,123,125],{},[27,120,121],{},"Simulation."," From the selected node — or one of its newly added children — a\ncomplete episode is simulated with actions chosen by the ",[27,124,80],{},". The\nresult is a Monte Carlo trial: tree policy inside the tree, rollout policy beyond\nit.",[102,127,128,131,132,135],{},[27,129,130],{},"Backup."," The return of the simulated episode is backed up to update (or to\ninitialize) the action values on the tree edges the tree policy traversed this\niteration. ",[27,133,134],{},"No values are saved"," for the states and actions the rollout policy\nvisited beyond the tree.",[87,137,139],{"id":138},"the-growing-tree","The growing tree",[11,141,142],{},"Over many iterations the tree grows unevenly — deeper along branches that keep\nproducing high returns, barely at all along branches that do not. This asymmetric\ngrowth is deliberate: MCTS spends its expansions where they matter.",[95,144],{"hash":145},"8f70ba178dfd1c26365afa691eaa961899df155d4217b5d3266ea03253bef969",[87,147,149],{"id":148},"uct-the-tree-policy","UCT: the tree policy",[11,151,152,153,156,157,173],{},"The tree policy supplies MCTS's exploration–exploitation balance: at each node,\nprefer actions with good estimates so far, but add a bonus for actions that have\nbarely been tried — a value estimated from two samples is far less reliable than\none from two hundred. The most common rule that does this treats\neach node as a bandit and applies ",[27,154,155],{},"UCT"," (Upper Confidence bounds applied to Trees),\nwhich selects, among the actions available at state ",[53,158,160],{"className":159},[56],[53,161,163],{"className":162,"ariaHidden":61},[60],[53,164,166,169],{"className":165},[65],[53,167],{"className":168,"style":70},[69],[53,170,172],{"className":171},[74,75],"s",", the one maximizing an upper\nconfidence bound:",[53,175,178],{"className":176},[177],"katex-display",[53,179,181],{"className":180},[56],[53,182,184,212,361],{"className":183,"ariaHidden":61},[60],[53,185,187,190,193,198,201,206,209],{"className":186},[65],[53,188],{"className":189,"style":70},[69],[53,191,15],{"className":192},[74,75],[53,194],{"className":195,"style":197},[196],"mspace","margin-right:0.2778em;",[53,199],{"className":200,"style":197},[196],[53,202,205],{"className":203},[204],"mrel","=",[53,207],{"className":208,"style":197},[196],[53,210],{"className":211,"style":197},[196],[53,213,215,219,228,232,300,303,313,316,320,324,327,332,335,338,343,346,350,355,358],{"className":214},[65],[53,216],{"className":217,"style":218},[69],"height:1.85em;vertical-align:-0.7em;",[53,220,223,224],{"className":221},[222],"mop","ar",[53,225,227],{"style":226},"margin-right:0.0139em;","g",[53,229],{"className":230,"style":231},[196],"margin-right:0.1667em;",[53,233,236],{"className":234},[222,235],"op-limits",[53,237,241,291],{"className":238},[239,240],"vlist-t","vlist-t2",[53,242,245,286],{"className":243},[244],"vlist-r",[53,246,249,270],{"className":247,"style":70},[248],"vlist",[53,250,252,257],{"style":251},"top:-2.4em;margin-left:0em;",[53,253],{"className":254,"style":256},[255],"pstrut","height:3em;",[53,258,264],{"className":259},[260,261,262,263],"sizing","reset-size6","size3","mtight",[53,265,267],{"className":266},[74,263],[53,268,15],{"className":269},[74,75,263],[53,271,273,276],{"style":272},"top:-3em;",[53,274],{"className":275,"style":256},[255],[53,277,278],{},[53,279,281],{"className":280},[222],[53,282,285],{"className":283},[74,284],"mathrm","max",[53,287,290],{"className":288},[289],"vlist-s","​",[53,292,294],{"className":293},[244],[53,295,298],{"className":296,"style":297},[248],"height:0.7em;",[53,299],{},[53,301],{"className":302,"style":197},[196],[53,304,307],{"className":305},[306],"mopen",[53,308,312],{"className":309},[310,311],"delimsizing","size2","[",[53,314],{"className":315,"style":231},[196],[53,317,319],{"className":318},[74,75],"Q",[53,321,323],{"className":322},[306],"(",[53,325,172],{"className":326},[74,75],[53,328,331],{"className":329},[330],"mpunct",",",[53,333],{"className":334,"style":231},[196],[53,336,15],{"className":337},[74,75],[53,339,342],{"className":340},[341],"mclose",")",[53,344],{"className":345,"style":197},[196],[53,347],{"className":348,"style":349},[196],"margin-right:0.2222em;",[53,351,354],{"className":352},[353],"mbin","+",[53,356],{"className":357,"style":197},[196],[53,359],{"className":360,"style":349},[196],[53,362,364,368,372,375,551,554,561],{"className":363},[65],[53,365],{"className":366,"style":367},[69],"height:1.9289em;vertical-align:-0.65em;",[53,369,371],{"className":370},[74,75],"c",[53,373],{"className":374,"style":231},[196],[53,376,379],{"className":377},[74,378],"sqrt",[53,380,382,542],{"className":381},[239,240],[53,383,385,539],{"className":384},[244],[53,386,389,516],{"className":387,"style":388},[248],"height:1.2789em;",[53,390,394,398],{"className":391,"style":393},[392],"svg-align","top:-3.8em;",[53,395],{"className":396,"style":397},[255],"height:3.8em;",[53,399,402],{"className":400,"style":401},[74],"padding-left:1em;",[53,403,405,409,513],{"className":404},[74],[53,406],{"className":407},[306,408],"nulldelimiter",[53,410,413],{"className":411},[412],"mfrac",[53,414,416,504],{"className":415},[239,240],[53,417,419,501],{"className":418},[244],[53,420,423,455,466],{"className":421,"style":422},[248],"height:1.01em;",[53,424,426,429],{"style":425},"top:-2.655em;",[53,427],{"className":428,"style":256},[255],[53,430,432],{"className":431},[260,261,262,263],[53,433,435,440,443,446,449,452],{"className":434},[74,263],[53,436,439],{"className":437,"style":438},[74,75,263],"margin-right:0.109em;","N",[53,441,323],{"className":442},[306,263],[53,444,172],{"className":445},[74,75,263],[53,447,331],{"className":448},[330,263],[53,450,15],{"className":451},[74,75,263],[53,453,342],{"className":454},[341,263],[53,456,458,461],{"style":457},"top:-3.23em;",[53,459],{"className":460,"style":256},[255],[53,462],{"className":463,"style":465},[464],"frac-line","border-bottom-width:0.04em;",[53,467,469,472],{"style":468},"top:-3.485em;",[53,470],{"className":471,"style":256},[255],[53,473,475],{"className":474},[260,261,262,263],[53,476,478,485,489,492,495,498],{"className":477},[74,263],[53,479,481],{"className":480},[222,263],[53,482,484],{"className":483},[74,284,263],"ln",[53,486],{"className":487,"style":488},[196,263],"margin-right:0.1952em;",[53,490,439],{"className":491,"style":438},[74,75,263],[53,493,323],{"className":494},[306,263],[53,496,172],{"className":497},[74,75,263],[53,499,342],{"className":500},[341,263],[53,502,290],{"className":503},[289],[53,505,507],{"className":506},[244],[53,508,511],{"className":509,"style":510},[248],"height:0.52em;",[53,512],{},[53,514],{"className":515},[341,408],[53,517,519,522],{"style":518},"top:-3.2389em;",[53,520],{"className":521,"style":397},[255],[53,523,527],{"className":524,"style":526},[525],"hide-tail","min-width:1.02em;height:1.88em;",[528,529,535],"svg",{"xmlns":530,"width":531,"height":532,"viewBox":533,"preserveAspectRatio":534},"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","400em","1.88em","0 0 400000 1944","xMinYMin slice",[536,537],"path",{"d":538},"M983 90\nl0 -0\nc4,-6.7,10,-10,18,-10 H400000v40\nH1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7\ns-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744\nc-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30\nc26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722\nc56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5\nc53.7,-170.3,84.5,-266.8,92.5,-289.5z\nM1001 80h400000v40h-400000z",[53,540,290],{"className":541},[289],[53,543,545],{"className":544},[244],[53,546,549],{"className":547,"style":548},[248],"height:0.5611em;",[53,550],{},[53,552],{"className":553,"style":231},[196],[53,555,557],{"className":556},[341],[53,558,560],{"className":559},[310,311],"]",[53,562,564],{"className":563},[74],".",[11,566,567,568,602,603,627,628,643,644,677,678,693,694,709,710,747,748,863,864,897,898,931],{},"Here ",[53,569,571],{"className":570},[56],[53,572,574],{"className":573,"ariaHidden":61},[60],[53,575,577,581,584,587,590,593,596,599],{"className":576},[65],[53,578],{"className":579,"style":580},[69],"height:1em;vertical-align:-0.25em;",[53,582,319],{"className":583},[74,75],[53,585,323],{"className":586},[306],[53,588,172],{"className":589},[74,75],[53,591,331],{"className":592},[330],[53,594],{"className":595,"style":231},[196],[53,597,15],{"className":598},[74,75],[53,600,342],{"className":601},[341]," is the current Monte Carlo estimate (exploitation), ",[53,604,606],{"className":605},[56],[53,607,609],{"className":608,"ariaHidden":61},[60],[53,610,612,615,618,621,624],{"className":611},[65],[53,613],{"className":614,"style":580},[69],[53,616,439],{"className":617,"style":438},[74,75],[53,619,323],{"className":620},[306],[53,622,172],{"className":623},[74,75],[53,625,342],{"className":626},[341]," is the\nnumber of times ",[53,629,631],{"className":630},[56],[53,632,634],{"className":633,"ariaHidden":61},[60],[53,635,637,640],{"className":636},[65],[53,638],{"className":639,"style":70},[69],[53,641,172],{"className":642},[74,75]," has been visited, ",[53,645,647],{"className":646},[56],[53,648,650],{"className":649,"ariaHidden":61},[60],[53,651,653,656,659,662,665,668,671,674],{"className":652},[65],[53,654],{"className":655,"style":580},[69],[53,657,439],{"className":658,"style":438},[74,75],[53,660,323],{"className":661},[306],[53,663,172],{"className":664},[74,75],[53,666,331],{"className":667},[330],[53,669],{"className":670,"style":231},[196],[53,672,15],{"className":673},[74,75],[53,675,342],{"className":676},[341]," the number of times action ",[53,679,681],{"className":680},[56],[53,682,684],{"className":683,"ariaHidden":61},[60],[53,685,687,690],{"className":686},[65],[53,688],{"className":689,"style":70},[69],[53,691,15],{"className":692},[74,75]," was\ntaken from ",[53,695,697],{"className":696},[56],[53,698,700],{"className":699,"ariaHidden":61},[60],[53,701,703,706],{"className":702},[65],[53,704],{"className":705,"style":70},[69],[53,707,172],{"className":708},[74,75],", and ",[53,711,713],{"className":712},[56],[53,714,716,736],{"className":715,"ariaHidden":61},[60],[53,717,719,723,726,729,733],{"className":718},[65],[53,720],{"className":721,"style":722},[69],"height:0.5782em;vertical-align:-0.0391em;",[53,724,371],{"className":725},[74,75],[53,727],{"className":728,"style":197},[196],[53,730,732],{"className":731},[204],">",[53,734],{"className":735,"style":197},[196],[53,737,739,743],{"className":738},[65],[53,740],{"className":741,"style":742},[69],"height:0.6444em;",[53,744,746],{"className":745},[74],"0"," tunes the exploration weight. The bonus\n",[53,749,751],{"className":750},[56],[53,752,754],{"className":753,"ariaHidden":61},[60],[53,755,757,761,764],{"className":756},[65],[53,758],{"className":759,"style":760},[69],"height:1.24em;vertical-align:-0.305em;",[53,762,371],{"className":763},[74,75],[53,765,767],{"className":766},[74,378],[53,768,770,854],{"className":769},[239,240],[53,771,773,851],{"className":772},[244],[53,774,777,834],{"className":775,"style":776},[248],"height:0.935em;",[53,778,781,785],{"className":779,"style":780},[392],"top:-3.2em;",[53,782],{"className":783,"style":784},[255],"height:3.2em;",[53,786,788,794,797,800,803,806,809,813,816,819,822,825,828,831],{"className":787,"style":401},[74],[53,789,791],{"className":790},[222],[53,792,484],{"className":793},[74,284],[53,795],{"className":796,"style":231},[196],[53,798,439],{"className":799,"style":438},[74,75],[53,801,323],{"className":802},[306],[53,804,172],{"className":805},[74,75],[53,807,342],{"className":808},[341],[53,810,812],{"className":811},[74],"\u002F",[53,814,439],{"className":815,"style":438},[74,75],[53,817,323],{"className":818},[306],[53,820,172],{"className":821},[74,75],[53,823,331],{"className":824},[330],[53,826],{"className":827,"style":231},[196],[53,829,15],{"className":830},[74,75],[53,832,342],{"className":833},[341],[53,835,837,840],{"style":836},"top:-2.895em;",[53,838],{"className":839,"style":784},[255],[53,841,844],{"className":842,"style":843},[525],"min-width:1.02em;height:1.28em;",[528,845,848],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},"1.28em","0 0 400000 1296",[536,849],{"d":850},"M263,681c0.7,0,18,39.7,52,119\nc34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120\nc340,-704.7,510.7,-1060.3,512,-1067\nl0 -0\nc4.7,-7.3,11,-11,19,-11\nH40000v40H1012.3\ns-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232\nc-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1\ns-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26\nc-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z\nM1001 80h400000v40h-400000z",[53,852,290],{"className":853},[289],[53,855,857],{"className":856},[244],[53,858,861],{"className":859,"style":860},[248],"height:0.305em;",[53,862],{}," is large for actions tried seldom relative to their\nparent, so it pulls selection toward under-explored actions; as ",[53,865,867],{"className":866},[56],[53,868,870],{"className":869,"ariaHidden":61},[60],[53,871,873,876,879,882,885,888,891,894],{"className":872},[65],[53,874],{"className":875,"style":580},[69],[53,877,439],{"className":878,"style":438},[74,75],[53,880,323],{"className":881},[306],[53,883,172],{"className":884},[74,75],[53,886,331],{"className":887},[330],[53,889],{"className":890,"style":231},[196],[53,892,15],{"className":893},[74,75],[53,895,342],{"className":896},[341]," grows, the\nbonus shrinks and the value term ",[53,899,901],{"className":900},[56],[53,902,904],{"className":903,"ariaHidden":61},[60],[53,905,907,910,913,916,919,922,925,928],{"className":906},[65],[53,908],{"className":909,"style":580},[69],[53,911,319],{"className":912},[74,75],[53,914,323],{"className":915},[306],[53,917,172],{"className":918},[74,75],[53,920,331],{"className":921},[330],[53,923],{"className":924,"style":231},[196],[53,926,15],{"className":927},[74,75],[53,929,342],{"className":930},[341]," dominates.",[95,933],{"hash":934},"6564cc17b5dcdefef4ca911eddfecbd20daef15117f09dff9d86010480567fd1",[11,936,937,938,989,990,994],{},"Any action with ",[53,939,941],{"className":940},[56],[53,942,944,980],{"className":943,"ariaHidden":61},[60],[53,945,947,950,953,956,959,962,965,968,971,974,977],{"className":946},[65],[53,948],{"className":949,"style":580},[69],[53,951,439],{"className":952,"style":438},[74,75],[53,954,323],{"className":955},[306],[53,957,172],{"className":958},[74,75],[53,960,331],{"className":961},[330],[53,963],{"className":964,"style":231},[196],[53,966,15],{"className":967},[74,75],[53,969,342],{"className":970},[341],[53,972],{"className":973,"style":197},[196],[53,975,205],{"className":976},[204],[53,978],{"className":979,"style":197},[196],[53,981,983,986],{"className":982},[65],[53,984],{"className":985,"style":742},[69],[53,987,746],{"className":988},[74]," is\ntreated as having infinite bound and is selected first — every action gets tried at\nleast once before the bound refines. This is the\n",[15,991,993],{"href":992},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","UCB1 bandit rule"," applied\nat each internal tree node.",[996,997,999],"callout",{"type":998},"definition",[11,1000,1001,1004,1005,1020,1021,1238,1239,1272,1273,1303,1304,1328,1329,1362,1363,1378,1379,1394],{},[27,1002,1003],{},"Definition (UCT tree policy)."," At an internal node ",[53,1006,1008],{"className":1007},[56],[53,1009,1011],{"className":1010,"ariaHidden":61},[60],[53,1012,1014,1017],{"className":1013},[65],[53,1015],{"className":1016,"style":70},[69],[53,1018,172],{"className":1019},[74,75],", select the action\n",[53,1022,1024],{"className":1023},[56],[53,1025,1027,1130],{"className":1026,"ariaHidden":61},[60],[53,1028,1030,1034,1039,1042,1090,1097,1100,1103,1106,1109,1112,1115,1118,1121,1124,1127],{"className":1029},[65],[53,1031],{"className":1032,"style":1033},[69],"height:1.2em;vertical-align:-0.35em;",[53,1035,223,1037],{"className":1036},[222],[53,1038,227],{"style":226},[53,1040],{"className":1041,"style":231},[196],[53,1043,1045,1051],{"className":1044},[222],[53,1046,1048],{"className":1047},[222],[53,1049,285],{"className":1050},[74,284],[53,1052,1055],{"className":1053},[1054],"msupsub",[53,1056,1058,1081],{"className":1057},[239,240],[53,1059,1061,1078],{"className":1060},[244],[53,1062,1065],{"className":1063,"style":1064},[248],"height:0.1514em;",[53,1066,1068,1072],{"style":1067},"top:-2.55em;margin-right:0.05em;",[53,1069],{"className":1070,"style":1071},[255],"height:2.7em;",[53,1073,1075],{"className":1074},[260,261,262,263],[53,1076,15],{"className":1077},[74,75,263],[53,1079,290],{"className":1080},[289],[53,1082,1084],{"className":1083},[244],[53,1085,1088],{"className":1086,"style":1087},[248],"height:0.15em;",[53,1089],{},[53,1091,1093],{"className":1092},[306],[53,1094,312],{"className":1095},[310,1096],"size1",[53,1098],{"className":1099,"style":231},[196],[53,1101,319],{"className":1102},[74,75],[53,1104,323],{"className":1105},[306],[53,1107,172],{"className":1108},[74,75],[53,1110,331],{"className":1111},[330],[53,1113],{"className":1114,"style":231},[196],[53,1116,15],{"className":1117},[74,75],[53,1119,342],{"className":1120},[341],[53,1122],{"className":1123,"style":349},[196],[53,1125,354],{"className":1126},[353],[53,1128],{"className":1129,"style":349},[196],[53,1131,1133,1137,1140,1229,1232],{"className":1132},[65],[53,1134],{"className":1135,"style":1136},[69],"height:1.285em;vertical-align:-0.35em;",[53,1138,371],{"className":1139},[74,75],[53,1141,1143],{"className":1142},[74,378],[53,1144,1146,1221],{"className":1145},[239,240],[53,1147,1149,1218],{"className":1148},[244],[53,1150,1152,1206],{"className":1151,"style":776},[248],[53,1153,1155,1158],{"className":1154,"style":780},[392],[53,1156],{"className":1157,"style":784},[255],[53,1159,1161,1167,1170,1173,1176,1179,1182,1185,1188,1191,1194,1197,1200,1203],{"className":1160,"style":401},[74],[53,1162,1164],{"className":1163},[222],[53,1165,484],{"className":1166},[74,284],[53,1168],{"className":1169,"style":231},[196],[53,1171,439],{"className":1172,"style":438},[74,75],[53,1174,323],{"className":1175},[306],[53,1177,172],{"className":1178},[74,75],[53,1180,342],{"className":1181},[341],[53,1183,812],{"className":1184},[74],[53,1186,439],{"className":1187,"style":438},[74,75],[53,1189,323],{"className":1190},[306],[53,1192,172],{"className":1193},[74,75],[53,1195,331],{"className":1196},[330],[53,1198],{"className":1199,"style":231},[196],[53,1201,15],{"className":1202},[74,75],[53,1204,342],{"className":1205},[341],[53,1207,1208,1211],{"style":836},[53,1209],{"className":1210,"style":784},[255],[53,1212,1214],{"className":1213,"style":843},[525],[528,1215,1216],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,1217],{"d":850},[53,1219,290],{"className":1220},[289],[53,1222,1224],{"className":1223},[244],[53,1225,1227],{"className":1226,"style":860},[248],[53,1228],{},[53,1230],{"className":1231,"style":231},[196],[53,1233,1235],{"className":1234},[341],[53,1236,560],{"className":1237},[310,1096],", where ",[53,1240,1242],{"className":1241},[56],[53,1243,1245],{"className":1244,"ariaHidden":61},[60],[53,1246,1248,1251,1254,1257,1260,1263,1266,1269],{"className":1247},[65],[53,1249],{"className":1250,"style":580},[69],[53,1252,319],{"className":1253},[74,75],[53,1255,323],{"className":1256},[306],[53,1258,172],{"className":1259},[74,75],[53,1261,331],{"className":1262},[330],[53,1264],{"className":1265,"style":231},[196],[53,1267,15],{"className":1268},[74,75],[53,1270,342],{"className":1271},[341]," is\nthe mean simulated return through edge ",[53,1274,1276],{"className":1275},[56],[53,1277,1279],{"className":1278,"ariaHidden":61},[60],[53,1280,1282,1285,1288,1291,1294,1297,1300],{"className":1281},[65],[53,1283],{"className":1284,"style":580},[69],[53,1286,323],{"className":1287},[306],[53,1289,172],{"className":1290},[74,75],[53,1292,331],{"className":1293},[330],[53,1295],{"className":1296,"style":231},[196],[53,1298,15],{"className":1299},[74,75],[53,1301,342],{"className":1302},[341],", ",[53,1305,1307],{"className":1306},[56],[53,1308,1310],{"className":1309,"ariaHidden":61},[60],[53,1311,1313,1316,1319,1322,1325],{"className":1312},[65],[53,1314],{"className":1315,"style":580},[69],[53,1317,439],{"className":1318,"style":438},[74,75],[53,1320,323],{"className":1321},[306],[53,1323,172],{"className":1324},[74,75],[53,1326,342],{"className":1327},[341]," and ",[53,1330,1332],{"className":1331},[56],[53,1333,1335],{"className":1334,"ariaHidden":61},[60],[53,1336,1338,1341,1344,1347,1350,1353,1356,1359],{"className":1337},[65],[53,1339],{"className":1340,"style":580},[69],[53,1342,439],{"className":1343,"style":438},[74,75],[53,1345,323],{"className":1346},[306],[53,1348,172],{"className":1349},[74,75],[53,1351,331],{"className":1352},[330],[53,1354],{"className":1355,"style":231},[196],[53,1357,15],{"className":1358},[74,75],[53,1360,342],{"className":1361},[341]," are visit\ncounts, and ",[53,1364,1366],{"className":1365},[56],[53,1367,1369],{"className":1368,"ariaHidden":61},[60],[53,1370,1372,1375],{"className":1371},[65],[53,1373],{"className":1374,"style":70},[69],[53,1376,371],{"className":1377},[74,75]," weights exploration. Untried actions (count ",[53,1380,1382],{"className":1381},[56],[53,1383,1385],{"className":1384,"ariaHidden":61},[60],[53,1386,1388,1391],{"className":1387},[65],[53,1389],{"className":1390,"style":742},[69],[53,1392,746],{"className":1393},[74],") are selected\nfirst.",[87,1396,1398],{"id":1397},"a-uct-selection-computed","A UCT selection, computed",[11,1400,1401,1402,1417,1418,1461,1462,1495,1496,85],{},"Put real numbers on the bound. Suppose the root ",[53,1403,1405],{"className":1404},[56],[53,1406,1408],{"className":1407,"ariaHidden":61},[60],[53,1409,1411,1414],{"className":1410},[65],[53,1412],{"className":1413,"style":70},[69],[53,1415,172],{"className":1416},[74,75]," has been visited ",[53,1419,1421],{"className":1420},[56],[53,1422,1424,1451],{"className":1423,"ariaHidden":61},[60],[53,1425,1427,1430,1433,1436,1439,1442,1445,1448],{"className":1426},[65],[53,1428],{"className":1429,"style":580},[69],[53,1431,439],{"className":1432,"style":438},[74,75],[53,1434,323],{"className":1435},[306],[53,1437,172],{"className":1438},[74,75],[53,1440,342],{"className":1441},[341],[53,1443],{"className":1444,"style":197},[196],[53,1446,205],{"className":1447},[204],[53,1449],{"className":1450,"style":197},[196],[53,1452,1454,1457],{"className":1453},[65],[53,1455],{"className":1456,"style":742},[69],[53,1458,1460],{"className":1459},[74],"30","\ntimes and has three actions with the statistics below; take exploration weight\n",[53,1463,1465],{"className":1464},[56],[53,1466,1468,1486],{"className":1467,"ariaHidden":61},[60],[53,1469,1471,1474,1477,1480,1483],{"className":1470},[65],[53,1472],{"className":1473,"style":70},[69],[53,1475,371],{"className":1476},[74,75],[53,1478],{"className":1479,"style":197},[196],[53,1481,205],{"className":1482},[204],[53,1484],{"className":1485,"style":197},[196],[53,1487,1489,1492],{"className":1488},[65],[53,1490],{"className":1491,"style":742},[69],[53,1493,39],{"className":1494},[74]," (a common choice when returns are scaled to ",[53,1497,1499],{"className":1498},[56],[53,1500,1502],{"className":1501,"ariaHidden":61},[60],[53,1503,1505,1508,1511,1514,1517,1520,1523],{"className":1504},[65],[53,1506],{"className":1507,"style":580},[69],[53,1509,312],{"className":1510},[306],[53,1512,746],{"className":1513},[74],[53,1515,331],{"className":1516},[330],[53,1518],{"className":1519,"style":231},[196],[53,1521,39],{"className":1522},[74],[53,1524,560],{"className":1525},[341],[1527,1528,1529,1708],"table",{},[1530,1531,1532],"thead",{},[1533,1534,1535,1539,1574,1609,1705],"tr",{},[1536,1537,1538],"th",{},"action",[1536,1540,1541],{},[53,1542,1544],{"className":1543},[56],[53,1545,1547],{"className":1546,"ariaHidden":61},[60],[53,1548,1550,1553,1556,1559,1562,1565,1568,1571],{"className":1549},[65],[53,1551],{"className":1552,"style":580},[69],[53,1554,319],{"className":1555},[74,75],[53,1557,323],{"className":1558},[306],[53,1560,172],{"className":1561},[74,75],[53,1563,331],{"className":1564},[330],[53,1566],{"className":1567,"style":231},[196],[53,1569,15],{"className":1570},[74,75],[53,1572,342],{"className":1573},[341],[1536,1575,1576],{},[53,1577,1579],{"className":1578},[56],[53,1580,1582],{"className":1581,"ariaHidden":61},[60],[53,1583,1585,1588,1591,1594,1597,1600,1603,1606],{"className":1584},[65],[53,1586],{"className":1587,"style":580},[69],[53,1589,439],{"className":1590,"style":438},[74,75],[53,1592,323],{"className":1593},[306],[53,1595,172],{"className":1596},[74,75],[53,1598,331],{"className":1599},[330],[53,1601],{"className":1602,"style":231},[196],[53,1604,15],{"className":1605},[74,75],[53,1607,342],{"className":1608},[341],[1536,1610,1611,1612],{},"bonus ",[53,1613,1615],{"className":1614},[56],[53,1616,1618],{"className":1617,"ariaHidden":61},[60],[53,1619,1621,1624,1627],{"className":1620},[65],[53,1622],{"className":1623,"style":760},[69],[53,1625,371],{"className":1626},[74,75],[53,1628,1630],{"className":1629},[74,378],[53,1631,1633,1697],{"className":1632},[239,240],[53,1634,1636,1694],{"className":1635},[244],[53,1637,1639,1682],{"className":1638,"style":776},[248],[53,1640,1642,1645],{"className":1641,"style":780},[392],[53,1643],{"className":1644,"style":784},[255],[53,1646,1648,1654,1657,1661,1664,1667,1670,1673,1676,1679],{"className":1647,"style":401},[74],[53,1649,1651],{"className":1650},[222],[53,1652,484],{"className":1653},[74,284],[53,1655],{"className":1656,"style":231},[196],[53,1658,1660],{"className":1659},[74],"30\u002F",[53,1662,439],{"className":1663,"style":438},[74,75],[53,1665,323],{"className":1666},[306],[53,1668,172],{"className":1669},[74,75],[53,1671,331],{"className":1672},[330],[53,1674],{"className":1675,"style":231},[196],[53,1677,15],{"className":1678},[74,75],[53,1680,342],{"className":1681},[341],[53,1683,1684,1687],{"style":836},[53,1685],{"className":1686,"style":784},[255],[53,1688,1690],{"className":1689,"style":843},[525],[528,1691,1692],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,1693],{"d":850},[53,1695,290],{"className":1696},[289],[53,1698,1700],{"className":1699},[244],[53,1701,1703],{"className":1702,"style":860},[248],[53,1704],{},[1536,1706,1707],{},"UCT score",[1709,1710,1711,1906,2098],"tbody",{},[1533,1712,1713,1771,1789,1807,1888],{},[1714,1715,1716],"td",{},[53,1717,1719],{"className":1718},[56],[53,1720,1722],{"className":1721,"ariaHidden":61},[60],[53,1723,1725,1729],{"className":1724},[65],[53,1726],{"className":1727,"style":1728},[69],"height:0.5806em;vertical-align:-0.15em;",[53,1730,1732,1735],{"className":1731},[74],[53,1733,15],{"className":1734},[74,75],[53,1736,1738],{"className":1737},[1054],[53,1739,1741,1763],{"className":1740},[239,240],[53,1742,1744,1760],{"className":1743},[244],[53,1745,1748],{"className":1746,"style":1747},[248],"height:0.3011em;",[53,1749,1751,1754],{"style":1750},"top:-2.55em;margin-left:0em;margin-right:0.05em;",[53,1752],{"className":1753,"style":1071},[255],[53,1755,1757],{"className":1756},[260,261,262,263],[53,1758,39],{"className":1759},[74,263],[53,1761,290],{"className":1762},[289],[53,1764,1766],{"className":1765},[244],[53,1767,1769],{"className":1768,"style":1087},[248],[53,1770],{},[1714,1772,1773],{},[53,1774,1776],{"className":1775},[56],[53,1777,1779],{"className":1778,"ariaHidden":61},[60],[53,1780,1782,1785],{"className":1781},[65],[53,1783],{"className":1784,"style":742},[69],[53,1786,1788],{"className":1787},[74],"0.60",[1714,1790,1791],{},[53,1792,1794],{"className":1793},[56],[53,1795,1797],{"className":1796,"ariaHidden":61},[60],[53,1798,1800,1803],{"className":1799},[65],[53,1801],{"className":1802,"style":742},[69],[53,1804,1806],{"className":1805},[74],"20",[1714,1808,1809],{},[53,1810,1812],{"className":1811},[56],[53,1813,1815,1878],{"className":1814,"ariaHidden":61},[60],[53,1816,1818,1821,1869,1872,1875],{"className":1817},[65],[53,1819],{"className":1820,"style":760},[69],[53,1822,1824],{"className":1823},[74,378],[53,1825,1827,1861],{"className":1826},[239,240],[53,1828,1830,1858],{"className":1829},[244],[53,1831,1833,1846],{"className":1832,"style":776},[248],[53,1834,1836,1839],{"className":1835,"style":780},[392],[53,1837],{"className":1838,"style":784},[255],[53,1840,1842],{"className":1841,"style":401},[74],[53,1843,1845],{"className":1844},[74],"3.401\u002F20",[53,1847,1848,1851],{"style":836},[53,1849],{"className":1850,"style":784},[255],[53,1852,1854],{"className":1853,"style":843},[525],[528,1855,1856],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,1857],{"d":850},[53,1859,290],{"className":1860},[289],[53,1862,1864],{"className":1863},[244],[53,1865,1867],{"className":1866,"style":860},[248],[53,1868],{},[53,1870],{"className":1871,"style":197},[196],[53,1873,205],{"className":1874},[204],[53,1876],{"className":1877,"style":197},[196],[53,1879,1881,1884],{"className":1880},[65],[53,1882],{"className":1883,"style":742},[69],[53,1885,1887],{"className":1886},[74],"0.412",[1714,1889,1890],{},[53,1891,1893],{"className":1892},[56],[53,1894,1896],{"className":1895,"ariaHidden":61},[60],[53,1897,1899,1902],{"className":1898},[65],[53,1900],{"className":1901,"style":742},[69],[53,1903,1905],{"className":1904},[74],"1.012",[1533,1907,1908,1963,1981,1999,2080],{},[1714,1909,1910],{},[53,1911,1913],{"className":1912},[56],[53,1914,1916],{"className":1915,"ariaHidden":61},[60],[53,1917,1919,1922],{"className":1918},[65],[53,1920],{"className":1921,"style":1728},[69],[53,1923,1925,1928],{"className":1924},[74],[53,1926,15],{"className":1927},[74,75],[53,1929,1931],{"className":1930},[1054],[53,1932,1934,1955],{"className":1933},[239,240],[53,1935,1937,1952],{"className":1936},[244],[53,1938,1940],{"className":1939,"style":1747},[248],[53,1941,1942,1945],{"style":1750},[53,1943],{"className":1944,"style":1071},[255],[53,1946,1948],{"className":1947},[260,261,262,263],[53,1949,1951],{"className":1950},[74,263],"2",[53,1953,290],{"className":1954},[289],[53,1956,1958],{"className":1957},[244],[53,1959,1961],{"className":1960,"style":1087},[248],[53,1962],{},[1714,1964,1965],{},[53,1966,1968],{"className":1967},[56],[53,1969,1971],{"className":1970,"ariaHidden":61},[60],[53,1972,1974,1977],{"className":1973},[65],[53,1975],{"className":1976,"style":742},[69],[53,1978,1980],{"className":1979},[74],"0.70",[1714,1982,1983],{},[53,1984,1986],{"className":1985},[56],[53,1987,1989],{"className":1988,"ariaHidden":61},[60],[53,1990,1992,1995],{"className":1991},[65],[53,1993],{"className":1994,"style":742},[69],[53,1996,1998],{"className":1997},[74],"8",[1714,2000,2001],{},[53,2002,2004],{"className":2003},[56],[53,2005,2007,2070],{"className":2006,"ariaHidden":61},[60],[53,2008,2010,2013,2061,2064,2067],{"className":2009},[65],[53,2011],{"className":2012,"style":760},[69],[53,2014,2016],{"className":2015},[74,378],[53,2017,2019,2053],{"className":2018},[239,240],[53,2020,2022,2050],{"className":2021},[244],[53,2023,2025,2038],{"className":2024,"style":776},[248],[53,2026,2028,2031],{"className":2027,"style":780},[392],[53,2029],{"className":2030,"style":784},[255],[53,2032,2034],{"className":2033,"style":401},[74],[53,2035,2037],{"className":2036},[74],"3.401\u002F8",[53,2039,2040,2043],{"style":836},[53,2041],{"className":2042,"style":784},[255],[53,2044,2046],{"className":2045,"style":843},[525],[528,2047,2048],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,2049],{"d":850},[53,2051,290],{"className":2052},[289],[53,2054,2056],{"className":2055},[244],[53,2057,2059],{"className":2058,"style":860},[248],[53,2060],{},[53,2062],{"className":2063,"style":197},[196],[53,2065,205],{"className":2066},[204],[53,2068],{"className":2069,"style":197},[196],[53,2071,2073,2076],{"className":2072},[65],[53,2074],{"className":2075,"style":742},[69],[53,2077,2079],{"className":2078},[74],"0.652",[1714,2081,2082],{},[53,2083,2085],{"className":2084},[56],[53,2086,2088],{"className":2087,"ariaHidden":61},[60],[53,2089,2091,2094],{"className":2090},[65],[53,2092],{"className":2093,"style":742},[69],[53,2095,2097],{"className":2096},[74],"1.352",[1533,2099,2100,2155,2173,2190,2271],{},[1714,2101,2102],{},[53,2103,2105],{"className":2104},[56],[53,2106,2108],{"className":2107,"ariaHidden":61},[60],[53,2109,2111,2114],{"className":2110},[65],[53,2112],{"className":2113,"style":1728},[69],[53,2115,2117,2120],{"className":2116},[74],[53,2118,15],{"className":2119},[74,75],[53,2121,2123],{"className":2122},[1054],[53,2124,2126,2147],{"className":2125},[239,240],[53,2127,2129,2144],{"className":2128},[244],[53,2130,2132],{"className":2131,"style":1747},[248],[53,2133,2134,2137],{"style":1750},[53,2135],{"className":2136,"style":1071},[255],[53,2138,2140],{"className":2139},[260,261,262,263],[53,2141,2143],{"className":2142},[74,263],"3",[53,2145,290],{"className":2146},[289],[53,2148,2150],{"className":2149},[244],[53,2151,2153],{"className":2152,"style":1087},[248],[53,2154],{},[1714,2156,2157],{},[53,2158,2160],{"className":2159},[56],[53,2161,2163],{"className":2162,"ariaHidden":61},[60],[53,2164,2166,2169],{"className":2165},[65],[53,2167],{"className":2168,"style":742},[69],[53,2170,2172],{"className":2171},[74],"0.50",[1714,2174,2175],{},[53,2176,2178],{"className":2177},[56],[53,2179,2181],{"className":2180,"ariaHidden":61},[60],[53,2182,2184,2187],{"className":2183},[65],[53,2185],{"className":2186,"style":742},[69],[53,2188,1951],{"className":2189},[74],[1714,2191,2192],{},[53,2193,2195],{"className":2194},[56],[53,2196,2198,2261],{"className":2197,"ariaHidden":61},[60],[53,2199,2201,2204,2252,2255,2258],{"className":2200},[65],[53,2202],{"className":2203,"style":760},[69],[53,2205,2207],{"className":2206},[74,378],[53,2208,2210,2244],{"className":2209},[239,240],[53,2211,2213,2241],{"className":2212},[244],[53,2214,2216,2229],{"className":2215,"style":776},[248],[53,2217,2219,2222],{"className":2218,"style":780},[392],[53,2220],{"className":2221,"style":784},[255],[53,2223,2225],{"className":2224,"style":401},[74],[53,2226,2228],{"className":2227},[74],"3.401\u002F2",[53,2230,2231,2234],{"style":836},[53,2232],{"className":2233,"style":784},[255],[53,2235,2237],{"className":2236,"style":843},[525],[528,2238,2239],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,2240],{"d":850},[53,2242,290],{"className":2243},[289],[53,2245,2247],{"className":2246},[244],[53,2248,2250],{"className":2249,"style":860},[248],[53,2251],{},[53,2253],{"className":2254,"style":197},[196],[53,2256,205],{"className":2257},[204],[53,2259],{"className":2260,"style":197},[196],[53,2262,2264,2267],{"className":2263},[65],[53,2265],{"className":2266,"style":742},[69],[53,2268,2270],{"className":2269},[74],"1.304",[1714,2272,2273],{},[53,2274,2276],{"className":2275},[56],[53,2277,2279],{"className":2278,"ariaHidden":61},[60],[53,2280,2282,2285],{"className":2281},[65],[53,2283],{"className":2284,"style":742},[69],[53,2286,2288],{"className":2287},[74],"1.804",[11,2290,567,2291,2335,2336,2388,2389,2423,2424,2476,2477,2511,2512,2527,2528,1328,2580,2632,2633,2637],{},[53,2292,2294],{"className":2293},[56],[53,2295,2297,2325],{"className":2296,"ariaHidden":61},[60],[53,2298,2300,2304,2310,2313,2316,2319,2322],{"className":2299},[65],[53,2301],{"className":2302,"style":2303},[69],"height:0.6944em;",[53,2305,2307],{"className":2306},[222],[53,2308,484],{"className":2309},[74,284],[53,2311],{"className":2312,"style":231},[196],[53,2314,1460],{"className":2315},[74],[53,2317],{"className":2318,"style":197},[196],[53,2320,205],{"className":2321},[204],[53,2323],{"className":2324,"style":197},[196],[53,2326,2328,2331],{"className":2327},[65],[53,2329],{"className":2330,"style":742},[69],[53,2332,2334],{"className":2333},[74],"3.401",". The greedy choice by value alone is ",[53,2337,2339],{"className":2338},[56],[53,2340,2342],{"className":2341,"ariaHidden":61},[60],[53,2343,2345,2348],{"className":2344},[65],[53,2346],{"className":2347,"style":1728},[69],[53,2349,2351,2354],{"className":2350},[74],[53,2352,15],{"className":2353},[74,75],[53,2355,2357],{"className":2356},[1054],[53,2358,2360,2380],{"className":2359},[239,240],[53,2361,2363,2377],{"className":2362},[244],[53,2364,2366],{"className":2365,"style":1747},[248],[53,2367,2368,2371],{"style":1750},[53,2369],{"className":2370,"style":1071},[255],[53,2372,2374],{"className":2373},[260,261,262,263],[53,2375,1951],{"className":2376},[74,263],[53,2378,290],{"className":2379},[289],[53,2381,2383],{"className":2382},[244],[53,2384,2386],{"className":2385,"style":1087},[248],[53,2387],{}," (highest\n",[53,2390,2392],{"className":2391},[56],[53,2393,2395,2414],{"className":2394,"ariaHidden":61},[60],[53,2396,2398,2402,2405,2408,2411],{"className":2397},[65],[53,2399],{"className":2400,"style":2401},[69],"height:0.8778em;vertical-align:-0.1944em;",[53,2403,319],{"className":2404},[74,75],[53,2406],{"className":2407,"style":197},[196],[53,2409,205],{"className":2410},[204],[53,2412],{"className":2413,"style":197},[196],[53,2415,2417,2420],{"className":2416},[65],[53,2418],{"className":2419,"style":742},[69],[53,2421,1980],{"className":2422},[74],"), but UCT selects ",[53,2425,2427],{"className":2426},[56],[53,2428,2430],{"className":2429,"ariaHidden":61},[60],[53,2431,2433,2436],{"className":2432},[65],[53,2434],{"className":2435,"style":1728},[69],[53,2437,2439,2442],{"className":2438},[74],[53,2440,15],{"className":2441},[74,75],[53,2443,2445],{"className":2444},[1054],[53,2446,2448,2468],{"className":2447},[239,240],[53,2449,2451,2465],{"className":2450},[244],[53,2452,2454],{"className":2453,"style":1747},[248],[53,2455,2456,2459],{"style":1750},[53,2457],{"className":2458,"style":1071},[255],[53,2460,2462],{"className":2461},[260,261,262,263],[53,2463,2143],{"className":2464},[74,263],[53,2466,290],{"className":2467},[289],[53,2469,2471],{"className":2470},[244],[53,2472,2474],{"className":2473,"style":1087},[248],[53,2475],{},": its low visit count ",[53,2478,2480],{"className":2479},[56],[53,2481,2483,2502],{"className":2482,"ariaHidden":61},[60],[53,2484,2486,2490,2493,2496,2499],{"className":2485},[65],[53,2487],{"className":2488,"style":2489},[69],"height:0.6833em;",[53,2491,439],{"className":2492,"style":438},[74,75],[53,2494],{"className":2495,"style":197},[196],[53,2497,205],{"className":2498},[204],[53,2500],{"className":2501,"style":197},[196],[53,2503,2505,2508],{"className":2504},[65],[53,2506],{"className":2507,"style":742},[69],[53,2509,1951],{"className":2510},[74]," gives it a large\nexploration bonus ",[53,2513,2515],{"className":2514},[56],[53,2516,2518],{"className":2517,"ariaHidden":61},[60],[53,2519,2521,2524],{"className":2520},[65],[53,2522],{"className":2523,"style":742},[69],[53,2525,2270],{"className":2526},[74],", enough to overtake the better-valued but well-explored\n",[53,2529,2531],{"className":2530},[56],[53,2532,2534],{"className":2533,"ariaHidden":61},[60],[53,2535,2537,2540],{"className":2536},[65],[53,2538],{"className":2539,"style":1728},[69],[53,2541,2543,2546],{"className":2542},[74],[53,2544,15],{"className":2545},[74,75],[53,2547,2549],{"className":2548},[1054],[53,2550,2552,2572],{"className":2551},[239,240],[53,2553,2555,2569],{"className":2554},[244],[53,2556,2558],{"className":2557,"style":1747},[248],[53,2559,2560,2563],{"style":1750},[53,2561],{"className":2562,"style":1071},[255],[53,2564,2566],{"className":2565},[260,261,262,263],[53,2567,39],{"className":2568},[74,263],[53,2570,290],{"className":2571},[289],[53,2573,2575],{"className":2574},[244],[53,2576,2578],{"className":2577,"style":1087},[248],[53,2579],{},[53,2581,2583],{"className":2582},[56],[53,2584,2586],{"className":2585,"ariaHidden":61},[60],[53,2587,2589,2592],{"className":2588},[65],[53,2590],{"className":2591,"style":1728},[69],[53,2593,2595,2598],{"className":2594},[74],[53,2596,15],{"className":2597},[74,75],[53,2599,2601],{"className":2600},[1054],[53,2602,2604,2624],{"className":2603},[239,240],[53,2605,2607,2621],{"className":2606},[244],[53,2608,2610],{"className":2609,"style":1747},[248],[53,2611,2612,2615],{"style":1750},[53,2613],{"className":2614,"style":1071},[255],[53,2616,2618],{"className":2617},[260,261,262,263],[53,2619,1951],{"className":2620},[74,263],[53,2622,290],{"className":2623},[289],[53,2625,2627],{"className":2626},[244],[53,2628,2630],{"className":2629,"style":1087},[248],[53,2631],{},". This is the intended behavior: an action that ",[2634,2635,2636],"em",{},"might"," be\ngood but has barely been tried is selected for further sampling.",[11,2639,2640,2641,2693,2694,2710,2711,2857,2858,2873,2874,1303,2917,2960],{},"Now suppose the simulation through ",[53,2642,2644],{"className":2643},[56],[53,2645,2647],{"className":2646,"ariaHidden":61},[60],[53,2648,2650,2653],{"className":2649},[65],[53,2651],{"className":2652,"style":1728},[69],[53,2654,2656,2659],{"className":2655},[74],[53,2657,15],{"className":2658},[74,75],[53,2660,2662],{"className":2661},[1054],[53,2663,2665,2685],{"className":2664},[239,240],[53,2666,2668,2682],{"className":2667},[244],[53,2669,2671],{"className":2670,"style":1747},[248],[53,2672,2673,2676],{"style":1750},[53,2674],{"className":2675,"style":1071},[255],[53,2677,2679],{"className":2678},[260,261,262,263],[53,2680,2143],{"className":2681},[74,263],[53,2683,290],{"className":2684},[289],[53,2686,2688],{"className":2687},[244],[53,2689,2691],{"className":2690,"style":1087},[248],[53,2692],{}," returns a poor ",[53,2695,2697],{"className":2696},[56],[53,2698,2700],{"className":2699,"ariaHidden":61},[60],[53,2701,2703,2706],{"className":2702},[65],[53,2704],{"className":2705,"style":742},[69],[53,2707,2709],{"className":2708},[74],"0.1",", dragging its mean to\n",[53,2712,2714],{"className":2713},[56],[53,2715,2717,2781,2803,2822,2847],{"className":2716,"ariaHidden":61},[60],[53,2718,2720,2723,2726,2729,2769,2772,2775,2778],{"className":2719},[65],[53,2721],{"className":2722,"style":580},[69],[53,2724,319],{"className":2725},[74,75],[53,2727,323],{"className":2728},[306],[53,2730,2732,2735],{"className":2731},[74],[53,2733,15],{"className":2734},[74,75],[53,2736,2738],{"className":2737},[1054],[53,2739,2741,2761],{"className":2740},[239,240],[53,2742,2744,2758],{"className":2743},[244],[53,2745,2747],{"className":2746,"style":1747},[248],[53,2748,2749,2752],{"style":1750},[53,2750],{"className":2751,"style":1071},[255],[53,2753,2755],{"className":2754},[260,261,262,263],[53,2756,2143],{"className":2757},[74,263],[53,2759,290],{"className":2760},[289],[53,2762,2764],{"className":2763},[244],[53,2765,2767],{"className":2766,"style":1087},[248],[53,2768],{},[53,2770,342],{"className":2771},[341],[53,2773],{"className":2774,"style":197},[196],[53,2776,205],{"className":2777},[204],[53,2779],{"className":2780,"style":197},[196],[53,2782,2784,2787,2790,2793,2796,2800],{"className":2783},[65],[53,2785],{"className":2786,"style":580},[69],[53,2788,323],{"className":2789},[306],[53,2791,2172],{"className":2792},[74],[53,2794],{"className":2795,"style":349},[196],[53,2797,2799],{"className":2798},[353],"⋅",[53,2801],{"className":2802,"style":349},[196],[53,2804,2806,2810,2813,2816,2819],{"className":2805},[65],[53,2807],{"className":2808,"style":2809},[69],"height:0.7278em;vertical-align:-0.0833em;",[53,2811,1951],{"className":2812},[74],[53,2814],{"className":2815,"style":349},[196],[53,2817,354],{"className":2818},[353],[53,2820],{"className":2821,"style":349},[196],[53,2823,2825,2828,2831,2834,2838,2841,2844],{"className":2824},[65],[53,2826],{"className":2827,"style":580},[69],[53,2829,2709],{"className":2830},[74],[53,2832,342],{"className":2833},[341],[53,2835,2837],{"className":2836},[74],"\u002F3",[53,2839],{"className":2840,"style":197},[196],[53,2842,205],{"className":2843},[204],[53,2845],{"className":2846,"style":197},[196],[53,2848,2850,2853],{"className":2849},[65],[53,2851],{"className":2852,"style":742},[69],[53,2854,2856],{"className":2855},[74],"0.367"," and its count to ",[53,2859,2861],{"className":2860},[56],[53,2862,2864],{"className":2863,"ariaHidden":61},[60],[53,2865,2867,2870],{"className":2866},[65],[53,2868],{"className":2869,"style":742},[69],[53,2871,2143],{"className":2872},[74],". Recompute with\n",[53,2875,2877],{"className":2876},[56],[53,2878,2880,2907],{"className":2879,"ariaHidden":61},[60],[53,2881,2883,2886,2889,2892,2895,2898,2901,2904],{"className":2882},[65],[53,2884],{"className":2885,"style":580},[69],[53,2887,439],{"className":2888,"style":438},[74,75],[53,2890,323],{"className":2891},[306],[53,2893,172],{"className":2894},[74,75],[53,2896,342],{"className":2897},[341],[53,2899],{"className":2900,"style":197},[196],[53,2902,205],{"className":2903},[204],[53,2905],{"className":2906,"style":197},[196],[53,2908,2910,2913],{"className":2909},[65],[53,2911],{"className":2912,"style":742},[69],[53,2914,2916],{"className":2915},[74],"31",[53,2918,2920],{"className":2919},[56],[53,2921,2923,2950],{"className":2922,"ariaHidden":61},[60],[53,2924,2926,2929,2935,2938,2941,2944,2947],{"className":2925},[65],[53,2927],{"className":2928,"style":2303},[69],[53,2930,2932],{"className":2931},[222],[53,2933,484],{"className":2934},[74,284],[53,2936],{"className":2937,"style":231},[196],[53,2939,2916],{"className":2940},[74],[53,2942],{"className":2943,"style":197},[196],[53,2945,205],{"className":2946},[204],[53,2948],{"className":2949,"style":197},[196],[53,2951,2953,2956],{"className":2952},[65],[53,2954],{"className":2955,"style":742},[69],[53,2957,2959],{"className":2958},[74],"3.434",":",[53,2962,2964],{"className":2963},[177],[53,2965,2967],{"className":2966},[56],[53,2968,2970,3038,3056,3123,3141,3160],{"className":2969,"ariaHidden":61},[60],[53,2971,2973,2976,2983,2986,3026,3029,3032,3035],{"className":2972},[65],[53,2974],{"className":2975,"style":580},[69],[53,2977,2980],{"className":2978},[74,2979],"text",[53,2981,155],{"className":2982},[74],[53,2984,323],{"className":2985},[306],[53,2987,2989,2992],{"className":2988},[74],[53,2990,15],{"className":2991},[74,75],[53,2993,2995],{"className":2994},[1054],[53,2996,2998,3018],{"className":2997},[239,240],[53,2999,3001,3015],{"className":3000},[244],[53,3002,3004],{"className":3003,"style":1747},[248],[53,3005,3006,3009],{"style":1750},[53,3007],{"className":3008,"style":1071},[255],[53,3010,3012],{"className":3011},[260,261,262,263],[53,3013,2143],{"className":3014},[74,263],[53,3016,290],{"className":3017},[289],[53,3019,3021],{"className":3020},[244],[53,3022,3024],{"className":3023,"style":1087},[248],[53,3025],{},[53,3027,342],{"className":3028},[341],[53,3030],{"className":3031,"style":197},[196],[53,3033,205],{"className":3034},[204],[53,3036],{"className":3037,"style":197},[196],[53,3039,3041,3044,3047,3050,3053],{"className":3040},[65],[53,3042],{"className":3043,"style":2809},[69],[53,3045,2856],{"className":3046},[74],[53,3048],{"className":3049,"style":349},[196],[53,3051,354],{"className":3052},[353],[53,3054],{"className":3055,"style":349},[196],[53,3057,3059,3063,3114,3117,3120],{"className":3058},[65],[53,3060],{"className":3061,"style":3062},[69],"height:1.24em;vertical-align:-0.2561em;",[53,3064,3066],{"className":3065},[74,378],[53,3067,3069,3105],{"className":3068},[239,240],[53,3070,3072,3102],{"className":3071},[244],[53,3073,3076,3089],{"className":3074,"style":3075},[248],"height:0.9839em;",[53,3077,3079,3082],{"className":3078,"style":780},[392],[53,3080],{"className":3081,"style":784},[255],[53,3083,3085],{"className":3084,"style":401},[74],[53,3086,3088],{"className":3087},[74],"3.434\u002F3",[53,3090,3092,3095],{"style":3091},"top:-2.9439em;",[53,3093],{"className":3094,"style":784},[255],[53,3096,3098],{"className":3097,"style":843},[525],[528,3099,3100],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,3101],{"d":850},[53,3103,290],{"className":3104},[289],[53,3106,3108],{"className":3107},[244],[53,3109,3112],{"className":3110,"style":3111},[248],"height:0.2561em;",[53,3113],{},[53,3115],{"className":3116,"style":197},[196],[53,3118,205],{"className":3119},[204],[53,3121],{"className":3122,"style":197},[196],[53,3124,3126,3129,3132,3135,3138],{"className":3125},[65],[53,3127],{"className":3128,"style":2809},[69],[53,3130,2856],{"className":3131},[74],[53,3133],{"className":3134,"style":349},[196],[53,3136,354],{"className":3137},[353],[53,3139],{"className":3140,"style":349},[196],[53,3142,3144,3147,3151,3154,3157],{"className":3143},[65],[53,3145],{"className":3146,"style":742},[69],[53,3148,3150],{"className":3149},[74],"1.070",[53,3152],{"className":3153,"style":197},[196],[53,3155,205],{"className":3156},[204],[53,3158],{"className":3159,"style":197},[196],[53,3161,3163,3167,3171],{"className":3162},[65],[53,3164],{"className":3165,"style":3166},[69],"height:0.8389em;vertical-align:-0.1944em;",[53,3168,3170],{"className":3169},[74],"1.437",[53,3172,331],{"className":3173},[330],[11,3175,3176,3177,3229,3230,3327,3328,3380,3381,3384,3385,3437],{},"while ",[53,3178,3180],{"className":3179},[56],[53,3181,3183],{"className":3182,"ariaHidden":61},[60],[53,3184,3186,3189],{"className":3185},[65],[53,3187],{"className":3188,"style":1728},[69],[53,3190,3192,3195],{"className":3191},[74],[53,3193,15],{"className":3194},[74,75],[53,3196,3198],{"className":3197},[1054],[53,3199,3201,3221],{"className":3200},[239,240],[53,3202,3204,3218],{"className":3203},[244],[53,3205,3207],{"className":3206,"style":1747},[248],[53,3208,3209,3212],{"style":1750},[53,3210],{"className":3211,"style":1071},[255],[53,3213,3215],{"className":3214},[260,261,262,263],[53,3216,1951],{"className":3217},[74,263],[53,3219,290],{"className":3220},[289],[53,3222,3224],{"className":3223},[244],[53,3225,3227],{"className":3226,"style":1087},[248],[53,3228],{},"'s score rises only slightly to ",[53,3231,3233],{"className":3232},[56],[53,3234,3236,3254,3317],{"className":3235,"ariaHidden":61},[60],[53,3237,3239,3242,3245,3248,3251],{"className":3238},[65],[53,3240],{"className":3241,"style":2809},[69],[53,3243,1980],{"className":3244},[74],[53,3246],{"className":3247,"style":349},[196],[53,3249,354],{"className":3250},[353],[53,3252],{"className":3253,"style":349},[196],[53,3255,3257,3260,3308,3311,3314],{"className":3256},[65],[53,3258],{"className":3259,"style":760},[69],[53,3261,3263],{"className":3262},[74,378],[53,3264,3266,3300],{"className":3265},[239,240],[53,3267,3269,3297],{"className":3268},[244],[53,3270,3272,3285],{"className":3271,"style":776},[248],[53,3273,3275,3278],{"className":3274,"style":780},[392],[53,3276],{"className":3277,"style":784},[255],[53,3279,3281],{"className":3280,"style":401},[74],[53,3282,3284],{"className":3283},[74],"3.434\u002F8",[53,3286,3287,3290],{"style":836},[53,3288],{"className":3289,"style":784},[255],[53,3291,3293],{"className":3292,"style":843},[525],[528,3294,3295],{"xmlns":530,"width":531,"height":846,"viewBox":847,"preserveAspectRatio":534},[536,3296],{"d":850},[53,3298,290],{"className":3299},[289],[53,3301,3303],{"className":3302},[244],[53,3304,3306],{"className":3305,"style":860},[248],[53,3307],{},[53,3309],{"className":3310,"style":197},[196],[53,3312,205],{"className":3313},[204],[53,3315],{"className":3316,"style":197},[196],[53,3318,3320,3323],{"className":3319},[65],[53,3321],{"className":3322,"style":742},[69],[53,3324,3326],{"className":3325},[74],"1.355",". So\n",[53,3329,3331],{"className":3330},[56],[53,3332,3334],{"className":3333,"ariaHidden":61},[60],[53,3335,3337,3340],{"className":3336},[65],[53,3338],{"className":3339,"style":1728},[69],[53,3341,3343,3346],{"className":3342},[74],[53,3344,15],{"className":3345},[74,75],[53,3347,3349],{"className":3348},[1054],[53,3350,3352,3372],{"className":3351},[239,240],[53,3353,3355,3369],{"className":3354},[244],[53,3356,3358],{"className":3357,"style":1747},[248],[53,3359,3360,3363],{"style":1750},[53,3361],{"className":3362,"style":1071},[255],[53,3364,3366],{"className":3365},[260,261,262,263],[53,3367,2143],{"className":3368},[74,263],[53,3370,290],{"className":3371},[289],[53,3373,3375],{"className":3374},[244],[53,3376,3378],{"className":3377,"style":1087},[248],[53,3379],{}," is ",[2634,3382,3383],{},"still"," selected next — one bad rollout does not eliminate it — but\neach additional visit shrinks its bonus and sharpens its mean, and after a few more\npoor returns its score will fall below ",[53,3386,3388],{"className":3387},[56],[53,3389,3391],{"className":3390,"ariaHidden":61},[60],[53,3392,3394,3397],{"className":3393},[65],[53,3395],{"className":3396,"style":1728},[69],[53,3398,3400,3403],{"className":3399},[74],[53,3401,15],{"className":3402},[74,75],[53,3404,3406],{"className":3405},[1054],[53,3407,3409,3429],{"className":3408},[239,240],[53,3410,3412,3426],{"className":3411},[244],[53,3413,3415],{"className":3414,"style":1747},[248],[53,3416,3417,3420],{"style":1750},[53,3418],{"className":3419,"style":1071},[255],[53,3421,3423],{"className":3422},[260,261,262,263],[53,3424,1951],{"className":3425},[74,263],[53,3427,290],{"className":3428},[289],[53,3430,3432],{"className":3431},[244],[53,3433,3435],{"className":3434,"style":1087},[248],[53,3436],{},"'s and selection will move on. The bound\nkeeps sampling uncertain actions until accumulated evidence, not a single sample,\nsettles their value.",[95,3439],{"hash":3440},"642e96c38e6f5f32dfd5111006592f6084f14fbdfa239db6a6b096e8255305aa",[87,3442,3444],{"id":3443},"the-full-algorithm","The full algorithm",[11,3446,3447],{},"Putting the four steps and the UCT tree policy together gives the standard\ndecision-time procedure. Each call plans from the current root state and returns the\naction to play; the environment then advances and the whole thing runs again.",[3449,3450,3454],"pre",{"className":3451,"code":3452,"language":3453,"meta":6,"style":6},"language-algorithm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","caption: $\\textsc{MCTS}(s_0)$ — decision-time planning by growing a search tree from the current state $s_0$\ncreate root node $v_0$ for state $s_0$\nwhile time budget remains do\n  $v \\gets v_0$ \u002F\u002F Selection: descend by the tree policy (UCT)\n  while $v$ is fully expanded and non-terminal do\n    $v \\gets$ child of $v$ maximizing $Q(v') + c\\sqrt{\\ln N(v)\u002FN(v')}$\n  if $v$ is non-terminal then \u002F\u002F Expansion\n    $v \\gets$ new child of $v$ from an untried action\n  $G \\gets \\textsc{Rollout-Policy-Simulate}(v)$ \u002F\u002F Simulation to a terminal state\n  repeat \u002F\u002F Backup along the traversed edges\n    $N(v) \\gets N(v) + 1$\n    $Q(v) \\gets Q(v) + \\dfrac{G - Q(v)}{N(v)}$ \u002F\u002F running mean of returns\n    $v \\gets$ parent of $v$\n  until $v$ is above the root\nreturn action from $s_0$ with the largest visit count $N$\n","algorithm",[3455,3456,3457,3464,3470,3476,3482,3488,3494,3500,3506,3512,3518,3524,3530,3536,3542],"code",{"__ignoreMap":6},[53,3458,3461],{"class":3459,"line":3460},"line",1,[53,3462,3463],{},"caption: $\\textsc{MCTS}(s_0)$ — decision-time planning by growing a search tree from the current state $s_0$\n",[53,3465,3467],{"class":3459,"line":3466},2,[53,3468,3469],{},"create root node $v_0$ for state $s_0$\n",[53,3471,3473],{"class":3459,"line":3472},3,[53,3474,3475],{},"while time budget remains do\n",[53,3477,3479],{"class":3459,"line":3478},4,[53,3480,3481],{},"  $v \\gets v_0$ \u002F\u002F Selection: descend by the tree policy (UCT)\n",[53,3483,3485],{"class":3459,"line":3484},5,[53,3486,3487],{},"  while $v$ is fully expanded and non-terminal do\n",[53,3489,3491],{"class":3459,"line":3490},6,[53,3492,3493],{},"    $v \\gets$ child of $v$ maximizing $Q(v') + c\\sqrt{\\ln N(v)\u002FN(v')}$\n",[53,3495,3497],{"class":3459,"line":3496},7,[53,3498,3499],{},"  if $v$ is non-terminal then \u002F\u002F Expansion\n",[53,3501,3503],{"class":3459,"line":3502},8,[53,3504,3505],{},"    $v \\gets$ new child of $v$ from an untried action\n",[53,3507,3509],{"class":3459,"line":3508},9,[53,3510,3511],{},"  $G \\gets \\textsc{Rollout-Policy-Simulate}(v)$ \u002F\u002F Simulation to a terminal state\n",[53,3513,3515],{"class":3459,"line":3514},10,[53,3516,3517],{},"  repeat \u002F\u002F Backup along the traversed edges\n",[53,3519,3521],{"class":3459,"line":3520},11,[53,3522,3523],{},"    $N(v) \\gets N(v) + 1$\n",[53,3525,3527],{"class":3459,"line":3526},12,[53,3528,3529],{},"    $Q(v) \\gets Q(v) + \\dfrac{G - Q(v)}{N(v)}$ \u002F\u002F running mean of returns\n",[53,3531,3533],{"class":3459,"line":3532},13,[53,3534,3535],{},"    $v \\gets$ parent of $v$\n",[53,3537,3539],{"class":3459,"line":3538},14,[53,3540,3541],{},"  until $v$ is above the root\n",[53,3543,3545],{"class":3459,"line":3544},15,[53,3546,3547],{},"return action from $s_0$ with the largest visit count $N$\n",[11,3549,3550,3551,3554],{},"After the budget is exhausted, the agent selects a root action by the accumulated\nstatistics — commonly the action with the ",[27,3552,3553],{},"largest visit count"," (robust to\noutliers) rather than the largest value. The environment transitions to a new state,\nand MCTS runs again, usually starting from the surviving subtree rooted at the new\nstate (any descendants of the chosen child are reused; the rest is discarded).",[87,3556,3558],{"id":3557},"why-mcts-works","Why MCTS works",[11,3560,3561,3562,3565,3566,3569,3570,3585],{},"MCTS's success follows from principles already covered in this course. At its\nbase it is a decision-time rollout algorithm on Monte Carlo control from the root, so\nit inherits online, incremental, sample-based value estimation and one-step policy\nimprovement. Beyond that, it ",[27,3563,3564],{},"saves"," the action-value estimates on the tree edges\nand updates them with the sample updates of reinforcement learning. By incrementally\nexpanding the tree along high-return trajectories, MCTS effectively grows a lookup\ntable — a ",[2634,3567,3568],{},"partial"," action-value function — with memory allocated to the state–action\npairs in the initial segments of high-yielding sample trajectories. It gets the\nbenefit of a learned ",[53,3571,3573],{"className":3572},[56],[53,3574,3576],{"className":3575,"ariaHidden":61},[60],[53,3577,3579,3582],{"className":3578},[65],[53,3580],{"className":3581,"style":2401},[69],[53,3583,319],{"className":3584},[74,75]," concentrated where it matters, without approximating a value\nfunction globally, and it retains past experience to guide exploration.",[87,3587,3589],{"id":3588},"from-mcts-to-alphazero","From MCTS to AlphaZero",[11,3591,3592,3593,3660,3661,3741,3742,564],{},"Finally, the leaf evaluation and the rollout policy need not stay simple.\nPlain MCTS evaluates a leaf by rolling out to termination under a weak\ndefault policy — noisy, and only as good as that policy. Replace the rollout with a\ndeep neural network that maps a position to a value estimate ",[53,3594,3596],{"className":3595},[56],[53,3597,3599],{"className":3598,"ariaHidden":61},[60],[53,3600,3602,3605,3651,3654,3657],{"className":3601},[65],[53,3603],{"className":3604,"style":580},[69],[53,3606,3608,3613],{"className":3607},[74],[53,3609,3612],{"className":3610,"style":3611},[74,75],"margin-right:0.0359em;","v",[53,3614,3616],{"className":3615},[1054],[53,3617,3619,3643],{"className":3618},[239,240],[53,3620,3622,3640],{"className":3621},[244],[53,3623,3626],{"className":3624,"style":3625},[248],"height:0.3361em;",[53,3627,3629,3632],{"style":3628},"top:-2.55em;margin-left:-0.0359em;margin-right:0.05em;",[53,3630],{"className":3631,"style":1071},[255],[53,3633,3635],{"className":3634},[260,261,262,263],[53,3636,3639],{"className":3637,"style":3638},[74,75,263],"margin-right:0.0278em;","θ",[53,3641,290],{"className":3642},[289],[53,3644,3646],{"className":3645},[244],[53,3647,3649],{"className":3648,"style":1087},[248],[53,3650],{},[53,3652,323],{"className":3653},[306],[53,3655,172],{"className":3656},[74,75],[53,3658,342],{"className":3659},[341]," and a\npolicy prior ",[53,3662,3664],{"className":3663},[56],[53,3665,3667,3729],{"className":3666,"ariaHidden":61},[60],[53,3668,3670,3673,3713,3716,3719,3722,3726],{"className":3669},[65],[53,3671],{"className":3672,"style":580},[69],[53,3674,3676,3679],{"className":3675},[74],[53,3677,11],{"className":3678},[74,75],[53,3680,3682],{"className":3681},[1054],[53,3683,3685,3705],{"className":3684},[239,240],[53,3686,3688,3702],{"className":3687},[244],[53,3689,3691],{"className":3690,"style":3625},[248],[53,3692,3693,3696],{"style":1750},[53,3694],{"className":3695,"style":1071},[255],[53,3697,3699],{"className":3698},[260,261,262,263],[53,3700,3639],{"className":3701,"style":3638},[74,75,263],[53,3703,290],{"className":3704},[289],[53,3706,3708],{"className":3707},[244],[53,3709,3711],{"className":3710,"style":1087},[248],[53,3712],{},[53,3714,323],{"className":3715},[306],[53,3717,15],{"className":3718},[74,75],[53,3720],{"className":3721,"style":197},[196],[53,3723,3725],{"className":3724},[204],"∣",[53,3727],{"className":3728,"style":197},[196],[53,3730,3732,3735,3738],{"className":3731},[65],[53,3733],{"className":3734,"style":580},[69],[53,3736,172],{"className":3737},[74,75],[53,3739,342],{"className":3740},[341],", and fold that prior into the tree policy (a\nPUCT-style variant of UCT that biases selection toward high-prior actions), and the\nsearch becomes much stronger: the network supplies the leaf values and the move\nsuggestions that make a deep, focused lookahead tractable, while MCTS supplies the\nlookahead that corrects the network's errors. Train that network by self-play, using\nthe search's own visit counts and game outcomes as targets, and MCTS becomes the\nsearch inside AlphaGo and AlphaZero. The full account — the value\u002Fpolicy\nnetwork, self-play training, and the tree-search integration — is the subject of the\n",[15,3743,3745],{"href":3744},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","deep-RL case studies",[21,3747,3749],{"id":3748},"from-uct-to-alphazero-and-muzero","From UCT to AlphaZero and MuZero",[11,3751,3752],{},"The four-step MCTS above is the tabular skeleton; the systems that made it famous\nare a decade of additions, each traceable to a canonical paper.",[11,3754,3755,3758,3759,3762,3763,3770,3771,3786],{},[27,3756,3757],{},"UCT."," The tree policy this lesson calls UCT is Kocsis and Szepesvári's\n",[2634,3760,3761],{},"Upper Confidence bounds applied to Trees",", which analyzed MCTS as a nested set of\nbandit problems and proved that treating each node with the UCB1 rule makes the\nvalue estimate at the root converge to the minimax (optimal) value, with the\nprobability of selecting a suboptimal root action going to zero.",[31,3764,3765],{},[15,3766,1951],{"href":3767,"ariaDescribedBy":3768,"dataFootnoteRef":6,"id":3769},"#user-content-fn-uct",[37],"user-content-fnref-uct"," That\nguarantee is why UCT, rather than plain ",[53,3772,3774],{"className":3773},[56],[53,3775,3777],{"className":3776,"ariaHidden":61},[60],[53,3778,3780,3783],{"className":3779},[65],[53,3781],{"className":3782,"style":70},[69],[53,3784,76],{"className":3785},[74,75],"-greedy, became the default\ntree policy: it is the reason the asymmetric tree grows toward the right branches.",[11,3788,3789,3792,3793,3828,3829,3836],{},[27,3790,3791],{},"AlphaGo."," Silver and colleagues combined MCTS with two deep networks — a policy\nnetwork to narrow the search to plausible moves and a value network to evaluate\nleaf positions without a full rollout — and defeated a professional Go player, then\nthe world champion, on a ",[53,3794,3796],{"className":3795},[56],[53,3797,3799,3819],{"className":3798,"ariaHidden":61},[60],[53,3800,3802,3805,3809,3812,3816],{"className":3801},[65],[53,3803],{"className":3804,"style":2809},[69],[53,3806,3808],{"className":3807},[74],"19",[53,3810],{"className":3811,"style":349},[196],[53,3813,3815],{"className":3814},[353],"×",[53,3817],{"className":3818,"style":349},[196],[53,3820,3822,3825],{"className":3821},[65],[53,3823],{"className":3824,"style":742},[69],[53,3826,3808],{"className":3827},[74]," board long thought a decade away from\ncomputer mastery.",[31,3830,3831],{},[15,3832,2143],{"href":3833,"ariaDescribedBy":3834,"dataFootnoteRef":6,"id":3835},"#user-content-fn-alphago",[37],"user-content-fnref-alphago"," The search is the MCTS of this lesson; the networks\nreplace the weak default rollout policy and the hand-built leaf heuristic.",[11,3838,3839,3842,3843,3851],{},[27,3840,3841],{},"AlphaZero."," The successor stripped out every Go-specific component — no human\ngames, no handcrafted features, no separate rollout — and learned from self-play\nalone, using a single network for both value and policy and folding the policy\nprior into the tree policy (a PUCT variant of UCT that biases selection toward\nhigh-prior actions). One algorithm reached superhuman play in Go, chess, and shogi,\neach from the rules alone.",[31,3844,3845],{},[15,3846,3850],{"href":3847,"ariaDescribedBy":3848,"dataFootnoteRef":6,"id":3849},"#user-content-fn-alphazero",[37],"user-content-fnref-alphazero","4"," The training target is the search's own\nvisit-count distribution, so the network learns to imitate the improved policy the\nsearch produced — generalized policy improvement, with MCTS as the improvement\noperator.",[11,3853,3854,3857,3858,3861,3862,3870],{},[27,3855,3856],{},"MuZero."," The last assumption to fall was the model itself. MuZero learns a\n",[2634,3859,3860],{},"latent"," dynamics model and runs the same MCTS over it, so it plans without ever\nbeing told the environment's rules — matching AlphaZero on board games and setting\nrecords on Atari, where the rules are not available in closed form.",[31,3863,3864],{},[15,3865,3869],{"href":3866,"ariaDescribedBy":3867,"dataFootnoteRef":6,"id":3868},"#user-content-fn-muzero-dt",[37],"user-content-fnref-muzero-dt","5","\nThis is decision-time planning in a learned model: the search of this lesson, run\ninside a representation the agent learned.",[95,3872],{"hash":3873},"42a63b98cc130cb2b9fb0b2620617274b383490fc1b2e999e9b583eaac2259b4",[11,3875,3876,3877,3880],{},"In summary: to act well at a state, a global policy is not always needed. A good\naction for ",[2634,3878,3879],{},"this"," state can be computed by looking ahead from\nit — with asynchronous value iteration on the states actually visited (RTDP), a\nlookahead tree backed up from leaf estimates (heuristic search), Monte Carlo\nestimates under a rollout policy (rollouts), or a tree grown asymmetrically toward\npromising continuations (MCTS). The deeper the lookahead, the less the imperfect\nvalue function matters — and with a learned network standing in for both the leaf\nvalue and the rollout, that lookahead is what carried reinforcement learning to\nsuperhuman play.",[3882,3883,3886,3891],"section",{"className":3884,"dataFootnotes":6},[3885],"footnotes",[21,3887,3890],{"className":3888,"id":37},[3889],"sr-only","Footnotes",[99,3892,3893,3907,3928,3947,3965],{},[102,3894,3896,3899,3900],{"id":3895},"user-content-fn-sb-mcts",[27,3897,3898],{},"Sutton & Barto",", §8.11 — Monte Carlo Tree Search: MCTS as a rollout algorithm with memory, the four steps selection\u002Fexpansion\u002Fsimulation\u002Fbackup (Figure 8.10), tree vs. rollout (default) policy, the UCB\u002FUCT tree policy (Chapter 2), root action by visit count, and the extension to AlphaGo's network-guided search in §16.6. ",[15,3901,3906],{"href":3902,"ariaLabel":3903,"className":3904,"dataFootnoteBackref":6},"#user-content-fnref-sb-mcts","Back to reference 1",[3905],"data-footnote-backref","↩",[102,3908,3910,3913,3914,3918,3919,3922,3923],{"id":3909},"user-content-fn-uct",[27,3911,3912],{},"Kocsis, L., & Szepesvári, C."," (2006), ",[3915,3916,3917],"q",{},"Bandit Based Monte-Carlo Planning,"," ",[2634,3920,3921],{},"ECML"," — UCT: applying the UCB1 bandit rule at each tree node, with a convergence proof that the root value estimate approaches the optimal (minimax) value and the probability of a suboptimal root action tends to zero. ",[15,3924,3906],{"href":3925,"ariaLabel":3926,"className":3927,"dataFootnoteBackref":6},"#user-content-fnref-uct","Back to reference 2",[3905],[102,3929,3931,3934,3935,3918,3938,3941,3942],{"id":3930},"user-content-fn-alphago",[27,3932,3933],{},"Silver, D., et al."," (2016), ",[3915,3936,3937],{},"Mastering the Game of Go with Deep Neural Networks and Tree Search,",[2634,3939,3940],{},"Nature"," 529:484–489 (AlphaGo) — MCTS combined with a policy network (move priors) and a value network (leaf evaluation), defeating a professional and then the world champion at Go. ",[15,3943,3906],{"href":3944,"ariaLabel":3945,"className":3946,"dataFootnoteBackref":6},"#user-content-fnref-alphago","Back to reference 3",[3905],[102,3948,3950,3952,3953,3918,3956,3959,3960],{"id":3949},"user-content-fn-alphazero",[27,3951,3933],{}," (2018), ",[3915,3954,3955],{},"A General Reinforcement Learning Algorithm that Masters Chess, Shogi, and Go through Self-Play,",[2634,3957,3958],{},"Science"," 362:1140–1144 (AlphaZero) — self-play with a single value\u002Fpolicy network and a PUCT tree policy, learning Go, chess, and shogi from the rules alone; the search's visit counts serve as the policy-improvement target. ",[15,3961,3906],{"href":3962,"ariaLabel":3963,"className":3964,"dataFootnoteBackref":6},"#user-content-fnref-alphazero","Back to reference 4",[3905],[102,3966,3968,3971,3972,3918,3975,3977,3978],{"id":3967},"user-content-fn-muzero-dt",[27,3969,3970],{},"Schrittwieser, J., et al."," (2020), ",[3915,3973,3974],{},"Mastering Atari, Go, Chess and Shogi by Planning with a Learned Model,",[2634,3976,3940],{}," 588:604–609 (MuZero) — running AlphaZero-style MCTS over a learned latent dynamics model, planning without access to the environment's true rules and setting records on Atari. ",[15,3979,3906],{"href":3980,"ariaLabel":3981,"className":3982,"dataFootnoteBackref":6},"#user-content-fnref-muzero-dt","Back to reference 5",[3905],[3984,3985,3986],"style",{},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html.dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}",{"title":6,"searchDepth":3466,"depth":3466,"links":3988},[3989,3998,3999],{"id":23,"depth":3466,"text":5,"children":3990},[3991,3992,3993,3994,3995,3996,3997],{"id":89,"depth":3472,"text":90},{"id":138,"depth":3472,"text":139},{"id":148,"depth":3472,"text":149},{"id":1397,"depth":3472,"text":1398},{"id":3443,"depth":3472,"text":3444},{"id":3557,"depth":3472,"text":3558},{"id":3588,"depth":3472,"text":3589},{"id":3748,"depth":3466,"text":3749},{"id":37,"depth":3466,"text":3890},[],"computer-science","This builds on Decision-Time Planning,\nwhich developed real-time DP, heuristic search, and rollout algorithms — planners\nthat compute one action for the current state and discard the work. Rollouts throw\naway every simulated trajectory. Monte Carlo Tree Search keeps them, and that one\nchange is what carried computer Go from weak amateur to superhuman.",false,"md",{"moduleNumber":3466,"lessonNumber":3526,"order":4006},212,"Tabular Solution Methods",true,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search",[],"---\ntitle: Monte Carlo Tree Search\nmodule: Tabular Solution Methods\nmoduleNumber: 2\nlessonNumber: 12\norder: 212\nsummary: >\n  Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value\n  estimates across simulations and steers later ones toward promising branches. We\n  work through the four steps — selection, expansion, simulation, backup — the UCT\n  selection rule computed on real numbers, the asymmetric growing tree, and the full\n  pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo,\n  AlphaZero, and MuZero, where a learned network stands in for the leaf value and\n  the rollout.\ntopics: [Tabular Methods]\nsources:\n  - book: Sutton & Barto\n    ref: \"§8.11 Monte Carlo Tree Search\"\n---\n\nThis builds on [Decision-Time Planning](\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning),\nwhich developed real-time DP, heuristic search, and rollout algorithms — planners\nthat compute one action for the current state and discard the work. Rollouts throw\naway every simulated trajectory. Monte Carlo Tree Search keeps them, and that one\nchange is what carried computer Go from weak amateur to superhuman.\n\n## Monte Carlo Tree Search\n\n**Monte Carlo Tree Search** (MCTS) is a rollout algorithm with memory. Plain\nrollouts throw away every simulated trajectory; MCTS accumulates the value estimates\nfrom successive simulations and uses them to steer later simulations toward the\nhigher-rewarding parts of the space.[^sb-mcts] It is largely responsible for the\nimprovement of computer Go from a weak amateur level in 2005 to grandmaster (6 dan\nor more) in 2015, and, combined with a deep neural network, it is the search behind\nthe 2016 AlphaGo victories. It applies to any single-agent sequential problem with a\nmodel fast enough for repeated multistep simulation, not only games.\n\nLike any rollout algorithm, MCTS runs after each new state to select the action, is\nan iterative process that simulates many trajectories from the current state to a\nterminal state (or until discounting makes further reward negligible), and repeats\nuntil a compute budget is spent. Its one addition is the **tree**. MCTS maintains a\ntree rooted at the current state, holding Monte Carlo value estimates for the\nstate–action pairs most likely to be reached in a few steps. Any simulated\ntrajectory passes through the tree and then exits it at some leaf. Inside the tree,\nwhere it has estimates for at least some actions, MCTS selects with an informed\n**tree policy** that balances exploration and exploitation — for example an\n$\\varepsilon$-greedy or UCB rule. Outside the tree, and at the leaves, it falls back\nto the simple **rollout policy** (the **default policy**).\n\n### The four steps\n\nEach iteration of a basic MCTS consists of four operations, repeated until time runs\nout.\n\n$$\n% caption: One MCTS iteration. Selection descends the tree by the tree policy to a\n% leaf; expansion adds a child; simulation rolls out to a terminal state under the\n% rollout policy; backup carries the return up the traversed tree edges. Iterations\n% repeat until the move-time budget is spent.\n\\begin{tikzpicture}[>=stealth, font=\\small,\n  st\u002F.style={circle, draw, fill=white, minimum size=5.5mm, inner sep=0pt},\n  stepbox\u002F.style={draw, minimum width=22mm, minimum height=7mm, align=center, font=\\footnotesize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  % phase labels across top\n  \\node[stepbox] (s1) at (0,4.4)    {1. Selection};\n  \\node[stepbox] (s2) at (3.5,4.4)  {2. Expansion};\n  \\node[stepbox] (s3) at (7.0,4.4)  {3. Simulation};\n  \\node[stepbox] (s4) at (10.5,4.4) {4. Backup};\n  \\draw[->, black] (s1) -- (s2);\n  \\draw[->, black] (s2) -- (s3);\n  \\draw[->, black] (s3) -- (s4);\n  % Selection\n  \\begin{scope}[shift={(0,0)}]\n    \\node[st] (r) at (0,3.3) {};\n    \\node[st] (a) at (-0.7,2.2) {};\n    \\node[st] (b) at (0.7,2.2) {};\n    \\node[st] (c) at (0.35,1.1) {};\n    \\draw[acc, thick] (r) -- (b);\n    \\draw[acc, thick] (b) -- (c);\n    \\draw[black] (r) -- (a);\n    \\node[acc, anchor=west, font=\\scriptsize] at (0.9,1.6) {tree policy};\n  \\end{scope}\n  % Expansion\n  \\begin{scope}[shift={(3.5,0)}]\n    \\node[st] (r2) at (0,3.3) {};\n    \\node[st] (b2) at (0.7,2.2) {};\n    \\node[st] (c2) at (0.35,1.1) {};\n    \\node[st, draw=acc, thick] (n2) at (0.7,0.1) {};\n    \\draw[black] (r2) -- (b2);\n    \\draw[black] (b2) -- (c2);\n    \\draw[acc, thick] (c2) -- (n2);\n    \\node[acc, anchor=west, font=\\scriptsize] at (0.95,0.1) {new node};\n  \\end{scope}\n  % Simulation\n  \\begin{scope}[shift={(7.0,0)}]\n    \\node[st] (r3) at (0,3.3) {};\n    \\node[st] (c3) at (0.35,1.1) {};\n    \\node[st] (n3) at (0.7,0.1) {};\n    \\node[draw, fill=black!12, minimum size=4mm, inner sep=0pt] (term) at (0.7,-1.3) {};\n    \\draw[black] (r3) -- (c3);\n    \\draw[black] (c3) -- (n3);\n    \\draw[acc, dashed, thick, ->] (n3) -- (term);\n    \\node[acc, anchor=west, font=\\scriptsize] at (0.95,-0.6) {rollout};\n    \\node[anchor=north, font=\\scriptsize] at (0.7,-1.5) {terminal};\n  \\end{scope}\n  % Backup\n  \\begin{scope}[shift={(10.5,0)}]\n    \\node[st] (r4) at (0,3.3) {};\n    \\node[st] (c4) at (0.35,1.1) {};\n    \\node[st] (n4) at (0.7,0.1) {};\n    \\node[draw, fill=black!12, minimum size=4mm, inner sep=0pt] (t4) at (0.7,-1.3) {};\n    \\draw[red, thick, ->] (t4) -- (n4);\n    \\draw[red, thick, ->] (n4) -- (c4);\n    \\draw[red, thick, ->] (c4) -- (r4);\n    \\node[red, anchor=west, font=\\scriptsize] at (0.95,1.7) {return};\n  \\end{scope}\n\\end{tikzpicture}\n$$\n\n1. **Selection.** Starting at the root, a **tree policy** based on the action values\n   attached to the tree's edges traverses the tree to select a leaf node.\n2. **Expansion.** On some iterations (depending on the application), the tree is\n   expanded from the selected leaf by adding one or more child nodes reached from\n   it via unexplored actions.\n3. **Simulation.** From the selected node — or one of its newly added children — a\n   complete episode is simulated with actions chosen by the **rollout policy**. The\n   result is a Monte Carlo trial: tree policy inside the tree, rollout policy beyond\n   it.\n4. **Backup.** The return of the simulated episode is backed up to update (or to\n   initialize) the action values on the tree edges the tree policy traversed this\n   iteration. **No values are saved** for the states and actions the rollout policy\n   visited beyond the tree.\n\n### The growing tree\n\nOver many iterations the tree grows unevenly — deeper along branches that keep\nproducing high returns, barely at all along branches that do not. This asymmetric\ngrowth is deliberate: MCTS spends its expansions where they matter.\n\n$$\n% caption: The tree grows asymmetrically. Early iterations expand near the root\n% (left); high-return branches accumulate visits and keep expanding, so the tree\n% deepens along promising continuations while poor branches stay shallow (right).\n\\begin{tikzpicture}[>=stealth, font=\\small,\n  st\u002F.style={circle, draw, fill=white, minimum size=4.5mm, inner sep=0pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % --- early (few iterations) ---\n  \\begin{scope}[shift={(0,0)}]\n    \\node[font=\\footnotesize, anchor=south] at (0,2.0) {after a few iterations};\n    \\node[st] (r) at (0,1.4) {};\n    \\node[st] (a) at (-1.0,0.4) {};\n    \\node[st] (b) at (0,0.4) {};\n    \\node[st] (c) at (1.0,0.4) {};\n    \\draw[black] (r) -- (a);\n    \\draw[black] (r) -- (b);\n    \\draw[black] (r) -- (c);\n  \\end{scope}\n  % --- later (many iterations, deep on one branch) ---\n  \\begin{scope}[shift={(5.6,0)}]\n    \\node[font=\\footnotesize, anchor=south] at (0,2.0) {after many iterations};\n    \\node[st] (R) at (0,1.4) {};\n    \\node[st] (A) at (-1.4,0.5) {};\n    \\node[st, draw=acc, thick] (B) at (0,0.5) {};\n    \\node[st] (C) at (1.4,0.5) {};\n    \\draw[black] (R) -- (A);\n    \\draw[acc, thick] (R) -- (B);\n    \\draw[black] (R) -- (C);\n    % deep expansion under B\n    \\node[st] (B1) at (-0.6,-0.5) {};\n    \\node[st, draw=acc, thick] (B2) at (0.6,-0.5) {};\n    \\draw[black] (B) -- (B1);\n    \\draw[acc, thick] (B) -- (B2);\n    \\node[st] (B2a) at (0.2,-1.5) {};\n    \\node[st, draw=acc, thick] (B2b) at (1.1,-1.5) {};\n    \\draw[black] (B2) -- (B2a);\n    \\draw[acc, thick] (B2) -- (B2b);\n    \\node[acc, anchor=west, font=\\scriptsize] at (0.7,0.0) {high-return branch};\n  \\end{scope}\n\\end{tikzpicture}\n$$\n\n### UCT: the tree policy\n\nThe tree policy supplies MCTS's exploration–exploitation balance: at each node,\nprefer actions with good estimates so far, but add a bonus for actions that have\nbarely been tried — a value estimated from two samples is far less reliable than\none from two hundred. The most common rule that does this treats\neach node as a bandit and applies **UCT** (Upper Confidence bounds applied to Trees),\nwhich selects, among the actions available at state $s$, the one maximizing an upper\nconfidence bound:\n\n$$\na \\;=\\; \\arg\\max_{a}\\;\\Bigl[\\,Q(s,a) \\;+\\; c\\,\\sqrt{\\tfrac{\\ln N(s)}{N(s,a)}}\\,\\Bigr].\n$$\n\nHere $Q(s,a)$ is the current Monte Carlo estimate (exploitation), $N(s)$ is the\nnumber of times $s$ has been visited, $N(s,a)$ the number of times action $a$ was\ntaken from $s$, and $c > 0$ tunes the exploration weight. The bonus\n$c\\sqrt{\\ln N(s) \u002F N(s,a)}$ is large for actions tried seldom relative to their\nparent, so it pulls selection toward under-explored actions; as $N(s,a)$ grows, the\nbonus shrinks and the value term $Q(s,a)$ dominates.\n\n$$\n% caption: The UCT exploration bonus $c\\sqrt{\\ln N(s)\u002FN(s,a)}$ against the number\n% of times an action has been tried, $N(s,a)$, at a fixed parent count. It falls\n% steeply at first and flattens: seldom-tried actions get a large boost, and as an\n% action accrues visits its selection is governed by its value estimate $Q(s,a)$.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize]\n  \\definecolor{acc}{HTML}{2348F2}\n  % axes\n  \\draw[->, black] (0,0) -- (6.3,0) node[anchor=north east] {N(s,a)};\n  \\draw[->, black] (0,0) -- (0,3.6);\n  % decreasing curve: bonus ~ 1\u002Fsqrt(N)\n  \\draw[acc, very thick]\n    (0.5,3.2) .. controls (1.0,2.1) and (1.6,1.55) .. (2.4,1.25)\n    .. controls (3.4,0.92) and (4.6,0.72) .. (6.0,0.62);\n  \\node[acc, anchor=west, font=\\scriptsize] at (6.05,0.62) {bonus};\n  % annotations\n  \\node[acc, anchor=west, font=\\scriptsize] at (0.7,3.15) {large: explore};\n  \\node[black, anchor=south west, font=\\scriptsize] at (3.6,0.72) {small: exploit $Q$};\n\\end{tikzpicture}\n$$\n\nAny action with $N(s,a) = 0$ is\ntreated as having infinite bound and is selected first — every action gets tried at\nleast once before the bound refines. This is the\n[UCB1 bandit rule](\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits) applied\nat each internal tree node.\n\n> **Definition (UCT tree policy).** At an internal node $s$, select the action\n> $\\arg\\max_a \\bigl[\\,Q(s,a) + c\\sqrt{\\ln N(s)\u002FN(s,a)}\\,\\bigr]$, where $Q(s,a)$ is\n> the mean simulated return through edge $(s,a)$, $N(s)$ and $N(s,a)$ are visit\n> counts, and $c$ weights exploration. Untried actions (count $0$) are selected\n> first.\n\n### A UCT selection, computed\n\nPut real numbers on the bound. Suppose the root $s$ has been visited $N(s) = 30$\ntimes and has three actions with the statistics below; take exploration weight\n$c = 1$ (a common choice when returns are scaled to $[0,1]$).\n\n| action | $Q(s,a)$ | $N(s,a)$ | bonus $c\\sqrt{\\ln 30 \u002F N(s,a)}$ | UCT score |\n| --- | --- | --- | --- | --- |\n| $a_1$ | $0.60$ | $20$ | $\\sqrt{3.401\u002F20} = 0.412$ | $1.012$ |\n| $a_2$ | $0.70$ | $8$ | $\\sqrt{3.401\u002F8} = 0.652$ | $1.352$ |\n| $a_3$ | $0.50$ | $2$ | $\\sqrt{3.401\u002F2} = 1.304$ | $1.804$ |\n\nHere $\\ln 30 = 3.401$. The greedy choice by value alone is $a_2$ (highest\n$Q = 0.70$), but UCT selects $a_3$: its low visit count $N = 2$ gives it a large\nexploration bonus $1.304$, enough to overtake the better-valued but well-explored\n$a_1$ and $a_2$. This is the intended behavior: an action that _might_ be\ngood but has barely been tried is selected for further sampling.\n\nNow suppose the simulation through $a_3$ returns a poor $0.1$, dragging its mean to\n$Q(a_3) = (0.50 \\cdot 2 + 0.1)\u002F3 = 0.367$ and its count to $3$. Recompute with\n$N(s) = 31$, $\\ln 31 = 3.434$:\n\n$$\n\\text{UCT}(a_3) = 0.367 + \\sqrt{3.434\u002F3} = 0.367 + 1.070 = 1.437,\n$$\n\nwhile $a_2$'s score rises only slightly to $0.70 + \\sqrt{3.434\u002F8} = 1.355$. So\n$a_3$ is _still_ selected next — one bad rollout does not eliminate it — but\neach additional visit shrinks its bonus and sharpens its mean, and after a few more\npoor returns its score will fall below $a_2$'s and selection will move on. The bound\nkeeps sampling uncertain actions until accumulated evidence, not a single sample,\nsettles their value.\n\n$$\n% caption: A UCT selection at a root visited 30 times, c = 1. Each bar is an\n% action's UCT score, split into its value Q(s,a) (solid) and its exploration\n% bonus (light). Action a3 has the lowest value but by far the largest bonus (only\n% 2 visits), so UCT picks it: exploration wins when a promising action is\n% under-sampled.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  \\draw[black] (0,0) -- (6.2,0);\n  \\node[anchor=east, font=\\scriptsize] at (-0.15,0) {0};\n  % scale: 1 unit score = 2.2 cm\n  \\foreach \\x\u002F\\q\u002F\\b\u002F\\lab in {0.6\u002F1.32\u002F0.91\u002Fa1, 2.6\u002F1.54\u002F1.43\u002Fa2, 4.6\u002F1.10\u002F2.87\u002Fa3} {\n    % Q part (solid) height = q, bonus stacked on top total = q+b(scaled) -- here q and total precomputed in cm\n  }\n  % a1: Q=0.60 -> 1.32cm, total 1.012 -> 2.23cm\n  \\draw[acc, fill=acc] (0.4,0) rectangle (1.1,1.32);\n  \\draw[acc, fill=acc!20] (0.4,1.32) rectangle (1.1,2.23);\n  \\node[anchor=north, font=\\scriptsize] at (0.75,-0.05) {a1};\n  % a2: Q=0.70 -> 1.54cm, total 1.352 -> 2.97cm\n  \\draw[acc, fill=acc] (2.4,0) rectangle (3.1,1.54);\n  \\draw[acc, fill=acc!20] (2.4,1.54) rectangle (3.1,2.97);\n  \\node[anchor=north, font=\\scriptsize] at (2.75,-0.05) {a2};\n  % a3: Q=0.50 -> 1.10cm, total 1.804 -> 3.97cm  (chosen)\n  \\draw[red, thick, fill=red!12] (4.4,0) rectangle (5.1,1.10);\n  \\draw[red, thick, fill=red!4] (4.4,1.10) rectangle (5.1,3.97);\n  \\node[anchor=north, font=\\scriptsize, text=red] at (4.75,-0.05) {a3};\n  \\node[red, anchor=south, font=\\scriptsize] at (4.75,3.99) {selected};\n  % legend\n  \\node[acc, anchor=west, font=\\scriptsize] at (5.6,2.2) {bonus};\n  \\node[acc, anchor=west, font=\\scriptsize] at (5.6,0.7) {value Q};\n\\end{tikzpicture}\n$$\n\n### The full algorithm\n\nPutting the four steps and the UCT tree policy together gives the standard\ndecision-time procedure. Each call plans from the current root state and returns the\naction to play; the environment then advances and the whole thing runs again.\n\n```algorithm\ncaption: $\\textsc{MCTS}(s_0)$ — decision-time planning by growing a search tree from the current state $s_0$\ncreate root node $v_0$ for state $s_0$\nwhile time budget remains do\n  $v \\gets v_0$ \u002F\u002F Selection: descend by the tree policy (UCT)\n  while $v$ is fully expanded and non-terminal do\n    $v \\gets$ child of $v$ maximizing $Q(v') + c\\sqrt{\\ln N(v)\u002FN(v')}$\n  if $v$ is non-terminal then \u002F\u002F Expansion\n    $v \\gets$ new child of $v$ from an untried action\n  $G \\gets \\textsc{Rollout-Policy-Simulate}(v)$ \u002F\u002F Simulation to a terminal state\n  repeat \u002F\u002F Backup along the traversed edges\n    $N(v) \\gets N(v) + 1$\n    $Q(v) \\gets Q(v) + \\dfrac{G - Q(v)}{N(v)}$ \u002F\u002F running mean of returns\n    $v \\gets$ parent of $v$\n  until $v$ is above the root\nreturn action from $s_0$ with the largest visit count $N$\n```\n\nAfter the budget is exhausted, the agent selects a root action by the accumulated\nstatistics — commonly the action with the **largest visit count** (robust to\noutliers) rather than the largest value. The environment transitions to a new state,\nand MCTS runs again, usually starting from the surviving subtree rooted at the new\nstate (any descendants of the chosen child are reused; the rest is discarded).\n\n### Why MCTS works\n\nMCTS's success follows from principles already covered in this course. At its\nbase it is a decision-time rollout algorithm on Monte Carlo control from the root, so\nit inherits online, incremental, sample-based value estimation and one-step policy\nimprovement. Beyond that, it **saves** the action-value estimates on the tree edges\nand updates them with the sample updates of reinforcement learning. By incrementally\nexpanding the tree along high-return trajectories, MCTS effectively grows a lookup\ntable — a _partial_ action-value function — with memory allocated to the state–action\npairs in the initial segments of high-yielding sample trajectories. It gets the\nbenefit of a learned $Q$ concentrated where it matters, without approximating a value\nfunction globally, and it retains past experience to guide exploration.\n\n### From MCTS to AlphaZero\n\nFinally, the leaf evaluation and the rollout policy need not stay simple.\nPlain MCTS evaluates a leaf by rolling out to termination under a weak\ndefault policy — noisy, and only as good as that policy. Replace the rollout with a\ndeep neural network that maps a position to a value estimate $v_\\theta(s)$ and a\npolicy prior $p_\\theta(a \\mid s)$, and fold that prior into the tree policy (a\nPUCT-style variant of UCT that biases selection toward high-prior actions), and the\nsearch becomes much stronger: the network supplies the leaf values and the move\nsuggestions that make a deep, focused lookahead tractable, while MCTS supplies the\nlookahead that corrects the network's errors. Train that network by self-play, using\nthe search's own visit counts and game outcomes as targets, and MCTS becomes the\nsearch inside AlphaGo and AlphaZero. The full account — the value\u002Fpolicy\nnetwork, self-play training, and the tree-search integration — is the subject of the\n[deep-RL case studies](\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies).\n\n## From UCT to AlphaZero and MuZero\n\nThe four-step MCTS above is the tabular skeleton; the systems that made it famous\nare a decade of additions, each traceable to a canonical paper.\n\n**UCT.** The tree policy this lesson calls UCT is Kocsis and Szepesvári's\n_Upper Confidence bounds applied to Trees_, which analyzed MCTS as a nested set of\nbandit problems and proved that treating each node with the UCB1 rule makes the\nvalue estimate at the root converge to the minimax (optimal) value, with the\nprobability of selecting a suboptimal root action going to zero.[^uct] That\nguarantee is why UCT, rather than plain $\\varepsilon$-greedy, became the default\ntree policy: it is the reason the asymmetric tree grows toward the right branches.\n\n**AlphaGo.** Silver and colleagues combined MCTS with two deep networks — a policy\nnetwork to narrow the search to plausible moves and a value network to evaluate\nleaf positions without a full rollout — and defeated a professional Go player, then\nthe world champion, on a $19 \\times 19$ board long thought a decade away from\ncomputer mastery.[^alphago] The search is the MCTS of this lesson; the networks\nreplace the weak default rollout policy and the hand-built leaf heuristic.\n\n**AlphaZero.** The successor stripped out every Go-specific component — no human\ngames, no handcrafted features, no separate rollout — and learned from self-play\nalone, using a single network for both value and policy and folding the policy\nprior into the tree policy (a PUCT variant of UCT that biases selection toward\nhigh-prior actions). One algorithm reached superhuman play in Go, chess, and shogi,\neach from the rules alone.[^alphazero] The training target is the search's own\nvisit-count distribution, so the network learns to imitate the improved policy the\nsearch produced — generalized policy improvement, with MCTS as the improvement\noperator.\n\n**MuZero.** The last assumption to fall was the model itself. MuZero learns a\n_latent_ dynamics model and runs the same MCTS over it, so it plans without ever\nbeing told the environment's rules — matching AlphaZero on board games and setting\nrecords on Atari, where the rules are not available in closed form.[^muzero-dt]\nThis is decision-time planning in a learned model: the search of this lesson, run\ninside a representation the agent learned.\n\n$$\n% caption: The MCTS lineage. UCT (Kocsis-Szepesvari 2006) supplies the convergent\n% tree policy; AlphaGo adds value\u002Fpolicy networks in place of the rollout and leaf\n% heuristic; AlphaZero learns from self-play with one network and a PUCT tree\n% policy; MuZero plans the same search inside a learned latent model. Each keeps\n% the four-step selection\u002Fexpansion\u002Fsimulation\u002Fbackup loop.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize,\n  box\u002F.style={draw, minimum width=26mm, minimum height=9mm, align=center, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  \\node[box, draw=acc, text=acc, thick] (uct) at (0,0) {UCT\\\\(convergent tree policy)};\n  \\node[box] (ag) at (3.9,0) {AlphaGo\\\\(value + policy nets)};\n  \\node[box] (az) at (7.8,0) {AlphaZero\\\\(self-play, PUCT)};\n  \\node[box, draw=red, text=red] (mz) at (11.7,0) {MuZero\\\\(learned model)};\n  \\draw[->, thick] (uct) -- (ag);\n  \\draw[->, thick] (ag) -- (az);\n  \\draw[->, red, thick] (az) -- (mz);\n\\end{tikzpicture}\n$$\n\nIn summary: to act well at a state, a global policy is not always needed. A good\naction for _this_ state can be computed by looking ahead from\nit — with asynchronous value iteration on the states actually visited (RTDP), a\nlookahead tree backed up from leaf estimates (heuristic search), Monte Carlo\nestimates under a rollout policy (rollouts), or a tree grown asymmetrically toward\npromising continuations (MCTS). The deeper the lookahead, the less the imperfect\nvalue function matters — and with a learned network standing in for both the leaf\nvalue and the rollout, that lookahead is what carried reinforcement learning to\nsuperhuman play.\n\n[^sb-mcts]: **Sutton & Barto**, §8.11 — Monte Carlo Tree Search: MCTS as a rollout algorithm with memory, the four steps selection\u002Fexpansion\u002Fsimulation\u002Fbackup (Figure 8.10), tree vs. rollout (default) policy, the UCB\u002FUCT tree policy (Chapter 2), root action by visit count, and the extension to AlphaGo's network-guided search in §16.6.\n[^uct]: **Kocsis, L., & Szepesvári, C.** (2006), \"Bandit Based Monte-Carlo Planning,\" _ECML_ — UCT: applying the UCB1 bandit rule at each tree node, with a convergence proof that the root value estimate approaches the optimal (minimax) value and the probability of a suboptimal root action tends to zero.\n[^alphago]: **Silver, D., et al.** (2016), \"Mastering the Game of Go with Deep Neural Networks and Tree Search,\" _Nature_ 529:484–489 (AlphaGo) — MCTS combined with a policy network (move priors) and a value network (leaf evaluation), defeating a professional and then the world champion at Go.\n[^alphazero]: **Silver, D., et al.** (2018), \"A General Reinforcement Learning Algorithm that Masters Chess, Shogi, and Go through Self-Play,\" _Science_ 362:1140–1144 (AlphaZero) — self-play with a single value\u002Fpolicy network and a PUCT tree policy, learning Go, chess, and shogi from the rules alone; the search's visit counts serve as the policy-improvement target.\n[^muzero-dt]: **Schrittwieser, J., et al.** (2020), \"Mastering Atari, Go, Chess and Shogi by Planning with a Learned Model,\" _Nature_ 588:604–609 (MuZero) — running AlphaZero-style MCTS over a learned latent dynamics model, planning without access to the environment's true rules and setting records on Atari.\n",{"text":4013,"minutes":4014,"time":4015,"words":4016},"11 min read",10.405,624300,2081,{"title":5,"description":4002},[4019],{"book":3898,"ref":4020},"§8.11 Monte Carlo Tree Search","available","07.reinforcement-learning\u002F02.tabular-methods\u002F12.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",[4025],"Tabular Methods","KT6WdDGs25863VyZJ6NJfgLe-0kM7wi-NoVVtIURYNQ",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":4028,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":4029,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":4030,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":4031,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":4032,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":4033,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":4034,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":4035,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":4036,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":4037,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":4038,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":4039,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":4040,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":4041,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":4042,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":4043,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":4044,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":4045,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":4046,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":4047,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":4048,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":4049,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":4050,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":4051,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":4052,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":4053,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":4054,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":4055,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":4056,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":4057,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":4058,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":4059,"\u002Falgorithms\u002Fsequences\u002Ftries":4060,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":4061,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":4062,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":4063,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":4064,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":4065,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":4066,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":4067,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":4068,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":4069,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":4070,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":4071,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":4072,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":4073,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":4074,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":4075,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":4076,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":4077,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":4078,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":4079,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":4080,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":4081,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":4082,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":4083,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":4084,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":4085,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":4086,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":4087,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":4088,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":4089,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":4090,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":4091,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":4092,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":4093,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":4094,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":4095,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":4096,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":4097,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":4098,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":4099,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":4100,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":4101,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":4102,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":4103,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":4104,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":4105,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":4106,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":4107,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":4108,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":4109,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":4110,"\u002Falgorithms":4111,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":4112,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":4113,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":4114,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":4115,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":4116,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":4117,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":4118,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":4119,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":4120,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":4121,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":4122,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":4123,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":4124,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":4125,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":4126,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":4127,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":4128,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":4129,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":4130,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":4131,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":4132,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":4133,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":4134,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":4135,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":4136,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":4137,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":4138,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":4139,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":4140,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":4141,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":4142,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":4143,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":4144,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":4145,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":4126,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":4146,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":4147,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":4148,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":4116,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":4149,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":4150,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":4151,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":4152,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":4153,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":4154,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":4155,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":4156,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":4157,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":4158,"\u002Fcalculus":4159,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":4160,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":4161,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":4162,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":4163,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":4164,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":4165,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":4166,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":4167,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":4168,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":4169,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":4170,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":4171,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":4172,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":4173,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":4174,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":4175,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":4176,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":4177,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":4178,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":4179,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":4180,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":4181,"\u002Fmechanics\u002Frotation\u002Frolling-motion":4182,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":4183,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":4184,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":4185,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":4186,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":4187,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":4188,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":4189,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":4190,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":4191,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":4192,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":4193,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":4194,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":4195,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":4196,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":4197,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":4198,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":4199,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":4200,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":4201,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":4202,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":4203,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":4204,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":4205,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":4206,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":4207,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":4208,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":4209,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":4210,"\u002Fmechanics":4211,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":4212,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":4213,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":4214,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":4215,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":4216,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":4217,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":4218,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":4219,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":4220,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":4221,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":4222,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":4223,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":4200,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":4224,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":4225,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":4226,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":4196,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":4061,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":4227,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":4187,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":4228,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":4229,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":4230,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":4231,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":4232,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":4233,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":4234,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":4235,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":4236,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":4161,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":4237,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":4238,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":4239,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":4240,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":4241,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":4242,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":4243,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":4244,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":4179,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":4178,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":4245,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":4246,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":4247,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":4248,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":4249,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":4250,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":4251,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":4252,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":4253,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":4205,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":4203,"\u002Felectricity-and-magnetism":4254,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":4255,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":4256,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":4257,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":4258,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":4259,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":4260,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":4261,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":4262,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":4263,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":4113,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":4264,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":4265,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":4117,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":4266,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":4267,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":4268,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4269,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4270,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4271,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4272,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4273,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4274,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4275,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4276,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4277,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4278,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4279,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4280,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4281,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4282,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4283,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4284,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4285,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4152,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4286,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4287,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4288,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4289,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4290,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4291,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4292,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4293,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4294,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4295,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4296,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4297,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4298,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4299,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4300,"\u002Flinear-algebra":4301,"\u002Ftheory-of-computation":4302,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4303,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4304,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4305,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4306,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4307,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4308,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4309,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4310,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4311,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4312,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4313,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4314,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4315,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4316,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4317,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4318,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4319,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4320,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4321,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4322,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4323,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4324,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4325,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4326,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4327,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4328,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4329,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4330,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4331,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4332,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4333,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4334,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4335,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4336,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4337,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4338,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4339,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4340,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4341,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4342,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4343,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4344,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4345,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4346,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4347,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4348,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4016,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4349,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4350,"\u002Fcomputer-architecture":4302,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4351,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4352,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4353,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4117,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4354,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4116,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4123,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4355,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4356,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4157,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4357,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4358,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4359,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4360,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4361,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4362,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4363,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4364,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4365,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4366,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4367,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4368,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4363,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4369,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4370,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4371,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4372,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4373,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4374,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4375,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4376,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4377,"\u002Fdifferential-equations":4378,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4379,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4380,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4381,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4382,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4262,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4383,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4384,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4385,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4386,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4387,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4388,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4132,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4389,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4390,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4391,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4392,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4393,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4394,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4395,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4396,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4397,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4398,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4353,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4399,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4400,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4401,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4402,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4403,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4283,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4404,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4405,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4293,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4406,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4407,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4408,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4409,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4410,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4411,"\u002Frelativity":4412,"\u002Fphysical-computing":4302,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4413,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4392,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4414,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4415,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4416,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4417,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4418,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4419,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4420,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4368,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4293,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4421,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4422,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4423,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4424,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4420,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4425,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4400,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4154,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4426,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4427,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4134,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4428,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4429,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4430,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4431,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4432,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4433,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4434,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4435,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4436,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4392,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4437,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4438,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4439,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4426,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4115,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4440,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4441,"\u002Fquantum-mechanics":4442,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4376,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4443,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4444,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4266,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4445,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4152,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4446,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4447,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4289,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4398,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4448,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4449,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4450,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4451,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4452,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4425,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4453,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4259,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4454,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4455,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4113,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4456,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4457,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4414,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4142,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4293,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4458,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4459,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4278,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4402,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4460,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4461,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4462,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4298,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4463,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4464,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4465,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4465,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4466,"\u002Freal-analysis":4467,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4468,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4469,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4470,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4471,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4472,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4473,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4474,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4475,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4476,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4477,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4441,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4478,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4470,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4387,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4479,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4480,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4481,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4482,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4483,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4484,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4485,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4486,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4480,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4487,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4456,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4488,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4489,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4490,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4491,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4492,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4493,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4494,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4495,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4496,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4497,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4131,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4498,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4499,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4372,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":4500,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":4501,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":4429,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":4501,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":4502,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":4503,"\u002Fabstract-algebra":4504,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":4505,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":4506,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":4507,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":4508,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":4509,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":4421,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":4510,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":4511,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":4512,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":4513,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":4514,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":4515,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":4516,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":4256,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":4384,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":4131,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":4517,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":4115,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":4518,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":4519,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":4153,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":4446,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":4520,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":4521,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":4522,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":4523,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":4524,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":4525,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":4526,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":4527,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":4528,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":4529,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":4530,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":4531,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":4532,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":4533,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":4477,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":4534,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":4535,"\u002Fatomic-physics":4536,"\u002Fdatabases":4302,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":4537,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":4538,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":4539,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":4468,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":4540,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":4541,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":4542,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":4543,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":4544,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":4545,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":4546,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":4547,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":4548,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":4549,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":4550,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":4551,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":4552,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":4553,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":4554,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":4555,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":4556,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":4557,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":4558,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":4559,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":4550,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":4560,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":4561,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":4562,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":4563,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":4564,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":4509,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":4565,"\u002Fcategory-theory":4566,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":4567,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":4568,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":4569,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":4570,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":4571,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":4572,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":4531,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":4573,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":4574,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":4575,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":4576,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":4577,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":4578,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":4579,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":4580,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":4581,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":4582,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":4583,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":4584,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":4585,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":4586,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":4587,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":4588,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":4589,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":4590,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":4591,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":4592,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":4593,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":4594,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":4595,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":4596,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":4597,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":4598,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":4599,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":4543,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":4600,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":4601,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":4602,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":4603,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":4604,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":4605,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":4606,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":4096,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":4607,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":4608,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":4332,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":4609,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":4610,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":4611,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":4612,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":4613,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":4614,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":4615,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":4616,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":4617,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":4618,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":4619,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":4620,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":4305,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":4621,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":4622,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":4623,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":4624,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":4342,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":4625,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":4626,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":4627,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":4628,"\u002Fdeep-learning":4302,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":4629,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":4426,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":4630,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":4631,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":4632,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":4633,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":4634,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":4635,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":4636,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":4637,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":4473,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":4638,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":4639,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":4640,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":4360,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":4154,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":4641,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":4642,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":4643,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":4288,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":4644,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":4645,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":4365,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":4293,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":4646,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":4262,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":4132,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":4148,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":4647,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":4648,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":4649,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":4280,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":4650,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":4142,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":4651,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":4652,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":4653,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":4654,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":4475,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":4655,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":4656,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":4657,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":4658,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":4421,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":4659,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":4399,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":4660,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":4261,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":4661,"\u002Fstatistical-mechanics":4662,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":4663,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":4127,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":4386,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":4664,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":4665,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":4666,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":4667,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":4668,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":4669,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":4260,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":4670,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":4671,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":4672,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":4673,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":4402,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":4674,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":4675,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":4676,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":4677,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":4678,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":4457,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":4401,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":4679,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":4680,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":4681,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":4682,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":4392,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":4683,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":4684,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":4629,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":4529,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":4257,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":4685,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":4123,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":4686,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":4687,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":4268,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":4688,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":4522,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":4689,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":4115,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":4690,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":4126,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":4691,"\u002Fcondensed-matter":4442,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":4692,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":4693,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":4694,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":4695,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":4140,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":4696,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":4697,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":4140,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":4698,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":4552,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":4699,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":4700,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":4701,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":4699,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":4702,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":4703,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":4704,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":4705,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":4706,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":4707,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":4708,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":4709,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":4630,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":4710,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":4703,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":4711,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":4712,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":4346,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":4713,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":4530,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":4714,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":4715,"\u002Flogic":4716,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":4717,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":4718,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":4332,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":4719,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":4720,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":4721,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":4722,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":4712,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":4723,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":4724,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":4725,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":4623,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":4726,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":4727,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":4728,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":4729,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":4730,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":4016,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":4731,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":4732,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":4733,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":4734,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":4539,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":4735,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":4711,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":4736,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":4737,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":4738,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":4359,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":4739,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":4489,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":4740,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":4741,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":4322,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":4742,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":4743,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":4744,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":4745,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":4746,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":4599,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":4747,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":4748,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":4749,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":4634,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":4750,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":4751,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":4752,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":4016,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":4415,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":4753,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":4754,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":4755,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":4756,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":4757,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":4758,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":4759,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":4760,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":4761,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":4762,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":4763,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":4764,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":4765,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":4766,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":4767,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":4768,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":4769,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":4770,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":4771,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":4772,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":4773,"\u002Freinforcement-learning":4302,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":4774,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":4775,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":4776,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":4777,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":4778,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":4779,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":4780,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":4781,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":4782,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":4783,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":4784,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":4785,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":4786,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":4628,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":4483,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":4787,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":4788,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":4789,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":4790,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":4791,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":4792,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":4610,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":4793,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":4794,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":4795,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":4796,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":4797,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":4798,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":4799,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":4800,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":4801,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":4802,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":4803,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":4804,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":4542,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":4794,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":4805,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":4083,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":4806,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":4807,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":4808,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":4809,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":4810,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":4591,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":4811,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":4812,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":4813,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":4814,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":4815,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":4816,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":4817,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":4818,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":4819,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":4820,"\u002Fartificial-intelligence":4302,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":4558,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":4821,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":4119,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":4117,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":4652,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":4822,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":4145,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":4454,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":4823,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":4824,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":4825,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":4514,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":4826,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":4827,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":4828,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":4713,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":4829,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":4830,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":4129,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":4357,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":4831,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":4458,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":4832,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":4833,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":4353,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":4441,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":4834,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":4835,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":4836,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":4124,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":4498,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":4360,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":4837,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":4408,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":4472,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":4838,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":4839,"\u002Fnuclear-physics":4840,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":4841,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":4842,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":4479,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":4843,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":4844,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":4845,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":4328,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":4846,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":4847,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":4624,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":4848,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":4793,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":4849,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":4850,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":4851,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":4852,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":4853,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":4854,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":4855,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":4306,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":4856,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":4857,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":4799,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":4858,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":4859,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":4860,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":4861,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":4862,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":4863,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":4864,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":4865,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":4723,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":4866,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":4867,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":4868,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":4869,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":4870,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":4871,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":4872,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":4873,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":4874,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":4875,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":4876,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":4877,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":4577,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":4744,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":4334,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":4878,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":4879,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":4880,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":4881,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":4591,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":4882,"\u002Fnatural-language-processing":4302,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":4883,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":4499,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":4884,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":4644,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":4885,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":4886,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":4834,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":4887,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":4888,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":4449,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":4152,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":4889,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":4403,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":4890,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":4436,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":4891,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":4690,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":4892,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":4893,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":4659,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":4894,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":4123,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":4895,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":4896,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":4897,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":4440,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":4656,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":4898,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":4899,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":4515,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":4900,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":4560,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":4901,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":4902,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":4449,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":4482,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":4903,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":4904,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":4905,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":4538,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":4906,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":4280,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":4907,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":4382,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":4908,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":4909,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":4706,"\u002Fparticle-physics":4910,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":4500,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":4654,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":4911,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":4439,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":4912,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":4499,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":4411,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":4913,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":4914,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":4915,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":4916,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":4917,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":4705,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":4636,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":4918,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":4919,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":4920,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":4921,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":4833,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":4922,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":4395,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":4458,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":4440,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":4923,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":4524,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":4141,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":4924,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":4925,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":4655,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":4926,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":4927,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":4928,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":4929,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":4122,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":4930,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":4931,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":4382,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":4932,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":4933,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":4648,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":4304,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":4934,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":4935,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":4560,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":4546,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":4558,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":4655,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":4936,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":4121,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":4313,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":4937,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":4399,"\u002Fastrophysics-cosmology":4504,"\u002Fcolophon":4938,"\u002F":4302},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,2380,3013,2513,3256,3218,2194,2173,2205,2326,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":4940,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":4945,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":4949,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":4953,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":4957,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":4961,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":4965,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":4970,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":4974,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":4978,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":4982,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":4987,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":4991,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":4995,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":4999,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":5004,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":5008,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":5012,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":5016,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":5020,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":5024,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":5028,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":5032,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":5036,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":5040,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":5044,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":5048,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":5053,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":5057,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":5061,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":5065,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":5069,"\u002Falgorithms\u002Fsequences\u002Ftries":5073,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":5077,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":5081,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":5086,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":5090,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":5094,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":5098,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":5102,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":5106,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":5110,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":5114,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":5118,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":5122,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":5126,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":5130,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":5134,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":5138,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":5143,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":5147,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":5151,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":5155,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":5159,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":5164,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":5168,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":5172,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":5176,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":5180,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":5184,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":5188,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":5192,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":5196,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":5200,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":5204,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":5209,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":5213,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":5217,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":5221,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":5226,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":5230,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":5234,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":5238,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":5242,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":5246,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":5250,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":5255,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":5259,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":5263,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":5267,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":5272,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":5276,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":5280,"\u002Falgorithms":5284,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":5287,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":5292,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":5296,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":5300,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":5304,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":5309,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":5313,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":5317,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":5321,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":5326,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":5330,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":5334,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":5338,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":5343,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":5347,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":5351,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":5356,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":5360,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":5364,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":5369,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":5373,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":5377,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":5382,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":5386,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":5390,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":5394,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":5399,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":5403,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":5407,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":5412,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":5416,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":5420,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":5424,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":5428,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":5433,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":5437,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":5441,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":5445,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":5449,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":5454,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":5457,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":5461,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":5465,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":5469,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":5474,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":5478,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":5482,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":5486,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":5490,"\u002Fcalculus":5494,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":5497,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":5501,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":5505,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":5510,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":5514,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":5518,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":5522,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":5526,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":5531,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":5535,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":5539,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":5543,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":5547,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":5552,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":5556,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":5560,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":5564,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":5568,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":5573,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":5577,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":5581,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":5586,"\u002Fmechanics\u002Frotation\u002Frolling-motion":5590,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":5594,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":5598,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":5602,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":5606,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":5611,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":5615,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":5619,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":5623,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":5627,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":5631,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":5635,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":5640,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":5644,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":5648,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":5652,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":5656,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":5660,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":5664,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":5668,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":5672,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":5676,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":5680,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":5684,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":5689,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":5693,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":5697,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":5701,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":5705,"\u002Fmechanics":5709,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":5712,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":5717,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":5721,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":5725,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":5729,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":5733,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":5738,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":5742,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":5747,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":5751,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":5755,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":5759,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":5763,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":5768,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":5772,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":5776,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":5780,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":5785,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":5789,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":5793,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":5798,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":5802,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":5806,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":5810,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":5814,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":5819,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":5823,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":5827,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":5831,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":5835,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":5839,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":5844,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":5848,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":5852,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":5856,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":5860,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":5864,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":5868,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":5872,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":5877,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":5881,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":5885,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":5889,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":5893,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":5898,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":5902,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":5906,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":5910,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":5914,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":5919,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":5923,"\u002Felectricity-and-magnetism":5927,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":5930,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":5935,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":5939,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":5943,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":5947,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":5951,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":5956,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":5960,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":5964,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":5968,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":5972,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":5977,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":5981,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":5985,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":5990,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":5994,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":5998,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":6002,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":6006,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":6010,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":6014,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":6019,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":6023,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":6027,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":6031,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":6035,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":6039,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":6043,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":6048,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":6052,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":6056,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":6060,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":6064,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":6068,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":6073,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":6077,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":6081,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":6085,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":6089,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":6094,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":6098,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":6102,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":6106,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":6110,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":6114,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":6119,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":6123,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":6127,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":6131,"\u002Flinear-algebra":6135,"\u002Ftheory-of-computation":6138,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":6141,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":6145,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":6149,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":6153,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":6157,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":6161,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":6166,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":6170,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":6174,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":6178,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":6182,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":6186,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":6190,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":6195,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":6199,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":6203,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":6207,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":6211,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":6216,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":6220,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":6224,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":6228,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":6232,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":6237,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":6241,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":6245,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":6249,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":6253,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":6258,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":6262,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":6266,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":6270,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":6274,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":6279,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":6283,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":6287,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":6291,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":6295,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":6300,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":6304,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":6308,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":6313,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":6317,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":6322,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":6326,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":6330,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":6334,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":6338,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":6343,"\u002Fcomputer-architecture":6347,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":6350,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":6354,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":6358,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":6363,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":6367,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":6371,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":6375,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":6379,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":6383,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":6388,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":6392,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":6396,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":6400,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":6404,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":6408,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":6413,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":6417,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":6421,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":6426,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":6430,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":6435,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":6439,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":6443,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":6448,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":6452,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":6457,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":6461,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":6465,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":6470,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":6474,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":6478,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":6483,"\u002Fdifferential-equations":6487,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":6490,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":6495,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":6499,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":6503,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":6507,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":6511,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":6516,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":6520,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":6524,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":6528,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":6533,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":6537,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":6541,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":6545,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":6550,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":6554,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":6558,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":6562,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":6567,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":6571,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":6575,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":6579,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":6583,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":6587,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":6592,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":6596,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":6600,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":6605,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":6609,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":6613,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":6617,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":6622,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":6626,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":6630,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":6635,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":6639,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":6643,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":6648,"\u002Frelativity":6652,"\u002Fphysical-computing":6655,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":6658,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":6663,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":6667,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":6671,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":6675,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":6680,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":6684,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":6688,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":6693,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":6697,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":6701,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":6705,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":6709,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":6713,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":6718,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":6722,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":6726,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":6730,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":6734,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":6738,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":6743,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":6747,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":6751,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":6755,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":6759,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":6763,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":6767,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":6772,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":6776,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":6780,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":6785,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":6789,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":6793,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":6798,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":6802,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":6807,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":6811,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":6815,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":6819,"\u002Fquantum-mechanics":6823,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":6826,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":6831,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":6835,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":6839,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":6843,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":6848,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":6852,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":6856,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":6860,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":6864,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":6868,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":6873,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":6877,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":6881,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":6885,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":6889,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":6893,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":6897,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":6901,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":6905,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":6909,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":6913,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":6918,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":6922,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":6926,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":6930,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":6935,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":6939,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":6943,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":6946,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":6950,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":6955,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":6959,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":6963,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":6967,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":6972,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":6976,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":6980,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":6984,"\u002Freal-analysis":6988,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":6991,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":6995,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":6999,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":7004,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":7008,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":7012,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":7016,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":7021,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":7025,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":7029,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":7033,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":7037,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":7041,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":7046,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":7050,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":7054,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":7058,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":7063,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":7067,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":7071,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":7075,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":7080,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":7084,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":7088,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":7093,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":7097,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":7101,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":7105,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":7110,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":7114,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":7118,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":7122,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":7127,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":7131,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":7135,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":7140,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":7144,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":7148,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":7152,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":7157,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":7161,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":7165,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":7169,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":7173,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":7178,"\u002Fabstract-algebra":7182,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":7185,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":7190,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":7194,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":7198,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":7202,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":7206,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":7211,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":7215,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":7219,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":7223,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":7227,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":7231,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":7235,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":7240,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":7244,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":7248,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":7252,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":7257,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":7261,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":7265,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":7270,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":7274,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":7278,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":7282,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":7286,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":7290,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":7295,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":7299,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":7303,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":7308,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":7312,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":7316,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":7320,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":7325,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":7329,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":7333,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":7338,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":7342,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":7346,"\u002Fatomic-physics":7350,"\u002Fdatabases":7353,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":7356,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":7360,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":7364,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":7368,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":7372,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":7376,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":7380,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":7385,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":7389,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":7393,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":7398,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":7402,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":7406,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":7411,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":7415,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":7419,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":7423,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":7427,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":7432,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":7436,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":7440,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":7444,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":7449,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":7453,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":7457,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":7461,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":7466,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":7470,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":7474,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":7478,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":7483,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":7487,"\u002Fcategory-theory":7491,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":7494,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":7498,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":7502,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":7506,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":7509,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":7513,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":7517,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":7521,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":7526,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":7530,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":7534,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":7538,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":7542,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":7547,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":7551,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":7555,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":7559,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":7563,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":7568,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":7572,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":7576,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":7580,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":7585,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":7589,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":7593,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":7597,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":7601,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":7605,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":7609,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":7613,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":7617,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":7622,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":7626,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":7630,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":7634,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":7638,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":7643,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":7647,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":7651,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":7655,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":7659,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":7663,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":7667,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":7672,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":7676,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":7680,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":7685,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":7689,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":7693,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":7697,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":7701,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":7705,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":7709,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":7714,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":7718,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":7722,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":7726,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":7730,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":7734,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":7738,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":7742,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":7746,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":7750,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":7754,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":7759,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":7763,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":7767,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":7771,"\u002Fdeep-learning":7775,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":7778,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":7782,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":7786,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":7790,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":7794,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":7798,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":7803,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":7807,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":7811,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":7815,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":7820,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":7824,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":7828,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":7832,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":7837,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":7841,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":7845,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":7849,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":7853,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":7858,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":7862,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":7866,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":7871,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":7875,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":7879,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":7884,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":7888,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":7892,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":7896,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":7901,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":7905,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":7909,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":7913,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":7917,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":7921,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":7926,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7930,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":7934,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":7938,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":7943,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":7947,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":7951,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":7956,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":7960,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":7964,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":7968,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":7972,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":7977,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":7981,"\u002Fstatistical-mechanics":7985,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":7988,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":7993,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":7997,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":8001,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":8005,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":8010,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":8014,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":8018,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":8022,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":8027,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":8031,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":8035,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":8039,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":8044,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":8048,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":8052,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":8056,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":8061,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":8065,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":8069,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":8073,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":8078,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":8082,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":8086,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":8090,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":8095,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":8099,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":8103,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":8107,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":8111,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":8116,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":8120,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":8125,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":8129,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":8133,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":8137,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":8142,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":8146,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":8150,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":8154,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":8158,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":8163,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":8167,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":8171,"\u002Fcondensed-matter":8175,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":8178,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":8182,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":8187,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":8191,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":8195,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":8199,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":8203,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":8207,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":8211,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":8216,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":8220,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":8224,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":8228,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":8233,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":8237,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":8241,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":8245,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":8250,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":8254,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":8258,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":8262,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":8267,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":8271,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":8275,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":8279,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":8284,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":8288,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":8292,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":8297,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":8301,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":8306,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":8310,"\u002Flogic":8314,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":8317,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":8321,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":8325,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":8328,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":8332,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":8336,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":8340,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":8343,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":8347,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":8351,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":8355,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":8359,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":8363,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":8367,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":8371,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":8375,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":8379,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":8381,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":8382,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":8387,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":8391,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":8395,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":8399,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":8403,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":8407,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":8411,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":8415,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":8419,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":8423,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":8427,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":8431,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":8435,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":8439,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":8443,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":8447,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":8451,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":8455,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":8458,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":8462,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":8466,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":8470,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":8475,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":8479,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":8483,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":8487,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":8491,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":8495,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":8499,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":8503,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":8507,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":8511,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":8515,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":8519,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":8523,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":8527,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":8531,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":8535,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":8539,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":8543,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":8547,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":8551,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":8555,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":8559,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":8564,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":8568,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":8572,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":8576,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":8580,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":8584,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":8588,"\u002Freinforcement-learning":8592,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":8594,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":8598,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":8602,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":8606,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":8610,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":8615,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":8619,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":8623,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":8627,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":8631,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":8635,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":8639,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":8643,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":8647,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":8651,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":8655,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":8659,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":8664,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":8668,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":8672,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":8676,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":8680,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":8684,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":8688,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":8692,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":8696,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":8700,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":8704,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":8708,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":8713,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":8717,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":8721,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":8725,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":8729,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":8733,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":8737,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":8740,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":8744,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":8748,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":8753,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":8757,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":8761,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":8765,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":8768,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":8772,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":8776,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":8780,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":8785,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":8789,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":8793,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":8797,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":8801,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":8805,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":8809,"\u002Fartificial-intelligence":8813,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":8816,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":8821,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":8825,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":8829,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":8833,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":8837,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":8842,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":8846,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":8850,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":8854,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":8859,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":8863,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":8867,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":8871,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":8876,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":8880,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":8885,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":8889,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":8894,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":8898,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":8902,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":8906,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":8911,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":8915,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":8919,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":8924,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":8928,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":8932,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":8937,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":8941,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":8946,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":8950,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":8954,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":8959,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":8963,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":8967,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":8971,"\u002Fnuclear-physics":8975,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":8978,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":8982,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":8986,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":8990,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":8994,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":8998,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":9003,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":9007,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":9011,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":9015,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":9020,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":9024,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":9028,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":9032,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":9036,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":9040,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":9044,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":9047,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":9050,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":9054,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":9058,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":9062,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":9067,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":9071,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":9075,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":9079,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":9083,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":9087,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":9091,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":9095,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":9099,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":9103,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":9107,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":9111,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":9115,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":9119,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":9123,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":9127,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":9131,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":9135,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":9139,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":9143,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":9147,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":9151,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":9155,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":9159,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":9163,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":9167,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":9171,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":9175,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":9180,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":9184,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":9188,"\u002Fnatural-language-processing":9192,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":9195,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":9199,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":9203,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":9207,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":9212,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":9216,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":9220,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":9224,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":9229,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":9233,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":9237,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":9241,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":9246,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":9250,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":9254,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":9258,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":9263,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":9267,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":9271,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":9276,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":9280,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":9284,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":9288,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":9293,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":9297,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":9301,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":9305,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":9310,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":9314,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":9318,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":9322,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":9327,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":9331,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":9335,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":9339,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":9343,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":9348,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":9352,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":9356,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":9361,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":9365,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":9369,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":9373,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":9377,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":9381,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":9385,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":9389,"\u002Fparticle-physics":9393,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":9396,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":9401,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":9405,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":9409,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":9414,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":9418,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":9422,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":9426,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":9431,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":9435,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":9439,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":9443,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":9448,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":9452,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":9456,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":9460,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":9465,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":9469,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":9473,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":9477,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":9482,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":9486,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":9490,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":9495,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":9499,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":9503,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":9507,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":9511,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":9515,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":9519,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":9523,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":9527,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":9532,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":9536,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":9540,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":9544,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":9549,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":9553,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":9557,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":9561,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":9565,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":9570,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":9574,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":9577,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":9581,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":9585,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":9590,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":9594,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":9598,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":9602,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":9606,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":9610,"\u002Fastrophysics-cosmology":9614,"\u002Fcolophon":9617,"\u002F":9620},{"path":4941,"title":4942,"module":4943,"summary":4944},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","Foundations","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":4946,"title":4947,"module":4943,"summary":4948},"\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":4950,"title":4951,"module":4943,"summary":4952},"\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":4954,"title":4955,"module":4943,"summary":4956},"\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":4958,"title":4959,"module":4943,"summary":4960},"\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":4962,"title":4963,"module":4943,"summary":4964},"\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":4966,"title":4967,"module":4968,"summary":4969},"\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":4971,"title":4972,"module":4968,"summary":4973},"\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":4975,"title":4976,"module":4968,"summary":4977},"\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":4979,"title":4980,"module":4968,"summary":4981},"\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":4983,"title":4984,"module":4985,"summary":4986},"\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":4988,"title":4989,"module":4985,"summary":4990},"\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":4992,"title":4993,"module":4985,"summary":4994},"\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":4996,"title":4997,"module":4985,"summary":4998},"\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":5000,"title":5001,"module":5002,"summary":5003},"\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":5005,"title":5006,"module":5002,"summary":5007},"\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":5009,"title":5010,"module":5002,"summary":5011},"\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":5013,"title":5014,"module":5002,"summary":5015},"\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":5017,"title":5018,"module":5002,"summary":5019},"\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":5021,"title":5022,"module":5002,"summary":5023},"\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":5025,"title":5026,"module":5002,"summary":5027},"\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":5029,"title":5030,"module":5002,"summary":5031},"\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":5033,"title":5034,"module":5002,"summary":5035},"\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":5037,"title":5038,"module":5002,"summary":5039},"\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":5041,"title":5042,"module":5002,"summary":5043},"\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":5045,"title":5046,"module":5002,"summary":5047},"\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":5049,"title":5050,"module":5051,"summary":5052},"\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":5054,"title":5055,"module":5051,"summary":5056},"\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":5058,"title":5059,"module":5051,"summary":5060},"\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":5062,"title":5063,"module":5051,"summary":5064},"\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":5066,"title":5067,"module":5051,"summary":5068},"\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":5070,"title":5071,"module":5051,"summary":5072},"\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":5074,"title":5075,"module":5051,"summary":5076},"\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":5078,"title":5079,"module":5051,"summary":5080},"\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":5082,"title":5083,"module":5084,"summary":5085},"\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":5087,"title":5088,"module":5084,"summary":5089},"\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":5091,"title":5092,"module":5084,"summary":5093},"\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":5095,"title":5096,"module":5084,"summary":5097},"\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":5099,"title":5100,"module":5084,"summary":5101},"\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":5103,"title":5104,"module":5084,"summary":5105},"\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":5107,"title":5108,"module":5084,"summary":5109},"\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":5111,"title":5112,"module":5084,"summary":5113},"\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":5115,"title":5116,"module":5084,"summary":5117},"\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":5119,"title":5120,"module":5084,"summary":5121},"\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":5123,"title":5124,"module":5084,"summary":5125},"\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":5127,"title":5128,"module":5084,"summary":5129},"\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":5131,"title":5132,"module":5084,"summary":5133},"\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":5135,"title":5136,"module":5084,"summary":5137},"\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":5139,"title":5140,"module":5141,"summary":5142},"\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":5144,"title":5145,"module":5141,"summary":5146},"\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":5148,"title":5149,"module":5141,"summary":5150},"\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":5152,"title":5153,"module":5141,"summary":5154},"\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":5156,"title":5157,"module":5141,"summary":5158},"\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":5160,"title":5161,"module":5162,"summary":5163},"\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":5165,"title":5166,"module":5162,"summary":5167},"\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":5169,"title":5170,"module":5162,"summary":5171},"\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":5173,"title":5174,"module":5162,"summary":5175},"\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":5177,"title":5178,"module":5162,"summary":5179},"\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":5181,"title":5182,"module":5162,"summary":5183},"\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":5185,"title":5186,"module":5162,"summary":5187},"\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":5189,"title":5190,"module":5162,"summary":5191},"\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":5193,"title":5194,"module":5162,"summary":5195},"\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":5197,"title":5198,"module":5162,"summary":5199},"\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":5201,"title":5202,"module":5162,"summary":5203},"\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":5205,"title":5206,"module":5207,"summary":5208},"\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":5210,"title":5211,"module":5207,"summary":5212},"\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":5214,"title":5215,"module":5207,"summary":5216},"\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":5218,"title":5219,"module":5207,"summary":5220},"\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":5222,"title":5223,"module":5224,"summary":5225},"\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":5227,"title":5228,"module":5224,"summary":5229},"\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":5231,"title":5232,"module":5224,"summary":5233},"\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":5235,"title":5236,"module":5224,"summary":5237},"\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":5239,"title":5240,"module":5224,"summary":5241},"\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":5243,"title":5244,"module":5224,"summary":5245},"\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":5247,"title":5248,"module":5224,"summary":5249},"\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":5251,"title":5252,"module":5253,"summary":5254},"\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":5256,"title":5257,"module":5253,"summary":5258},"\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":5260,"title":5261,"module":5253,"summary":5262},"\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":5264,"title":5265,"module":5253,"summary":5266},"\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":5268,"title":5269,"module":5270,"summary":5271},"\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":5273,"title":5274,"module":5270,"summary":5275},"\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":5277,"title":5278,"module":5270,"summary":5279},"\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":5281,"title":5282,"module":5270,"summary":5283},"\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":5285,"title":5286,"module":6,"summary":6},"\u002Falgorithms","Algorithms",{"path":5288,"title":5289,"module":5290,"summary":5291},"\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":5293,"title":5294,"module":5290,"summary":5295},"\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":5297,"title":5298,"module":5290,"summary":5299},"\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":5301,"title":5302,"module":5290,"summary":5303},"\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":5305,"title":5306,"module":5307,"summary":5308},"\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":5310,"title":5311,"module":5307,"summary":5312},"\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":5314,"title":5315,"module":5307,"summary":5316},"\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":5318,"title":5319,"module":5307,"summary":5320},"\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":5322,"title":5323,"module":5324,"summary":5325},"\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":5327,"title":5328,"module":5324,"summary":5329},"\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":5331,"title":5332,"module":5324,"summary":5333},"\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":5335,"title":5336,"module":5324,"summary":5337},"\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":5339,"title":5340,"module":5341,"summary":5342},"\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":5344,"title":5345,"module":5341,"summary":5346},"\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":5348,"title":5349,"module":5341,"summary":5350},"\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":5352,"title":5353,"module":5354,"summary":5355},"\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":5357,"title":5358,"module":5354,"summary":5359},"\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":5361,"title":5362,"module":5354,"summary":5363},"\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":5365,"title":5366,"module":5367,"summary":5368},"\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":5370,"title":5371,"module":5367,"summary":5372},"\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":5374,"title":5375,"module":5367,"summary":5376},"\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":5378,"title":5379,"module":5380,"summary":5381},"\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":5383,"title":5384,"module":5380,"summary":5385},"\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":5387,"title":5388,"module":5380,"summary":5389},"\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":5391,"title":5392,"module":5380,"summary":5393},"\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":5395,"title":5396,"module":5397,"summary":5398},"\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":5400,"title":5401,"module":5397,"summary":5402},"\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":5404,"title":5405,"module":5397,"summary":5406},"\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":5408,"title":5409,"module":5410,"summary":5411},"\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":5413,"title":5414,"module":5410,"summary":5415},"\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":5417,"title":5418,"module":5410,"summary":5419},"\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":5421,"title":5422,"module":5410,"summary":5423},"\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":5425,"title":5426,"module":5410,"summary":5427},"\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":5429,"title":5430,"module":5431,"summary":5432},"\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":5434,"title":5435,"module":5431,"summary":5436},"\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":5438,"title":5439,"module":5431,"summary":5440},"\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":5442,"title":5443,"module":5431,"summary":5444},"\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":5446,"title":5447,"module":5431,"summary":5448},"\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":5450,"title":5451,"module":5452,"summary":5453},"\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":5455,"title":5452,"module":5452,"summary":5456},"\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":5458,"title":5459,"module":5452,"summary":5460},"\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":5462,"title":5463,"module":5452,"summary":5464},"\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":5466,"title":5467,"module":5452,"summary":5468},"\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":5470,"title":5471,"module":5472,"summary":5473},"\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":5475,"title":5476,"module":5472,"summary":5477},"\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":5479,"title":5480,"module":5472,"summary":5481},"\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":5483,"title":5484,"module":5472,"summary":5485},"\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":5487,"title":5488,"module":5472,"summary":5489},"\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":5491,"title":5492,"module":5472,"summary":5493},"\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":5495,"title":5496,"module":6,"summary":6},"\u002Fcalculus","Calculus",{"path":5498,"title":5499,"module":4943,"summary":5500},"\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":5502,"title":5503,"module":4943,"summary":5504},"\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":5506,"title":5507,"module":5508,"summary":5509},"\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":5511,"title":5512,"module":5508,"summary":5513},"\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":5515,"title":5516,"module":5508,"summary":5517},"\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":5519,"title":5520,"module":5508,"summary":5521},"\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":5523,"title":5524,"module":5508,"summary":5525},"\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":5527,"title":5528,"module":5529,"summary":5530},"\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":5532,"title":5533,"module":5529,"summary":5534},"\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":5536,"title":5537,"module":5529,"summary":5538},"\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":5540,"title":5541,"module":5529,"summary":5542},"\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":5544,"title":5545,"module":5529,"summary":5546},"\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":5548,"title":5549,"module":5550,"summary":5551},"\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":5553,"title":5554,"module":5550,"summary":5555},"\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":5557,"title":5558,"module":5550,"summary":5559},"\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":5561,"title":5562,"module":5550,"summary":5563},"\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":5565,"title":5566,"module":5550,"summary":5567},"\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":5569,"title":5570,"module":5571,"summary":5572},"\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":5574,"title":5575,"module":5571,"summary":5576},"\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":5578,"title":5579,"module":5571,"summary":5580},"\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":5582,"title":5583,"module":5584,"summary":5585},"\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":5587,"title":5588,"module":5584,"summary":5589},"\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":5591,"title":5592,"module":5584,"summary":5593},"\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":5595,"title":5596,"module":5584,"summary":5597},"\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":5599,"title":5600,"module":5584,"summary":5601},"\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":5603,"title":5604,"module":5584,"summary":5605},"\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":5607,"title":5608,"module":5609,"summary":5610},"\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":5612,"title":5613,"module":5609,"summary":5614},"\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":5616,"title":5617,"module":5609,"summary":5618},"\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":5620,"title":5621,"module":5609,"summary":5622},"\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":5624,"title":5625,"module":5609,"summary":5626},"\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":5628,"title":5629,"module":5609,"summary":5630},"\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":5632,"title":5633,"module":5609,"summary":5634},"\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":5636,"title":5637,"module":5638,"summary":5639},"\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":5641,"title":5642,"module":5638,"summary":5643},"\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":5645,"title":5646,"module":5638,"summary":5647},"\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":5649,"title":5650,"module":5638,"summary":5651},"\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":5653,"title":5654,"module":5638,"summary":5655},"\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":5657,"title":5658,"module":5638,"summary":5659},"\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":5661,"title":5662,"module":5638,"summary":5663},"\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":5665,"title":5666,"module":5638,"summary":5667},"\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":5669,"title":5670,"module":5638,"summary":5671},"\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":5673,"title":5674,"module":5638,"summary":5675},"\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":5677,"title":5678,"module":5638,"summary":5679},"\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":5681,"title":5682,"module":5638,"summary":5683},"\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":5685,"title":5686,"module":5687,"summary":5688},"\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":5690,"title":5691,"module":5687,"summary":5692},"\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":5694,"title":5695,"module":5687,"summary":5696},"\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":5698,"title":5699,"module":5687,"summary":5700},"\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":5702,"title":5703,"module":5687,"summary":5704},"\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":5706,"title":5707,"module":5687,"summary":5708},"\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":5710,"title":5711,"module":6,"summary":6},"\u002Fmechanics","Mechanics & Dynamics",{"path":5713,"title":5714,"module":5715,"summary":5716},"\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":5718,"title":5719,"module":5715,"summary":5720},"\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":5722,"title":5723,"module":5715,"summary":5724},"\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":5726,"title":5727,"module":5715,"summary":5728},"\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":5730,"title":5731,"module":5715,"summary":5732},"\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":5734,"title":5735,"module":5736,"summary":5737},"\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":5739,"title":5740,"module":5736,"summary":5741},"\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":5743,"title":5744,"module":5745,"summary":5746},"\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":5748,"title":5749,"module":5745,"summary":5750},"\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":5752,"title":5753,"module":5745,"summary":5754},"\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":5756,"title":5757,"module":5745,"summary":5758},"\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":5760,"title":5761,"module":5745,"summary":5762},"\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":5764,"title":5765,"module":5766,"summary":5767},"\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":5769,"title":5770,"module":5766,"summary":5771},"\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":5773,"title":5774,"module":5766,"summary":5775},"\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":5777,"title":5778,"module":5766,"summary":5779},"\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":5781,"title":5782,"module":5783,"summary":5784},"\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":5786,"title":5787,"module":5783,"summary":5788},"\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":5790,"title":5791,"module":5783,"summary":5792},"\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":5794,"title":5795,"module":5796,"summary":5797},"\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":5799,"title":5800,"module":5796,"summary":5801},"\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":5803,"title":5804,"module":5796,"summary":5805},"\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":5807,"title":5808,"module":5796,"summary":5809},"\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":5811,"title":5812,"module":5796,"summary":5813},"\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":5815,"title":5816,"module":5817,"summary":5818},"\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":5820,"title":5821,"module":5817,"summary":5822},"\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":5824,"title":5825,"module":5817,"summary":5826},"\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":5828,"title":5829,"module":5817,"summary":5830},"\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":5832,"title":5833,"module":5817,"summary":5834},"\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":5836,"title":5837,"module":5817,"summary":5838},"\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":5840,"title":5841,"module":5842,"summary":5843},"\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":5845,"title":5846,"module":5842,"summary":5847},"\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":5849,"title":5850,"module":5842,"summary":5851},"\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":5853,"title":5854,"module":5842,"summary":5855},"\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":5857,"title":5858,"module":5842,"summary":5859},"\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":5861,"title":5862,"module":5842,"summary":5863},"\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":5865,"title":5866,"module":5842,"summary":5867},"\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":5869,"title":5870,"module":5842,"summary":5871},"\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":5873,"title":5874,"module":5875,"summary":5876},"\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":5878,"title":5879,"module":5875,"summary":5880},"\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":5882,"title":5883,"module":5875,"summary":5884},"\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":5886,"title":5887,"module":5875,"summary":5888},"\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":5890,"title":5891,"module":5875,"summary":5892},"\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":5894,"title":5895,"module":5896,"summary":5897},"\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":5899,"title":5900,"module":5896,"summary":5901},"\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":5903,"title":5904,"module":5896,"summary":5905},"\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":5907,"title":5908,"module":5896,"summary":5909},"\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":5911,"title":5912,"module":5896,"summary":5913},"\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":5915,"title":5916,"module":5917,"summary":5918},"\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":5920,"title":5921,"module":5917,"summary":5922},"\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":5924,"title":5925,"module":5917,"summary":5926},"\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":5928,"title":5929,"module":6,"summary":6},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":5931,"title":5932,"module":5933,"summary":5934},"\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":5936,"title":5937,"module":5933,"summary":5938},"\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":5940,"title":5941,"module":5933,"summary":5942},"\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":5944,"title":5945,"module":5933,"summary":5946},"\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":5948,"title":5949,"module":5933,"summary":5950},"\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":5952,"title":5953,"module":5954,"summary":5955},"\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":5957,"title":5958,"module":5954,"summary":5959},"\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":5961,"title":5962,"module":5954,"summary":5963},"\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":5965,"title":5966,"module":5954,"summary":5967},"\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":5969,"title":5970,"module":5954,"summary":5971},"\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":5973,"title":5974,"module":5975,"summary":5976},"\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":5978,"title":5979,"module":5975,"summary":5980},"\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":5982,"title":5983,"module":5975,"summary":5984},"\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":5986,"title":5987,"module":5988,"summary":5989},"\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":5991,"title":5992,"module":5988,"summary":5993},"\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":5995,"title":5996,"module":5988,"summary":5997},"\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":5999,"title":6000,"module":5988,"summary":6001},"\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":6003,"title":6004,"module":5988,"summary":6005},"\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":6007,"title":6008,"module":5988,"summary":6009},"\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":6011,"title":6012,"module":5988,"summary":6013},"\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":6015,"title":6016,"module":6017,"summary":6018},"\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":6020,"title":6021,"module":6017,"summary":6022},"\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":6024,"title":6025,"module":6017,"summary":6026},"\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":6028,"title":6029,"module":6017,"summary":6030},"\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":6032,"title":6033,"module":6017,"summary":6034},"\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":6036,"title":6037,"module":6017,"summary":6038},"\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":6040,"title":6041,"module":6017,"summary":6042},"\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":6044,"title":6045,"module":6046,"summary":6047},"\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":6049,"title":6050,"module":6046,"summary":6051},"\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":6053,"title":6054,"module":6046,"summary":6055},"\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":6057,"title":6058,"module":6046,"summary":6059},"\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":6061,"title":6062,"module":6046,"summary":6063},"\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":6065,"title":6066,"module":6046,"summary":6067},"\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":6069,"title":6070,"module":6071,"summary":6072},"\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":6074,"title":6075,"module":6071,"summary":6076},"\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":6078,"title":6079,"module":6071,"summary":6080},"\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":6082,"title":6083,"module":6071,"summary":6084},"\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":6086,"title":6087,"module":6071,"summary":6088},"\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":6090,"title":6091,"module":6092,"summary":6093},"\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":6095,"title":6096,"module":6092,"summary":6097},"\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":6099,"title":6100,"module":6092,"summary":6101},"\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":6103,"title":6104,"module":6092,"summary":6105},"\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":6107,"title":6108,"module":6092,"summary":6109},"\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":6111,"title":6112,"module":6092,"summary":6113},"\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":6115,"title":6116,"module":6117,"summary":6118},"\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":6120,"title":6121,"module":6117,"summary":6122},"\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":6124,"title":6125,"module":6117,"summary":6126},"\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":6128,"title":6129,"module":6117,"summary":6130},"\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":6132,"title":6133,"module":6117,"summary":6134},"\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":6136,"title":6137,"module":6,"summary":6},"\u002Flinear-algebra","Linear Algebra",{"path":6139,"title":6140,"module":6,"summary":6},"\u002Ftheory-of-computation","Theory of Computation",{"path":6142,"title":6143,"module":4943,"summary":6144},"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words","Bits, Bytes, and Words","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",{"path":6146,"title":6147,"module":4943,"summary":6148},"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation","Integer Representation","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",{"path":6150,"title":6151,"module":4943,"summary":6152},"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic","Integer Arithmetic","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",{"path":6154,"title":6155,"module":4943,"summary":6156},"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point","Floating Point","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",{"path":6158,"title":6159,"module":4943,"summary":6160},"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation","Boolean Algebra and Bit Manipulation","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",{"path":6162,"title":6163,"module":6164,"summary":6165},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view","The Machine's View","Machine-Level Programming","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",{"path":6167,"title":6168,"module":6164,"summary":6169},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement","Data Movement","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",{"path":6171,"title":6172,"module":6164,"summary":6173},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic","Arithmetic and Logic","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",{"path":6175,"title":6176,"module":6164,"summary":6177},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow","Control Flow","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",{"path":6179,"title":6180,"module":6164,"summary":6181},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures","Procedures","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",{"path":6183,"title":6184,"module":6164,"summary":6185},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment","Arrays, Structs, and Alignment","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",{"path":6187,"title":6188,"module":6164,"summary":6189},"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows","Memory Layout and Buffer Overflows","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",{"path":6191,"title":6192,"module":6193,"summary":6194},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is","What an ISA Is","Instruction Set Architecture","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",{"path":6196,"title":6197,"module":6193,"summary":6198},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands","Instruction Formats and Operands","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",{"path":6200,"title":6201,"module":6193,"summary":6202},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes","Addressing Modes","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",{"path":6204,"title":6205,"module":6193,"summary":6206},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set","The Y86-64 Instruction Set","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",{"path":6208,"title":6209,"module":6193,"summary":6210},"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming","Y86-64 Programming","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",{"path":6212,"title":6213,"module":6214,"summary":6215},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions","Transistors, Gates, and Boolean Functions","Digital Logic","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",{"path":6217,"title":6218,"module":6214,"summary":6219},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl","Combinational Logic and HCL","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",{"path":6221,"title":6222,"module":6214,"summary":6223},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu","Multiplexers, Decoders, and the ALU","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",{"path":6225,"title":6226,"module":6214,"summary":6227},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking","Memory Elements: Latches, Flip-Flops, and Clocking","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",{"path":6229,"title":6230,"module":6214,"summary":6231},"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory","Register Files and Random-Access Memory","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",{"path":6233,"title":6234,"module":6235,"summary":6236},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle","The Fetch-Decode-Execute Cycle","Processor Design","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",{"path":6238,"title":6239,"module":6235,"summary":6240},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages","The SEQ Stages","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",{"path":6242,"title":6243,"module":6235,"summary":6244},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing","Control Logic and Sequencing","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",{"path":6246,"title":6247,"module":6235,"summary":6248},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq","Assembling SEQ","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",{"path":6250,"title":6251,"module":6235,"summary":6252},"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program","Tracing a Program","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",{"path":6254,"title":6255,"module":6256,"summary":6257},"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles","Pipelining Principles","Pipelining","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",{"path":6259,"title":6260,"module":6256,"summary":6261},"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe","From SEQ to PIPE","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",{"path":6263,"title":6264,"module":6256,"summary":6265},"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding","Data Hazards: Stalling and Forwarding","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",{"path":6267,"title":6268,"module":6256,"summary":6269},"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction","Control Hazards and Branch Prediction","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",{"path":6271,"title":6272,"module":6256,"summary":6273},"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor","The Complete PIPE Processor","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",{"path":6275,"title":6276,"module":6277,"summary":6278},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap","Storage Technologies and the Latency Gap","The Memory Hierarchy","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",{"path":6280,"title":6281,"module":6277,"summary":6282},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality","Locality","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",{"path":6284,"title":6285,"module":6277,"summary":6286},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped","Cache Memories and Direct Mapping","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",{"path":6288,"title":6289,"module":6277,"summary":6290},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies","Set-Associative Caches and Write Policies","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",{"path":6292,"title":6293,"module":6277,"summary":6294},"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code","Cache Performance and Cache-Friendly Code","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",{"path":6296,"title":6297,"module":6298,"summary":6299},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation","Address Spaces and Translation","Virtual Memory","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",{"path":6301,"title":6302,"module":6298,"summary":6303},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults","Page Tables and Page Faults","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",{"path":6305,"title":6306,"module":6298,"summary":6307},"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables","The TLB and Multi-Level Page Tables","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",{"path":6309,"title":6310,"module":6311,"summary":6312},"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow","Exceptional Control Flow","Exceptions & I\u002FO","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",{"path":6314,"title":6315,"module":6311,"summary":6316},"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel","Interrupts and the Kernel","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",{"path":6318,"title":6319,"module":6320,"summary":6321},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism","Processes, Threads, and Parallelism","Multithreading & Multicore","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",{"path":6323,"title":6324,"module":6320,"summary":6325},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading","Hardware Multithreading","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",{"path":6327,"title":6328,"module":6320,"summary":6329},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence","Cache Coherence","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",{"path":6331,"title":6332,"module":6320,"summary":6333},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization","Memory Consistency and Synchronization","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",{"path":6335,"title":6336,"module":6320,"summary":6337},"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization","Multicore Organization","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",{"path":6339,"title":6340,"module":6341,"summary":6342},"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine","The Whole Machine","Capstone","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",{"path":6344,"title":6345,"module":6341,"summary":6346},"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu","Assembling a Complete CPU","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",{"path":6348,"title":6349,"module":6,"summary":6},"\u002Fcomputer-architecture","Computer Architecture",{"path":6351,"title":6352,"module":4943,"summary":6353},"\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":6355,"title":6356,"module":4943,"summary":6357},"\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":6359,"title":6360,"module":6361,"summary":6362},"\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":6364,"title":6365,"module":6361,"summary":6366},"\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":6368,"title":6369,"module":6361,"summary":6370},"\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":6372,"title":6373,"module":6361,"summary":6374},"\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":6376,"title":6377,"module":6361,"summary":6378},"\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":6380,"title":6381,"module":6361,"summary":6382},"\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":6384,"title":6385,"module":6386,"summary":6387},"\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":6389,"title":6390,"module":6386,"summary":6391},"\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":6393,"title":6394,"module":6386,"summary":6395},"\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":6397,"title":6398,"module":6386,"summary":6399},"\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":6401,"title":6402,"module":6386,"summary":6403},"\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":6405,"title":6406,"module":6386,"summary":6407},"\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":6409,"title":6410,"module":6411,"summary":6412},"\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":6414,"title":6415,"module":6411,"summary":6416},"\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":6418,"title":6419,"module":6411,"summary":6420},"\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":6422,"title":6423,"module":6424,"summary":6425},"\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":6427,"title":6428,"module":6424,"summary":6429},"\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":6431,"title":6432,"module":6433,"summary":6434},"\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":6436,"title":6437,"module":6433,"summary":6438},"\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":6440,"title":6441,"module":6433,"summary":6442},"\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":6444,"title":6445,"module":6446,"summary":6447},"\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":6449,"title":6450,"module":6446,"summary":6451},"\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":6453,"title":6454,"module":6455,"summary":6456},"\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":6458,"title":6459,"module":6455,"summary":6460},"\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":6462,"title":6463,"module":6455,"summary":6464},"\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":6466,"title":6467,"module":6468,"summary":6469},"\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":6471,"title":6472,"module":6468,"summary":6473},"\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":6475,"title":6476,"module":6468,"summary":6477},"\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":6479,"title":6480,"module":6481,"summary":6482},"\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":6484,"title":6485,"module":6481,"summary":6486},"\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":6488,"title":6489,"module":6,"summary":6},"\u002Fdifferential-equations","Differential Equations",{"path":6491,"title":6492,"module":6493,"summary":6494},"\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":6496,"title":6497,"module":6493,"summary":6498},"\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":6500,"title":6501,"module":6493,"summary":6502},"\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":6504,"title":6505,"module":6493,"summary":6506},"\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":6508,"title":6509,"module":6493,"summary":6510},"\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":6512,"title":6513,"module":6514,"summary":6515},"\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":6517,"title":6518,"module":6514,"summary":6519},"\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":6521,"title":6522,"module":6514,"summary":6523},"\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":6525,"title":6526,"module":6514,"summary":6527},"\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":6529,"title":6530,"module":6531,"summary":6532},"\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":6534,"title":6535,"module":6531,"summary":6536},"\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":6538,"title":6539,"module":6531,"summary":6540},"\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":6542,"title":6543,"module":6531,"summary":6544},"\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":6546,"title":6547,"module":6548,"summary":6549},"\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":6551,"title":6552,"module":6548,"summary":6553},"\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":6555,"title":6556,"module":6548,"summary":6557},"\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":6559,"title":6560,"module":6548,"summary":6561},"\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":6563,"title":6564,"module":6565,"summary":6566},"\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":6568,"title":6569,"module":6565,"summary":6570},"\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":6572,"title":6573,"module":6565,"summary":6574},"\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":6576,"title":6577,"module":6565,"summary":6578},"\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":6580,"title":6581,"module":6565,"summary":6582},"\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":6584,"title":6585,"module":6565,"summary":6586},"\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":6588,"title":6589,"module":6590,"summary":6591},"\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":6593,"title":6594,"module":6590,"summary":6595},"\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":6597,"title":6598,"module":6590,"summary":6599},"\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":6601,"title":6602,"module":6603,"summary":6604},"\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":6606,"title":6607,"module":6603,"summary":6608},"\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":6610,"title":6611,"module":6603,"summary":6612},"\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":6614,"title":6615,"module":6603,"summary":6616},"\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":6618,"title":6619,"module":6620,"summary":6621},"\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":6623,"title":6624,"module":6620,"summary":6625},"\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":6627,"title":6628,"module":6620,"summary":6629},"\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":6631,"title":6632,"module":6633,"summary":6634},"\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":6636,"title":6637,"module":6633,"summary":6638},"\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":6640,"title":6641,"module":6633,"summary":6642},"\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":6644,"title":6645,"module":6646,"summary":6647},"\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":6649,"title":6650,"module":6646,"summary":6651},"\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":6653,"title":6654,"module":6,"summary":6},"\u002Frelativity","Relativity",{"path":6656,"title":6657,"module":6,"summary":6},"\u002Fphysical-computing","Physical Computing",{"path":6659,"title":6660,"module":6661,"summary":6662},"\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":6664,"title":6665,"module":6661,"summary":6666},"\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":6668,"title":6669,"module":6661,"summary":6670},"\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":6672,"title":6673,"module":6661,"summary":6674},"\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":6676,"title":6677,"module":6678,"summary":6679},"\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":6681,"title":6682,"module":6678,"summary":6683},"\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":6685,"title":6686,"module":6678,"summary":6687},"\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":6689,"title":6690,"module":6691,"summary":6692},"\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":6694,"title":6695,"module":6691,"summary":6696},"\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":6698,"title":6699,"module":6691,"summary":6700},"\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":6702,"title":6703,"module":6691,"summary":6704},"\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":6706,"title":6707,"module":6691,"summary":6708},"\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":6710,"title":6711,"module":6691,"summary":6712},"\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":6714,"title":6715,"module":6716,"summary":6717},"\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":6719,"title":6720,"module":6716,"summary":6721},"\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":6723,"title":6724,"module":6716,"summary":6725},"\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":6727,"title":6728,"module":6716,"summary":6729},"\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":6731,"title":6732,"module":6716,"summary":6733},"\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":6735,"title":6736,"module":6716,"summary":6737},"\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":6739,"title":6740,"module":6741,"summary":6742},"\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":6744,"title":6745,"module":6741,"summary":6746},"\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":6748,"title":6749,"module":6741,"summary":6750},"\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":6752,"title":6753,"module":6741,"summary":6754},"\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":6756,"title":6757,"module":5596,"summary":6758},"\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":6760,"title":6761,"module":5596,"summary":6762},"\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":6764,"title":6765,"module":5596,"summary":6766},"\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":6768,"title":6769,"module":6770,"summary":6771},"\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":6773,"title":6774,"module":6770,"summary":6775},"\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":6777,"title":6778,"module":6770,"summary":6779},"\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":6781,"title":6782,"module":6783,"summary":6784},"\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":6786,"title":6787,"module":6783,"summary":6788},"\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":6790,"title":6791,"module":6783,"summary":6792},"\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":6794,"title":6795,"module":6796,"summary":6797},"\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":6799,"title":6800,"module":6796,"summary":6801},"\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":6803,"title":6804,"module":6805,"summary":6806},"\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":6808,"title":6809,"module":6805,"summary":6810},"\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":6812,"title":6813,"module":6805,"summary":6814},"\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":6816,"title":6817,"module":6805,"summary":6818},"\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":6820,"title":6821,"module":6805,"summary":6822},"\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":6824,"title":6825,"module":6,"summary":6},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":6827,"title":6828,"module":6829,"summary":6830},"\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":6832,"title":6833,"module":6829,"summary":6834},"\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":6836,"title":6837,"module":6829,"summary":6838},"\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":6840,"title":6841,"module":6829,"summary":6842},"\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":6844,"title":6845,"module":6846,"summary":6847},"\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":6849,"title":6850,"module":6846,"summary":6851},"\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":6853,"title":6854,"module":6846,"summary":6855},"\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":6857,"title":6858,"module":6846,"summary":6859},"\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":6861,"title":6862,"module":6846,"summary":6863},"\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":6865,"title":6866,"module":6846,"summary":6867},"\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":6869,"title":6870,"module":6871,"summary":6872},"\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":6874,"title":6875,"module":6871,"summary":6876},"\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":6878,"title":6879,"module":6871,"summary":6880},"\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":6882,"title":6883,"module":6871,"summary":6884},"\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":6886,"title":6887,"module":6871,"summary":6888},"\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":6890,"title":6891,"module":5290,"summary":6892},"\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":6894,"title":6895,"module":5290,"summary":6896},"\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":6898,"title":6899,"module":5290,"summary":6900},"\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":6902,"title":6903,"module":5290,"summary":6904},"\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":6906,"title":6907,"module":5290,"summary":6908},"\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":6910,"title":6911,"module":5290,"summary":6912},"\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":6914,"title":6915,"module":6916,"summary":6917},"\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":6919,"title":6920,"module":6916,"summary":6921},"\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":6923,"title":6924,"module":6916,"summary":6925},"\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":6927,"title":6928,"module":6916,"summary":6929},"\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":6931,"title":6932,"module":6933,"summary":6934},"\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":6936,"title":6937,"module":6933,"summary":6938},"\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":6940,"title":6941,"module":6933,"summary":6942},"\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":6944,"title":5345,"module":6933,"summary":6945},"\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":6947,"title":6948,"module":6933,"summary":6949},"\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":6951,"title":6952,"module":6953,"summary":6954},"\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":6956,"title":6957,"module":6953,"summary":6958},"\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":6960,"title":6961,"module":6953,"summary":6962},"\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":6964,"title":6965,"module":6953,"summary":6966},"\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":6968,"title":6969,"module":6970,"summary":6971},"\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":6973,"title":6974,"module":6970,"summary":6975},"\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":6977,"title":6978,"module":6970,"summary":6979},"\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":6981,"title":6982,"module":6970,"summary":6983},"\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":6985,"title":6986,"module":6970,"summary":6987},"\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":6989,"title":6990,"module":6,"summary":6},"\u002Freal-analysis","Real Analysis",{"path":6992,"title":6993,"module":4943,"summary":6994},"\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":6996,"title":6997,"module":4943,"summary":6998},"\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":7000,"title":7001,"module":7002,"summary":7003},"\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":7005,"title":7006,"module":7002,"summary":7007},"\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":7009,"title":7010,"module":7002,"summary":7011},"\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":7013,"title":7014,"module":7002,"summary":7015},"\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":7017,"title":7018,"module":7019,"summary":7020},"\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":7022,"title":7023,"module":7019,"summary":7024},"\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":7026,"title":7027,"module":7019,"summary":7028},"\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":7030,"title":7031,"module":7019,"summary":7032},"\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":7034,"title":7035,"module":7019,"summary":7036},"\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":7038,"title":7039,"module":7019,"summary":7040},"\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":7042,"title":7043,"module":7044,"summary":7045},"\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":7047,"title":7048,"module":7044,"summary":7049},"\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":7051,"title":7052,"module":7044,"summary":7053},"\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":7055,"title":7056,"module":7044,"summary":7057},"\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":7059,"title":7060,"module":7061,"summary":7062},"\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":7064,"title":7065,"module":7061,"summary":7066},"\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":7068,"title":7069,"module":7061,"summary":7070},"\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":7072,"title":7073,"module":7061,"summary":7074},"\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":7076,"title":7077,"module":7078,"summary":7079},"\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":7081,"title":7082,"module":7078,"summary":7083},"\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":7085,"title":7086,"module":7078,"summary":7087},"\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":7089,"title":7090,"module":7091,"summary":7092},"\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":7094,"title":7095,"module":7091,"summary":7096},"\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":7098,"title":7099,"module":7091,"summary":7100},"\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":7102,"title":7103,"module":7091,"summary":7104},"\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":7106,"title":7107,"module":7108,"summary":7109},"\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":7111,"title":7112,"module":7108,"summary":7113},"\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":7115,"title":7116,"module":7108,"summary":7117},"\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":7119,"title":7120,"module":7108,"summary":7121},"\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":7123,"title":7124,"module":7125,"summary":7126},"\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":7128,"title":7129,"module":7125,"summary":7130},"\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":7132,"title":7133,"module":7125,"summary":7134},"\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":7136,"title":7137,"module":7138,"summary":7139},"\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":7141,"title":7142,"module":7138,"summary":7143},"\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":7145,"title":7146,"module":7138,"summary":7147},"\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":7149,"title":7150,"module":7138,"summary":7151},"\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":7153,"title":7154,"module":7155,"summary":7156},"\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":7158,"title":7159,"module":7155,"summary":7160},"\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":7162,"title":7163,"module":7155,"summary":7164},"\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":7166,"title":7167,"module":7155,"summary":7168},"\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":7170,"title":7171,"module":7155,"summary":7172},"\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":7174,"title":7175,"module":7176,"summary":7177},"\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":7179,"title":7180,"module":7176,"summary":7181},"\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":7183,"title":7184,"module":6,"summary":6},"\u002Fabstract-algebra","Abstract Algebra",{"path":7186,"title":7187,"module":7188,"summary":7189},"\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":7191,"title":7192,"module":7188,"summary":7193},"\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":7195,"title":7196,"module":7188,"summary":7197},"\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":7199,"title":7200,"module":7188,"summary":7201},"\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":7203,"title":7204,"module":7188,"summary":7205},"\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":7207,"title":7208,"module":7209,"summary":7210},"\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":7212,"title":7213,"module":7209,"summary":7214},"\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":7216,"title":7217,"module":7209,"summary":7218},"\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":7220,"title":7221,"module":7209,"summary":7222},"\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":7224,"title":7225,"module":7209,"summary":7226},"\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":7228,"title":7229,"module":7209,"summary":7230},"\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":7232,"title":7233,"module":7209,"summary":7234},"\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":7236,"title":7237,"module":7238,"summary":7239},"\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":7241,"title":7242,"module":7238,"summary":7243},"\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":7245,"title":7246,"module":7238,"summary":7247},"\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":7249,"title":7250,"module":7238,"summary":7251},"\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":7253,"title":7254,"module":7255,"summary":7256},"\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":7258,"title":7259,"module":7255,"summary":7260},"\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":7262,"title":7263,"module":7255,"summary":7264},"\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":7266,"title":7267,"module":7268,"summary":7269},"\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":7271,"title":7272,"module":7268,"summary":7273},"\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":7275,"title":7276,"module":7268,"summary":7277},"\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":7279,"title":7280,"module":7268,"summary":7281},"\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":7283,"title":7284,"module":7268,"summary":7285},"\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":7287,"title":7288,"module":7268,"summary":7289},"\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":7291,"title":7292,"module":7293,"summary":7294},"\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":7296,"title":7297,"module":7293,"summary":7298},"\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":7300,"title":7301,"module":7293,"summary":7302},"\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":7304,"title":7305,"module":7306,"summary":7307},"\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":7309,"title":7310,"module":7306,"summary":7311},"\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":7313,"title":7314,"module":7306,"summary":7315},"\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":7317,"title":7318,"module":7306,"summary":7319},"\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":7321,"title":7322,"module":7323,"summary":7324},"\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":7326,"title":7327,"module":7323,"summary":7328},"\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":7330,"title":7331,"module":7323,"summary":7332},"\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":7334,"title":7335,"module":7336,"summary":7337},"\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":7339,"title":7340,"module":7336,"summary":7341},"\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":7343,"title":7344,"module":7336,"summary":7345},"\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":7347,"title":7348,"module":7336,"summary":7349},"\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":7351,"title":7352,"module":6,"summary":6},"\u002Fatomic-physics","Atomic Physics",{"path":7354,"title":7355,"module":6,"summary":6},"\u002Fdatabases","Databases",{"path":7357,"title":7358,"module":4943,"summary":7359},"\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":7361,"title":7362,"module":4943,"summary":7363},"\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":7365,"title":7366,"module":4943,"summary":7367},"\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":7369,"title":7370,"module":4943,"summary":7371},"\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":7373,"title":7374,"module":4943,"summary":7375},"\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":7377,"title":7378,"module":4943,"summary":7379},"\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":7381,"title":7382,"module":7383,"summary":7384},"\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":7386,"title":7387,"module":7383,"summary":7388},"\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":7390,"title":7391,"module":7383,"summary":7392},"\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":7394,"title":7395,"module":7396,"summary":7397},"\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":7399,"title":7400,"module":7396,"summary":7401},"\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":7403,"title":7404,"module":7396,"summary":7405},"\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":7407,"title":7408,"module":7409,"summary":7410},"\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":7412,"title":7413,"module":7409,"summary":7414},"\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":7416,"title":7417,"module":7409,"summary":7418},"\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":7420,"title":7421,"module":7409,"summary":7422},"\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":7424,"title":7425,"module":7409,"summary":7426},"\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":7428,"title":7429,"module":7430,"summary":7431},"\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":7433,"title":7434,"module":7430,"summary":7435},"\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":7437,"title":7438,"module":7430,"summary":7439},"\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":7441,"title":7442,"module":7430,"summary":7443},"\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":7445,"title":7446,"module":7447,"summary":7448},"\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":7450,"title":7451,"module":7447,"summary":7452},"\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":7454,"title":7455,"module":7447,"summary":7456},"\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":7458,"title":7459,"module":7447,"summary":7460},"\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":7462,"title":7463,"module":7464,"summary":7465},"\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":7467,"title":7468,"module":7464,"summary":7469},"\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":7471,"title":7472,"module":7464,"summary":7473},"\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":7475,"title":7476,"module":7464,"summary":7477},"\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":7479,"title":7480,"module":7481,"summary":7482},"\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":7484,"title":7485,"module":7481,"summary":7486},"\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":7488,"title":7489,"module":7481,"summary":7490},"\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":7492,"title":7493,"module":6,"summary":6},"\u002Fcategory-theory","Category Theory",{"path":7495,"title":6137,"module":7496,"summary":7497},"\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":7499,"title":7500,"module":7496,"summary":7501},"\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":7503,"title":7504,"module":7496,"summary":7505},"\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":7507,"title":5496,"module":7496,"summary":7508},"\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":7510,"title":7511,"module":4943,"summary":7512},"\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":7514,"title":7515,"module":4943,"summary":7516},"\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":7518,"title":7519,"module":4943,"summary":7520},"\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":7522,"title":7523,"module":7524,"summary":7525},"\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":7527,"title":7528,"module":7524,"summary":7529},"\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":7531,"title":7532,"module":7524,"summary":7533},"\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":7535,"title":7536,"module":7524,"summary":7537},"\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":7539,"title":7540,"module":7524,"summary":7541},"\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":7543,"title":7544,"module":7545,"summary":7546},"\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":7548,"title":7549,"module":7545,"summary":7550},"\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":7552,"title":7553,"module":7545,"summary":7554},"\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":7556,"title":7557,"module":7545,"summary":7558},"\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":7560,"title":7561,"module":7545,"summary":7562},"\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":7564,"title":7565,"module":7566,"summary":7567},"\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":7569,"title":7570,"module":7566,"summary":7571},"\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":7573,"title":7574,"module":7566,"summary":7575},"\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":7577,"title":7578,"module":7566,"summary":7579},"\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":7581,"title":7582,"module":7583,"summary":7584},"\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":7586,"title":7587,"module":7583,"summary":7588},"\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":7590,"title":7591,"module":7583,"summary":7592},"\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":7594,"title":7595,"module":7583,"summary":7596},"\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":7598,"title":7599,"module":7583,"summary":7600},"\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":7602,"title":7603,"module":7583,"summary":7604},"\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":7606,"title":7607,"module":7583,"summary":7608},"\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":7610,"title":7611,"module":7583,"summary":7612},"\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":7614,"title":7615,"module":7583,"summary":7616},"\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":7618,"title":7619,"module":7620,"summary":7621},"\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":7623,"title":7624,"module":7620,"summary":7625},"\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":7627,"title":7628,"module":7620,"summary":7629},"\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":7631,"title":7632,"module":7620,"summary":7633},"\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":7635,"title":7636,"module":7620,"summary":7637},"\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":7639,"title":7640,"module":7641,"summary":7642},"\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":7644,"title":7645,"module":7641,"summary":7646},"\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":7648,"title":7649,"module":7641,"summary":7650},"\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":7652,"title":7653,"module":7641,"summary":7654},"\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":7656,"title":7657,"module":7641,"summary":7658},"\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":7660,"title":7661,"module":7641,"summary":7662},"\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":7664,"title":7665,"module":7641,"summary":7666},"\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":7668,"title":7669,"module":7670,"summary":7671},"\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":7673,"title":7674,"module":7670,"summary":7675},"\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":7677,"title":7678,"module":7670,"summary":7679},"\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":7681,"title":7682,"module":7683,"summary":7684},"\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":7686,"title":7687,"module":7683,"summary":7688},"\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":7690,"title":7691,"module":7683,"summary":7692},"\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":7694,"title":7695,"module":7683,"summary":7696},"\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":7698,"title":7699,"module":7683,"summary":7700},"\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":7702,"title":7703,"module":7683,"summary":7704},"\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":7706,"title":7707,"module":7683,"summary":7708},"\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":7710,"title":7711,"module":7712,"summary":7713},"\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":7715,"title":7716,"module":7712,"summary":7717},"\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":7719,"title":7720,"module":7712,"summary":7721},"\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":7723,"title":7724,"module":7712,"summary":7725},"\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":7727,"title":7728,"module":7712,"summary":7729},"\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":7731,"title":7732,"module":7712,"summary":7733},"\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":7735,"title":7736,"module":7712,"summary":7737},"\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":7739,"title":7740,"module":7712,"summary":7741},"\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":7743,"title":7744,"module":7712,"summary":7745},"\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":7747,"title":7748,"module":7712,"summary":7749},"\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":7751,"title":7752,"module":7712,"summary":7753},"\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":7755,"title":7756,"module":7757,"summary":7758},"\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":7760,"title":7761,"module":7757,"summary":7762},"\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":7764,"title":7765,"module":7757,"summary":7766},"\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":7768,"title":7769,"module":7757,"summary":7770},"\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":7772,"title":7773,"module":7757,"summary":7774},"\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":7776,"title":7777,"module":6,"summary":6},"\u002Fdeep-learning","Deep Learning",{"path":7779,"title":7780,"module":5687,"summary":7781},"\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":7783,"title":7784,"module":5687,"summary":7785},"\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":7787,"title":7788,"module":5687,"summary":7789},"\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":7791,"title":7792,"module":5687,"summary":7793},"\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":7795,"title":7796,"module":5687,"summary":7797},"\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":7799,"title":7800,"module":7801,"summary":7802},"\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":7804,"title":7805,"module":7801,"summary":7806},"\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":7808,"title":7809,"module":7801,"summary":7810},"\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":7812,"title":7813,"module":7801,"summary":7814},"\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":7816,"title":7817,"module":7818,"summary":7819},"\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":7821,"title":7822,"module":7818,"summary":7823},"\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":7825,"title":7826,"module":7818,"summary":7827},"\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":7829,"title":7830,"module":7818,"summary":7831},"\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":7833,"title":7834,"module":7835,"summary":7836},"\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":7838,"title":7839,"module":7835,"summary":7840},"\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":7842,"title":7843,"module":7835,"summary":7844},"\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":7846,"title":7847,"module":7835,"summary":7848},"\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":7850,"title":7851,"module":7835,"summary":7852},"\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":7854,"title":7855,"module":7856,"summary":7857},"\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":7859,"title":7860,"module":7856,"summary":7861},"\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":7863,"title":7864,"module":7856,"summary":7865},"\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":7867,"title":7868,"module":7869,"summary":7870},"\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":7872,"title":7873,"module":7869,"summary":7874},"\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":7876,"title":7877,"module":7869,"summary":7878},"\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":7880,"title":7881,"module":7882,"summary":7883},"\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":7885,"title":7886,"module":7882,"summary":7887},"\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":7889,"title":7890,"module":7882,"summary":7891},"\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":7893,"title":7894,"module":7882,"summary":7895},"\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":7897,"title":7898,"module":7899,"summary":7900},"\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":7902,"title":7903,"module":7899,"summary":7904},"\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":7906,"title":7907,"module":7899,"summary":7908},"\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":7910,"title":7911,"module":7899,"summary":7912},"\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":7914,"title":7915,"module":7899,"summary":7916},"\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":7918,"title":7919,"module":7899,"summary":7920},"\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":7922,"title":7923,"module":7924,"summary":7925},"\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":7927,"title":7928,"module":7924,"summary":7929},"\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":7931,"title":7932,"module":7924,"summary":7933},"\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":7935,"title":7936,"module":7924,"summary":7937},"\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":7939,"title":7940,"module":7941,"summary":7942},"\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":7944,"title":7945,"module":7941,"summary":7946},"\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":7948,"title":7949,"module":7941,"summary":7950},"\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":7952,"title":7953,"module":7954,"summary":7955},"\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":7957,"title":7958,"module":7954,"summary":7959},"\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":7961,"title":7962,"module":7954,"summary":7963},"\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":7965,"title":7966,"module":7954,"summary":7967},"\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":7969,"title":7970,"module":7954,"summary":7971},"\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":7973,"title":7974,"module":7975,"summary":7976},"\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":7978,"title":7979,"module":7975,"summary":7980},"\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":7982,"title":7983,"module":7975,"summary":7984},"\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":7986,"title":7987,"module":6,"summary":6},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":7989,"title":7990,"module":7991,"summary":7992},"\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":7994,"title":7995,"module":7991,"summary":7996},"\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":7998,"title":7999,"module":7991,"summary":8000},"\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":8002,"title":8003,"module":7991,"summary":8004},"\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":8006,"title":8007,"module":8008,"summary":8009},"\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":8011,"title":8012,"module":8008,"summary":8013},"\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":8015,"title":8016,"module":8008,"summary":8017},"\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":8019,"title":8020,"module":8008,"summary":8021},"\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":8023,"title":8024,"module":8025,"summary":8026},"\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":8028,"title":8029,"module":8025,"summary":8030},"\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":8032,"title":8033,"module":8025,"summary":8034},"\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":8036,"title":8037,"module":8025,"summary":8038},"\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":8040,"title":8041,"module":8042,"summary":8043},"\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":8045,"title":8046,"module":8042,"summary":8047},"\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":8049,"title":8050,"module":8042,"summary":8051},"\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":8053,"title":8054,"module":8042,"summary":8055},"\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":8057,"title":8058,"module":8059,"summary":8060},"\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":8062,"title":8063,"module":8059,"summary":8064},"\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":8066,"title":8067,"module":8059,"summary":8068},"\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":8070,"title":8071,"module":8059,"summary":8072},"\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":8074,"title":8075,"module":8076,"summary":8077},"\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":8079,"title":8080,"module":8076,"summary":8081},"\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":8083,"title":8084,"module":8076,"summary":8085},"\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":8087,"title":8088,"module":8076,"summary":8089},"\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":8091,"title":8092,"module":8093,"summary":8094},"\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":8096,"title":8097,"module":8093,"summary":8098},"\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":8100,"title":8101,"module":8093,"summary":8102},"\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":8104,"title":8105,"module":8093,"summary":8106},"\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":8108,"title":8109,"module":8093,"summary":8110},"\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":8112,"title":8113,"module":8114,"summary":8115},"\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":8117,"title":8118,"module":8114,"summary":8119},"\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":8121,"title":8122,"module":8123,"summary":8124},"\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":8126,"title":8127,"module":8123,"summary":8128},"\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":8130,"title":8131,"module":8123,"summary":8132},"\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":8134,"title":8135,"module":8123,"summary":8136},"\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":8138,"title":8139,"module":8140,"summary":8141},"\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":8143,"title":8144,"module":8140,"summary":8145},"\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":8147,"title":8148,"module":8140,"summary":8149},"\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":8151,"title":8152,"module":8140,"summary":8153},"\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":8155,"title":8156,"module":8140,"summary":8157},"\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":8159,"title":8160,"module":8161,"summary":8162},"\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":8164,"title":8165,"module":8161,"summary":8166},"\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":8168,"title":8169,"module":8161,"summary":8170},"\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":8172,"title":8173,"module":8161,"summary":8174},"\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":8176,"title":8177,"module":6,"summary":6},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":8179,"title":8180,"module":4943,"summary":8181},"\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":8183,"title":8184,"module":8185,"summary":8186},"\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":8188,"title":8189,"module":8185,"summary":8190},"\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":8192,"title":8193,"module":8185,"summary":8194},"\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":8196,"title":8197,"module":8185,"summary":8198},"\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":8200,"title":8201,"module":8185,"summary":8202},"\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":8204,"title":8205,"module":8185,"summary":8206},"\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":8208,"title":8209,"module":8185,"summary":8210},"\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":8212,"title":8213,"module":8214,"summary":8215},"\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":8217,"title":8218,"module":8214,"summary":8219},"\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":8221,"title":8222,"module":8214,"summary":8223},"\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":8225,"title":8226,"module":8214,"summary":8227},"\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":8229,"title":8230,"module":8231,"summary":8232},"\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":8234,"title":8235,"module":8231,"summary":8236},"\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":8238,"title":8239,"module":8231,"summary":8240},"\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":8242,"title":8243,"module":8231,"summary":8244},"\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":8246,"title":8247,"module":8248,"summary":8249},"\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":8251,"title":8252,"module":8248,"summary":8253},"\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":8255,"title":8256,"module":8248,"summary":8257},"\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":8259,"title":8260,"module":8248,"summary":8261},"\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":8263,"title":8264,"module":8265,"summary":8266},"\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":8268,"title":8269,"module":8265,"summary":8270},"\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":8272,"title":8273,"module":8265,"summary":8274},"\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":8276,"title":8277,"module":8265,"summary":8278},"\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":8280,"title":8281,"module":8282,"summary":8283},"\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":8285,"title":8286,"module":8282,"summary":8287},"\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":8289,"title":8290,"module":8282,"summary":8291},"\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":8293,"title":8294,"module":8295,"summary":8296},"\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":8298,"title":8299,"module":8295,"summary":8300},"\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":8302,"title":8303,"module":8304,"summary":8305},"\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":8307,"title":8308,"module":8304,"summary":8309},"\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":8311,"title":8312,"module":8304,"summary":8313},"\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":8315,"title":8316,"module":6,"summary":6},"\u002Flogic","Logic",{"path":8318,"title":8319,"module":4943,"summary":8320},"\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":8322,"title":8323,"module":4943,"summary":8324},"\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":992,"title":8326,"module":4943,"summary":8327},"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":8329,"title":8330,"module":4943,"summary":8331},"\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":8333,"title":8334,"module":4943,"summary":8335},"\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":8337,"title":8338,"module":4943,"summary":8339},"\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":8341,"title":5162,"module":4007,"summary":8342},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","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":8344,"title":8345,"module":4007,"summary":8346},"\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":8348,"title":8349,"module":4007,"summary":8350},"\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":8352,"title":8353,"module":4007,"summary":8354},"\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":8356,"title":8357,"module":4007,"summary":8358},"\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":8360,"title":8361,"module":4007,"summary":8362},"\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":8364,"title":8365,"module":4007,"summary":8366},"\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":8368,"title":8369,"module":4007,"summary":8370},"\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":8372,"title":8373,"module":4007,"summary":8374},"\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":8376,"title":8377,"module":4007,"summary":8378},"\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":17,"title":18,"module":4007,"summary":8380},"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":4009,"title":5,"module":4007,"summary":4023},{"path":8383,"title":8384,"module":8385,"summary":8386},"\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":8388,"title":8389,"module":8385,"summary":8390},"\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":8392,"title":8393,"module":8385,"summary":8394},"\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":8396,"title":8397,"module":8385,"summary":8398},"\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":8400,"title":8401,"module":8385,"summary":8402},"\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":8404,"title":8405,"module":8385,"summary":8406},"\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":8408,"title":8409,"module":8385,"summary":8410},"\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":8412,"title":8413,"module":8385,"summary":8414},"\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":8416,"title":8417,"module":8385,"summary":8418},"\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":8420,"title":8421,"module":8385,"summary":8422},"\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":8424,"title":8425,"module":8385,"summary":8426},"\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":8428,"title":8429,"module":8385,"summary":8430},"\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":8432,"title":8433,"module":8385,"summary":8434},"\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":8436,"title":8437,"module":8385,"summary":8438},"\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":8440,"title":7765,"module":8441,"summary":8442},"\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":8444,"title":8445,"module":8441,"summary":8446},"\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":8448,"title":8449,"module":8441,"summary":8450},"\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":8452,"title":8453,"module":8441,"summary":8454},"\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":3744,"title":8456,"module":8441,"summary":8457},"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":8459,"title":8460,"module":8441,"summary":8461},"\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":8463,"title":8464,"module":8441,"summary":8465},"\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":8467,"title":8468,"module":8441,"summary":8469},"\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":8471,"title":8472,"module":8473,"summary":8474},"\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":8476,"title":8477,"module":8473,"summary":8478},"\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":8480,"title":8481,"module":8473,"summary":8482},"\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":8484,"title":8485,"module":8473,"summary":8486},"\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":8488,"title":8489,"module":8473,"summary":8490},"\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":8492,"title":8493,"module":8473,"summary":8494},"\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":8496,"title":8497,"module":8473,"summary":8498},"\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":8500,"title":8501,"module":8473,"summary":8502},"\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":8504,"title":8505,"module":8473,"summary":8506},"\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":8508,"title":8509,"module":8473,"summary":8510},"\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":8512,"title":8513,"module":8473,"summary":8514},"\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":8516,"title":8517,"module":8473,"summary":8518},"\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":8520,"title":8521,"module":8473,"summary":8522},"\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":8524,"title":8525,"module":8473,"summary":8526},"\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":8528,"title":8529,"module":8473,"summary":8530},"\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":8532,"title":8533,"module":8473,"summary":8534},"\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":8536,"title":8537,"module":8473,"summary":8538},"\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":8540,"title":8541,"module":8473,"summary":8542},"\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":8544,"title":8545,"module":8473,"summary":8546},"\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":8548,"title":8549,"module":8473,"summary":8550},"\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":8552,"title":8553,"module":8473,"summary":8554},"\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":8556,"title":8557,"module":8473,"summary":8558},"\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":8560,"title":8561,"module":8562,"summary":8563},"\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":8565,"title":8566,"module":8562,"summary":8567},"\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":8569,"title":8570,"module":8562,"summary":8571},"\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":8573,"title":8574,"module":8562,"summary":8575},"\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":8577,"title":8578,"module":8562,"summary":8579},"\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":8581,"title":8582,"module":8562,"summary":8583},"\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":8585,"title":8586,"module":8562,"summary":8587},"\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":8589,"title":8590,"module":8562,"summary":8591},"\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":8593,"title":7757,"module":6,"summary":6},"\u002Freinforcement-learning",{"path":8595,"title":8596,"module":4943,"summary":8597},"\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":8599,"title":8600,"module":4943,"summary":8601},"\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":8603,"title":8604,"module":4943,"summary":8605},"\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":8607,"title":8608,"module":4943,"summary":8609},"\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":8611,"title":8612,"module":8613,"summary":8614},"\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":8616,"title":8617,"module":8613,"summary":8618},"\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":8620,"title":8621,"module":8613,"summary":8622},"\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":8624,"title":8625,"module":8613,"summary":8626},"\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":8628,"title":8629,"module":8613,"summary":8630},"\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":8632,"title":8633,"module":8613,"summary":8634},"\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":8636,"title":8637,"module":8613,"summary":8638},"\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":8640,"title":8641,"module":8613,"summary":8642},"\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":8644,"title":8645,"module":8613,"summary":8646},"\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":8648,"title":8649,"module":8613,"summary":8650},"\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":8652,"title":8653,"module":8613,"summary":8654},"\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":8656,"title":8657,"module":8613,"summary":8658},"\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":8660,"title":8661,"module":8662,"summary":8663},"\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":8665,"title":8666,"module":8662,"summary":8667},"\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":8669,"title":8670,"module":8662,"summary":8671},"\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":8673,"title":8674,"module":8662,"summary":8675},"\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":8677,"title":8678,"module":8662,"summary":8679},"\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":8681,"title":8682,"module":8662,"summary":8683},"\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":8685,"title":8686,"module":8662,"summary":8687},"\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":8689,"title":8690,"module":8662,"summary":8691},"\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":8693,"title":8694,"module":8662,"summary":8695},"\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":8697,"title":8698,"module":8662,"summary":8699},"\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":8701,"title":8702,"module":8662,"summary":8703},"\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":8705,"title":8706,"module":8662,"summary":8707},"\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":8709,"title":8710,"module":8711,"summary":8712},"\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":8714,"title":8715,"module":8711,"summary":8716},"\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":8718,"title":8719,"module":8711,"summary":8720},"\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":8722,"title":8723,"module":8711,"summary":8724},"\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":8726,"title":8727,"module":8711,"summary":8728},"\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":8730,"title":8731,"module":8711,"summary":8732},"\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":8734,"title":8735,"module":8711,"summary":8736},"\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":8738,"title":8334,"module":8711,"summary":8739},"\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":8741,"title":8742,"module":8711,"summary":8743},"\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":8745,"title":8746,"module":8711,"summary":8747},"\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":8749,"title":8750,"module":8751,"summary":8752},"\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":8754,"title":8755,"module":8751,"summary":8756},"\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":8758,"title":8759,"module":8751,"summary":8760},"\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":8762,"title":8763,"module":8751,"summary":8764},"\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":8766,"title":7757,"module":8751,"summary":8767},"\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":8769,"title":8770,"module":8751,"summary":8771},"\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":8773,"title":8774,"module":8751,"summary":8775},"\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":8777,"title":8778,"module":8751,"summary":8779},"\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":8781,"title":8782,"module":8783,"summary":8784},"\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":8786,"title":8787,"module":8783,"summary":8788},"\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":8790,"title":8791,"module":8783,"summary":8792},"\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":8794,"title":8795,"module":8783,"summary":8796},"\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":8798,"title":8799,"module":8783,"summary":8800},"\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":8802,"title":8803,"module":8783,"summary":8804},"\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":8806,"title":8807,"module":8783,"summary":8808},"\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":8810,"title":8811,"module":8783,"summary":8812},"\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":8814,"title":8815,"module":6,"summary":6},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":8817,"title":8818,"module":8819,"summary":8820},"\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":8822,"title":8823,"module":8819,"summary":8824},"\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":8826,"title":8827,"module":8819,"summary":8828},"\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":8830,"title":8831,"module":8819,"summary":8832},"\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":8834,"title":8835,"module":8819,"summary":8836},"\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":8838,"title":8839,"module":8840,"summary":8841},"\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":8843,"title":8844,"module":8840,"summary":8845},"\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":8847,"title":8848,"module":8840,"summary":8849},"\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":8851,"title":8852,"module":8840,"summary":8853},"\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":8855,"title":8856,"module":8857,"summary":8858},"\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":8860,"title":8861,"module":8857,"summary":8862},"\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":8864,"title":8865,"module":8857,"summary":8866},"\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":8868,"title":8869,"module":8857,"summary":8870},"\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":8872,"title":8873,"module":8874,"summary":8875},"\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":8877,"title":8878,"module":8874,"summary":8879},"\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":8881,"title":8882,"module":8883,"summary":8884},"\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":8886,"title":8887,"module":8883,"summary":8888},"\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":8890,"title":8891,"module":8892,"summary":8893},"\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":8895,"title":8896,"module":8892,"summary":8897},"\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":8899,"title":8900,"module":8892,"summary":8901},"\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":8903,"title":8904,"module":8892,"summary":8905},"\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":8907,"title":8908,"module":8909,"summary":8910},"\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":8912,"title":8913,"module":8909,"summary":8914},"\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":8916,"title":8917,"module":8909,"summary":8918},"\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":8920,"title":8921,"module":8922,"summary":8923},"\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":8925,"title":8926,"module":8922,"summary":8927},"\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":8929,"title":8930,"module":8922,"summary":8931},"\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":8933,"title":8934,"module":8935,"summary":8936},"\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":8938,"title":8939,"module":8935,"summary":8940},"\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":8942,"title":8943,"module":8944,"summary":8945},"\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":8947,"title":8948,"module":8944,"summary":8949},"\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":8951,"title":8952,"module":8944,"summary":8953},"\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":8955,"title":8956,"module":8957,"summary":8958},"\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":8960,"title":8961,"module":8957,"summary":8962},"\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":8964,"title":8965,"module":8957,"summary":8966},"\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":8968,"title":8969,"module":8957,"summary":8970},"\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":8972,"title":8973,"module":8957,"summary":8974},"\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":8976,"title":8977,"module":6,"summary":6},"\u002Fnuclear-physics","Nuclear Physics",{"path":8979,"title":8980,"module":4943,"summary":8981},"\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":8983,"title":8984,"module":4943,"summary":8985},"\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":8987,"title":8988,"module":4943,"summary":8989},"\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":8991,"title":8992,"module":4943,"summary":8993},"\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":8995,"title":8996,"module":4943,"summary":8997},"\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":8999,"title":9000,"module":9001,"summary":9002},"\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":9004,"title":9005,"module":9001,"summary":9006},"\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":9008,"title":9009,"module":9001,"summary":9010},"\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":9012,"title":9013,"module":9001,"summary":9014},"\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":9016,"title":9017,"module":9018,"summary":9019},"\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":9021,"title":9022,"module":9018,"summary":9023},"\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":9025,"title":9026,"module":9018,"summary":9027},"\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":9029,"title":9030,"module":5409,"summary":9031},"\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":9033,"title":9034,"module":5409,"summary":9035},"\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":9037,"title":9038,"module":5409,"summary":9039},"\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":9041,"title":9042,"module":5891,"summary":9043},"\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":9045,"title":7603,"module":5891,"summary":9046},"\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":9048,"title":7711,"module":5891,"summary":9049},"\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":9051,"title":9052,"module":5891,"summary":9053},"\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":9055,"title":9056,"module":5891,"summary":9057},"\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":9059,"title":9060,"module":5891,"summary":9061},"\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":9063,"title":9064,"module":9065,"summary":9066},"\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":9068,"title":9069,"module":9065,"summary":9070},"\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":9072,"title":9073,"module":9065,"summary":9074},"\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":9076,"title":9077,"module":9065,"summary":9078},"\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":9080,"title":9081,"module":9065,"summary":9082},"\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":9084,"title":9085,"module":9065,"summary":9086},"\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":9088,"title":9089,"module":9065,"summary":9090},"\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":9092,"title":9093,"module":9065,"summary":9094},"\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":9096,"title":9097,"module":9065,"summary":9098},"\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":9100,"title":9101,"module":9065,"summary":9102},"\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":9104,"title":9105,"module":9065,"summary":9106},"\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":9108,"title":9109,"module":9065,"summary":9110},"\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":9112,"title":9113,"module":9065,"summary":9114},"\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":9116,"title":9117,"module":9065,"summary":9118},"\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":9120,"title":9121,"module":9065,"summary":9122},"\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":9124,"title":9125,"module":9065,"summary":9126},"\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":9128,"title":9129,"module":9065,"summary":9130},"\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":9132,"title":9133,"module":9065,"summary":9134},"\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":9136,"title":9137,"module":9065,"summary":9138},"\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":9140,"title":9141,"module":9065,"summary":9142},"\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":9144,"title":9145,"module":7699,"summary":9146},"\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":9148,"title":9149,"module":7699,"summary":9150},"\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":9152,"title":9153,"module":7699,"summary":9154},"\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":9156,"title":9157,"module":7699,"summary":9158},"\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":9160,"title":9161,"module":7699,"summary":9162},"\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":9164,"title":9165,"module":7699,"summary":9166},"\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":9168,"title":9169,"module":7699,"summary":9170},"\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":9172,"title":9173,"module":7699,"summary":9174},"\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":9176,"title":9177,"module":9178,"summary":9179},"\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":9181,"title":9182,"module":9178,"summary":9183},"\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":9185,"title":9186,"module":9178,"summary":9187},"\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":9189,"title":9190,"module":9178,"summary":9191},"\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":9193,"title":9194,"module":6,"summary":6},"\u002Fnatural-language-processing","Natural Language Processing",{"path":9196,"title":9197,"module":4943,"summary":9198},"\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":9200,"title":9201,"module":4943,"summary":9202},"\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":9204,"title":9205,"module":4943,"summary":9206},"\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":9208,"title":9209,"module":9210,"summary":9211},"\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":9213,"title":9214,"module":9210,"summary":9215},"\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":9217,"title":9218,"module":9210,"summary":9219},"\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":9221,"title":9222,"module":9210,"summary":9223},"\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":9225,"title":9226,"module":9227,"summary":9228},"\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":9230,"title":9231,"module":9227,"summary":9232},"\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":9234,"title":9235,"module":9227,"summary":9236},"\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":9238,"title":9239,"module":9227,"summary":9240},"\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":9242,"title":9243,"module":9244,"summary":9245},"\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":9247,"title":9248,"module":9244,"summary":9249},"\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":9251,"title":9252,"module":9244,"summary":9253},"\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":9255,"title":9256,"module":9244,"summary":9257},"\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":9259,"title":9260,"module":9261,"summary":9262},"\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":9264,"title":9265,"module":9261,"summary":9266},"\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":9268,"title":9269,"module":9261,"summary":9270},"\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":9272,"title":9273,"module":9274,"summary":9275},"\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":9277,"title":9278,"module":9274,"summary":9279},"\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":9281,"title":9282,"module":9274,"summary":9283},"\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":9285,"title":9286,"module":9274,"summary":9287},"\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":9289,"title":9290,"module":9291,"summary":9292},"\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":9294,"title":9295,"module":9291,"summary":9296},"\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":9298,"title":9299,"module":9291,"summary":9300},"\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":9302,"title":9303,"module":9291,"summary":9304},"\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":9306,"title":9307,"module":9308,"summary":9309},"\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":9311,"title":9312,"module":9308,"summary":9313},"\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":9315,"title":9316,"module":9308,"summary":9317},"\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":9319,"title":9320,"module":9308,"summary":9321},"\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":9323,"title":9324,"module":9325,"summary":9326},"\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":9328,"title":9329,"module":9325,"summary":9330},"\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":9332,"title":9333,"module":9325,"summary":9334},"\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":9336,"title":9337,"module":9325,"summary":9338},"\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":9340,"title":9341,"module":9325,"summary":9342},"\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":9344,"title":9345,"module":9346,"summary":9347},"\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":9349,"title":9350,"module":9346,"summary":9351},"\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":9353,"title":9354,"module":9346,"summary":9355},"\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":9357,"title":9358,"module":9359,"summary":9360},"\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":9362,"title":9363,"module":9359,"summary":9364},"\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":9366,"title":9367,"module":9359,"summary":9368},"\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":9370,"title":9371,"module":9371,"summary":9372},"\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":9374,"title":9375,"module":9371,"summary":9376},"\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":9378,"title":9379,"module":9371,"summary":9380},"\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":9382,"title":9383,"module":9371,"summary":9384},"\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":9386,"title":9387,"module":9371,"summary":9388},"\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":9390,"title":9391,"module":9371,"summary":9392},"\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":9394,"title":9395,"module":6,"summary":6},"\u002Fparticle-physics","Particle Physics",{"path":9397,"title":9398,"module":9399,"summary":9400},"\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":9402,"title":9403,"module":9399,"summary":9404},"\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":9406,"title":9407,"module":9399,"summary":9408},"\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":9410,"title":9411,"module":9412,"summary":9413},"\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":9415,"title":9416,"module":9412,"summary":9417},"\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":9419,"title":9420,"module":9412,"summary":9421},"\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":9423,"title":9424,"module":9412,"summary":9425},"\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":9427,"title":9428,"module":9429,"summary":9430},"\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":9432,"title":9433,"module":9429,"summary":9434},"\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":9436,"title":9437,"module":9429,"summary":9438},"\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":9440,"title":9441,"module":9429,"summary":9442},"\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":9444,"title":9445,"module":9446,"summary":9447},"\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":9449,"title":9450,"module":9446,"summary":9451},"\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":9453,"title":9454,"module":9446,"summary":9455},"\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":9457,"title":9458,"module":9446,"summary":9459},"\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":9461,"title":9462,"module":9463,"summary":9464},"\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":9466,"title":9467,"module":9463,"summary":9468},"\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":9470,"title":9471,"module":9463,"summary":9472},"\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":9474,"title":9475,"module":9463,"summary":9476},"\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":9478,"title":9479,"module":9480,"summary":9481},"\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":9483,"title":9484,"module":9480,"summary":9485},"\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":9487,"title":9488,"module":9480,"summary":9489},"\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":9491,"title":9492,"module":9493,"summary":9494},"\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":9496,"title":9497,"module":9493,"summary":9498},"\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":9500,"title":9501,"module":9493,"summary":9502},"\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":9504,"title":9505,"module":9493,"summary":9506},"\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":9508,"title":7932,"module":9509,"summary":9510},"\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":9512,"title":9513,"module":9509,"summary":9514},"\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":9516,"title":9517,"module":9509,"summary":9518},"\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":9520,"title":9521,"module":9509,"summary":9522},"\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":9524,"title":9525,"module":9509,"summary":9526},"\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":9528,"title":9529,"module":9530,"summary":9531},"\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":9533,"title":9534,"module":9530,"summary":9535},"\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":9537,"title":9538,"module":9530,"summary":9539},"\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":9541,"title":9542,"module":9530,"summary":9543},"\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":9545,"title":9546,"module":9547,"summary":9548},"\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":9550,"title":9551,"module":9547,"summary":9552},"\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":9554,"title":9555,"module":9547,"summary":9556},"\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":9558,"title":9559,"module":9547,"summary":9560},"\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":9562,"title":9563,"module":9547,"summary":9564},"\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":9566,"title":9567,"module":9568,"summary":9569},"\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":9571,"title":9572,"module":9568,"summary":9573},"\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":9575,"title":6650,"module":9568,"summary":9576},"\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":9578,"title":9579,"module":9568,"summary":9580},"\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":9582,"title":9583,"module":9568,"summary":9584},"\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":9586,"title":9587,"module":9588,"summary":9589},"\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":9591,"title":9592,"module":9588,"summary":9593},"\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":9595,"title":9596,"module":9588,"summary":9597},"\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":9599,"title":9600,"module":9588,"summary":9601},"\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":9603,"title":9604,"module":9588,"summary":9605},"\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":9607,"title":9608,"module":9588,"summary":9609},"\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":9611,"title":9612,"module":9588,"summary":9613},"\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":9615,"title":9616,"module":6,"summary":6},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":9618,"title":9619,"module":6,"summary":6},"\u002Fcolophon","Colophon",{"path":812,"title":9621,"module":6,"summary":6},"Study Notes",[9623,9638,9665,9697,9717,9771],{"module":4943,"moduleNumber":3460,"slug":9624,"lessons":9625},"foundations",[9626,9628,9630,9632,9634,9636],{"title":8319,"path":8318,"lessonNumber":3460,"topics":9627,"summary":8320},[4943],{"title":8323,"path":8322,"lessonNumber":3466,"topics":9629,"summary":8324},[4943],{"title":8326,"path":992,"lessonNumber":3472,"topics":9631,"summary":8327},[4943],{"title":8330,"path":8329,"lessonNumber":3478,"topics":9633,"summary":8331},[4943],{"title":8334,"path":8333,"lessonNumber":3484,"topics":9635,"summary":8335},[4943],{"title":8338,"path":8337,"lessonNumber":3490,"topics":9637,"summary":8339},[4943],{"module":4007,"moduleNumber":3466,"slug":9639,"lessons":9640},"tabular-methods",[9641,9643,9645,9647,9649,9651,9653,9655,9657,9659,9661,9663],{"title":5162,"path":8341,"lessonNumber":3460,"topics":9642,"summary":8342},[4025],{"title":8345,"path":8344,"lessonNumber":3466,"topics":9644,"summary":8346},[4025],{"title":8349,"path":8348,"lessonNumber":3472,"topics":9646,"summary":8350},[4025],{"title":8353,"path":8352,"lessonNumber":3478,"topics":9648,"summary":8354},[4025],{"title":8357,"path":8356,"lessonNumber":3484,"topics":9650,"summary":8358},[4025],{"title":8361,"path":8360,"lessonNumber":3490,"topics":9652,"summary":8362},[4025],{"title":8365,"path":8364,"lessonNumber":3496,"topics":9654,"summary":8366},[4025],{"title":8369,"path":8368,"lessonNumber":3502,"topics":9656,"summary":8370},[4025],{"title":8373,"path":8372,"lessonNumber":3508,"topics":9658,"summary":8374},[4025],{"title":8377,"path":8376,"lessonNumber":3514,"topics":9660,"summary":8378},[4025],{"title":18,"path":17,"lessonNumber":3520,"topics":9662,"summary":8380},[4025],{"title":5,"path":4009,"lessonNumber":3526,"topics":9664,"summary":4023},[4025],{"module":8385,"moduleNumber":3472,"slug":9666,"lessons":9667},"approximation",[9668,9671,9673,9675,9677,9679,9681,9683,9685,9687,9689,9691,9693,9695],{"title":8384,"path":8383,"lessonNumber":3460,"topics":9669,"summary":8386},[9670],"Approximation",{"title":8389,"path":8388,"lessonNumber":3466,"topics":9672,"summary":8390},[9670],{"title":8393,"path":8392,"lessonNumber":3472,"topics":9674,"summary":8394},[9670],{"title":8397,"path":8396,"lessonNumber":3478,"topics":9676,"summary":8398},[9670],{"title":8401,"path":8400,"lessonNumber":3484,"topics":9678,"summary":8402},[9670],{"title":8405,"path":8404,"lessonNumber":3490,"topics":9680,"summary":8406},[9670],{"title":8409,"path":8408,"lessonNumber":3496,"topics":9682,"summary":8410},[9670],{"title":8413,"path":8412,"lessonNumber":3502,"topics":9684,"summary":8414},[9670],{"title":8417,"path":8416,"lessonNumber":3508,"topics":9686,"summary":8418},[9670],{"title":8421,"path":8420,"lessonNumber":3514,"topics":9688,"summary":8422},[9670],{"title":8425,"path":8424,"lessonNumber":3520,"topics":9690,"summary":8426},[9670],{"title":8429,"path":8428,"lessonNumber":3526,"topics":9692,"summary":8430},[9670],{"title":8433,"path":8432,"lessonNumber":3532,"topics":9694,"summary":8434},[9670],{"title":8437,"path":8436,"lessonNumber":3538,"topics":9696,"summary":8438},[9670],{"module":8441,"moduleNumber":3478,"slug":9698,"lessons":9699},"deep-rl",[9700,9703,9705,9707,9709,9711,9713,9715],{"title":7765,"path":8440,"lessonNumber":3460,"topics":9701,"summary":8442},[9702],"Deep RL",{"title":8445,"path":8444,"lessonNumber":3466,"topics":9704,"summary":8446},[9702],{"title":8449,"path":8448,"lessonNumber":3472,"topics":9706,"summary":8450},[9702],{"title":8453,"path":8452,"lessonNumber":3478,"topics":9708,"summary":8454},[9702],{"title":8456,"path":3744,"lessonNumber":3484,"topics":9710,"summary":8457},[9702],{"title":8460,"path":8459,"lessonNumber":3490,"topics":9712,"summary":8461},[9702],{"title":8464,"path":8463,"lessonNumber":3496,"topics":9714,"summary":8465},[9702],{"title":8468,"path":8467,"lessonNumber":3502,"topics":9716,"summary":8469},[9702],{"module":8473,"moduleNumber":3484,"slug":9718,"lessons":9719},"modern-deep-rl",[9720,9722,9724,9726,9728,9730,9732,9734,9736,9738,9740,9742,9744,9746,9748,9750,9753,9756,9759,9762,9765,9768],{"title":8472,"path":8471,"lessonNumber":3460,"topics":9721,"summary":8474},[9702],{"title":8477,"path":8476,"lessonNumber":3466,"topics":9723,"summary":8478},[9702],{"title":8481,"path":8480,"lessonNumber":3472,"topics":9725,"summary":8482},[9702],{"title":8485,"path":8484,"lessonNumber":3478,"topics":9727,"summary":8486},[9702],{"title":8489,"path":8488,"lessonNumber":3484,"topics":9729,"summary":8490},[9702],{"title":8493,"path":8492,"lessonNumber":3490,"topics":9731,"summary":8494},[9702],{"title":8497,"path":8496,"lessonNumber":3496,"topics":9733,"summary":8498},[9702],{"title":8501,"path":8500,"lessonNumber":3502,"topics":9735,"summary":8502},[9702],{"title":8505,"path":8504,"lessonNumber":3508,"topics":9737,"summary":8506},[9702],{"title":8509,"path":8508,"lessonNumber":3514,"topics":9739,"summary":8510},[9702],{"title":8513,"path":8512,"lessonNumber":3520,"topics":9741,"summary":8514},[9702],{"title":8517,"path":8516,"lessonNumber":3526,"topics":9743,"summary":8518},[9702],{"title":8521,"path":8520,"lessonNumber":3532,"topics":9745,"summary":8522},[9702],{"title":8525,"path":8524,"lessonNumber":3538,"topics":9747,"summary":8526},[9702],{"title":8529,"path":8528,"lessonNumber":3544,"topics":9749,"summary":8530},[9702],{"title":8533,"path":8532,"lessonNumber":9751,"topics":9752,"summary":8534},16,[9702],{"title":8537,"path":8536,"lessonNumber":9754,"topics":9755,"summary":8538},17,[9702],{"title":8541,"path":8540,"lessonNumber":9757,"topics":9758,"summary":8542},18,[9702],{"title":8545,"path":8544,"lessonNumber":9760,"topics":9761,"summary":8546},19,[9702],{"title":8549,"path":8548,"lessonNumber":9763,"topics":9764,"summary":8550},20,[9702],{"title":8553,"path":8552,"lessonNumber":9766,"topics":9767,"summary":8554},21,[9702],{"title":8557,"path":8556,"lessonNumber":9769,"topics":9770,"summary":8558},22,[9702],{"module":8562,"moduleNumber":3490,"slug":9772,"lessons":9773},"minds-and-brains",[9774,9777,9779,9781,9783,9785,9787,9789],{"title":8561,"path":8560,"lessonNumber":3460,"topics":9775,"summary":8563},[9776],"Minds and Brains",{"title":8566,"path":8565,"lessonNumber":3466,"topics":9778,"summary":8567},[9776],{"title":8570,"path":8569,"lessonNumber":3472,"topics":9780,"summary":8571},[9776],{"title":8574,"path":8573,"lessonNumber":3478,"topics":9782,"summary":8575},[9776],{"title":8578,"path":8577,"lessonNumber":3484,"topics":9784,"summary":8579},[9776],{"title":8582,"path":8581,"lessonNumber":3490,"topics":9786,"summary":8583},[9776],{"title":8586,"path":8585,"lessonNumber":3496,"topics":9788,"summary":8587},[9776],{"title":8590,"path":8589,"lessonNumber":3502,"topics":9790,"summary":8591},[9776],"\u003Csvg style=\"width:100%;max-width:531.438px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 398.578 195.756\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-52.153h62.596V-72.07h-62.596Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-21.723 -122.414)\">\u003Cpath d=\"M-30.511 63.080L-33.304 63.080L-33.304 62.783Q-32.242 62.783-32.242 62.521L-32.242 58.353Q-32.671 58.568-33.351 58.568L-33.351 58.271Q-32.332 58.271-31.816 57.760L-31.671 57.760Q-31.597 57.779-31.578 57.857L-31.578 62.521Q-31.578 62.783-30.511 62.783L-30.511 63.080M-29.140 62.615Q-29.140 62.432-29.003 62.295Q-28.867 62.158-28.675 62.158Q-28.484 62.158-28.351 62.291Q-28.218 62.424-28.218 62.615Q-28.218 62.814-28.351 62.947Q-28.484 63.080-28.675 63.080Q-28.867 63.080-29.003 62.943Q-29.140 62.807-29.140 62.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.723 -122.414)\">\u003Cpath d=\"M-23.243 63.158L-23.243 61.353Q-23.243 61.326-23.212 61.295Q-23.181 61.264-23.157 61.264L-23.052 61.264Q-23.021 61.264-22.991 61.293Q-22.962 61.322-22.962 61.353Q-22.962 62.135-22.446 62.543Q-21.931 62.951-21.122 62.951Q-20.825 62.951-20.570 62.801Q-20.314 62.650-20.163 62.394Q-20.013 62.139-20.013 61.842Q-20.013 61.443-20.259 61.139Q-20.505 60.834-20.876 60.752L-21.997 60.494Q-22.337 60.420-22.624 60.199Q-22.911 59.978-23.077 59.660Q-23.243 59.342-23.243 58.990Q-23.243 58.560-23.013 58.205Q-22.782 57.850-22.402 57.648Q-22.021 57.447-21.595 57.447Q-21.345 57.447-21.099 57.506Q-20.853 57.564-20.634 57.687Q-20.415 57.810-20.251 57.990L-19.923 57.494Q-19.892 57.447-19.853 57.447L-19.806 57.447Q-19.779 57.447-19.747 57.478Q-19.716 57.510-19.716 57.537L-19.716 59.346Q-19.716 59.369-19.747 59.400Q-19.779 59.432-19.806 59.432L-19.907 59.432Q-19.939 59.432-19.968 59.402Q-19.997 59.373-19.997 59.346Q-19.997 59.213-20.040 59.027Q-20.083 58.842-20.148 58.687Q-20.212 58.533-20.312 58.375Q-20.411 58.217-20.501 58.127Q-20.931 57.721-21.595 57.721Q-21.872 57.721-22.132 57.853Q-22.392 57.986-22.550 58.221Q-22.708 58.455-22.708 58.736Q-22.708 59.092-22.468 59.363Q-22.228 59.635-21.861 59.721L-20.747 59.975Q-20.470 60.041-20.237 60.195Q-20.005 60.350-19.835 60.568Q-19.665 60.787-19.571 61.045Q-19.478 61.303-19.478 61.592Q-19.478 61.920-19.603 62.223Q-19.728 62.525-19.962 62.762Q-20.196 62.998-20.489 63.123Q-20.782 63.248-21.122 63.248Q-22.138 63.248-22.708 62.705L-23.036 63.201Q-23.068 63.248-23.107 63.248L-23.157 63.248Q-23.181 63.248-23.212 63.217Q-23.243 63.185-23.243 63.158M-18.759 61.326Q-18.759 60.846-18.527 60.430Q-18.294 60.014-17.884 59.764Q-17.474 59.514-16.997 59.514Q-16.267 59.514-15.868 59.955Q-15.470 60.396-15.470 61.127Q-15.470 61.232-15.564 61.256L-18.013 61.256L-18.013 61.326Q-18.013 61.736-17.892 62.092Q-17.771 62.447-17.499 62.664Q-17.228 62.881-16.798 62.881Q-16.435 62.881-16.138 62.652Q-15.841 62.424-15.739 62.072Q-15.732 62.025-15.646 62.010L-15.564 62.010Q-15.470 62.037-15.470 62.119Q-15.470 62.127-15.478 62.158Q-15.540 62.385-15.679 62.568Q-15.818 62.752-16.009 62.885Q-16.200 63.017-16.419 63.088Q-16.638 63.158-16.876 63.158Q-17.247 63.158-17.585 63.021Q-17.923 62.885-18.191 62.633Q-18.458 62.381-18.609 62.041Q-18.759 61.701-18.759 61.326M-18.005 61.017L-16.044 61.017Q-16.044 60.713-16.146 60.422Q-16.247 60.131-16.464 59.949Q-16.681 59.767-16.997 59.767Q-17.298 59.767-17.529 59.955Q-17.759 60.142-17.882 60.434Q-18.005 60.725-18.005 61.017M-13.068 63.080L-14.900 63.080L-14.900 62.783Q-14.626 62.783-14.458 62.736Q-14.290 62.689-14.290 62.521L-14.290 58.361Q-14.290 58.146-14.353 58.051Q-14.415 57.955-14.534 57.934Q-14.654 57.912-14.900 57.912L-14.900 57.615L-13.677 57.529L-13.677 62.521Q-13.677 62.689-13.509 62.736Q-13.341 62.783-13.068 62.783L-13.068 63.080M-12.622 61.326Q-12.622 60.846-12.390 60.430Q-12.157 60.014-11.747 59.764Q-11.337 59.514-10.861 59.514Q-10.130 59.514-9.732 59.955Q-9.333 60.396-9.333 61.127Q-9.333 61.232-9.427 61.256L-11.876 61.256L-11.876 61.326Q-11.876 61.736-11.755 62.092Q-11.634 62.447-11.362 62.664Q-11.091 62.881-10.661 62.881Q-10.298 62.881-10.001 62.652Q-9.704 62.424-9.603 62.072Q-9.595 62.025-9.509 62.010L-9.427 62.010Q-9.333 62.037-9.333 62.119Q-9.333 62.127-9.341 62.158Q-9.404 62.385-9.542 62.568Q-9.681 62.752-9.872 62.885Q-10.064 63.017-10.282 63.088Q-10.501 63.158-10.739 63.158Q-11.111 63.158-11.448 63.021Q-11.786 62.885-12.054 62.633Q-12.321 62.381-12.472 62.041Q-12.622 61.701-12.622 61.326M-11.868 61.017L-9.907 61.017Q-9.907 60.713-10.009 60.422Q-10.111 60.131-10.327 59.949Q-10.544 59.767-10.861 59.767Q-11.161 59.767-11.392 59.955Q-11.622 60.142-11.745 60.434Q-11.868 60.725-11.868 61.017M-8.802 61.353Q-8.802 60.857-8.552 60.432Q-8.302 60.006-7.882 59.760Q-7.462 59.514-6.962 59.514Q-6.423 59.514-6.032 59.639Q-5.642 59.764-5.642 60.178Q-5.642 60.283-5.693 60.375Q-5.743 60.467-5.835 60.517Q-5.927 60.568-6.036 60.568Q-6.142 60.568-6.234 60.517Q-6.325 60.467-6.376 60.375Q-6.427 60.283-6.427 60.178Q-6.427 59.955-6.259 59.850Q-6.482 59.791-6.954 59.791Q-7.251 59.791-7.466 59.930Q-7.681 60.068-7.812 60.299Q-7.943 60.529-8.001 60.799Q-8.060 61.068-8.060 61.353Q-8.060 61.748-7.927 62.098Q-7.794 62.447-7.523 62.664Q-7.251 62.881-6.853 62.881Q-6.478 62.881-6.202 62.664Q-5.927 62.447-5.825 62.088Q-5.810 62.025-5.747 62.025L-5.642 62.025Q-5.607 62.025-5.581 62.053Q-5.556 62.080-5.556 62.119L-5.556 62.142Q-5.689 62.623-6.073 62.891Q-6.458 63.158-6.962 63.158Q-7.325 63.158-7.659 63.021Q-7.993 62.885-8.253 62.635Q-8.513 62.385-8.657 62.049Q-8.802 61.713-8.802 61.353M-4.443 62.119L-4.443 59.928L-5.146 59.928L-5.146 59.674Q-4.790 59.674-4.548 59.441Q-4.306 59.209-4.195 58.861Q-4.083 58.514-4.083 58.158L-3.802 58.158L-3.802 59.631L-2.626 59.631L-2.626 59.928L-3.802 59.928L-3.802 62.103Q-3.802 62.424-3.683 62.652Q-3.564 62.881-3.282 62.881Q-3.103 62.881-2.986 62.758Q-2.868 62.635-2.816 62.455Q-2.763 62.275-2.763 62.103L-2.763 61.631L-2.482 61.631L-2.482 62.119Q-2.482 62.373-2.587 62.613Q-2.693 62.853-2.890 63.006Q-3.087 63.158-3.345 63.158Q-3.661 63.158-3.913 63.035Q-4.165 62.912-4.304 62.678Q-4.443 62.443-4.443 62.119M0.096 63.080L-1.681 63.080L-1.681 62.783Q-1.407 62.783-1.239 62.736Q-1.071 62.689-1.071 62.521L-1.071 60.385Q-1.071 60.170-1.128 60.074Q-1.185 59.978-1.298 59.957Q-1.411 59.935-1.657 59.935L-1.657 59.639L-0.458 59.553L-0.458 62.521Q-0.458 62.689-0.312 62.736Q-0.165 62.783 0.096 62.783L0.096 63.080M-1.345 58.158Q-1.345 57.967-1.210 57.836Q-1.075 57.705-0.880 57.705Q-0.759 57.705-0.655 57.767Q-0.552 57.830-0.489 57.934Q-0.427 58.037-0.427 58.158Q-0.427 58.353-0.558 58.488Q-0.689 58.623-0.880 58.623Q-1.079 58.623-1.212 58.490Q-1.345 58.357-1.345 58.158M0.596 61.385Q0.596 60.881 0.852 60.449Q1.108 60.017 1.544 59.766Q1.979 59.514 2.479 59.514Q2.866 59.514 3.208 59.658Q3.550 59.803 3.811 60.064Q4.073 60.326 4.216 60.662Q4.358 60.998 4.358 61.385Q4.358 61.877 4.095 62.287Q3.831 62.697 3.401 62.928Q2.971 63.158 2.479 63.158Q1.987 63.158 1.554 62.926Q1.120 62.693 0.858 62.285Q0.596 61.877 0.596 61.385M2.479 62.881Q2.936 62.881 3.188 62.658Q3.440 62.435 3.528 62.084Q3.616 61.732 3.616 61.287Q3.616 60.857 3.522 60.519Q3.429 60.182 3.175 59.975Q2.921 59.767 2.479 59.767Q1.831 59.767 1.587 60.184Q1.343 60.600 1.343 61.287Q1.343 61.732 1.430 62.084Q1.518 62.435 1.770 62.658Q2.022 62.881 2.479 62.881M6.772 63.080L4.917 63.080L4.917 62.783Q5.190 62.783 5.358 62.736Q5.526 62.689 5.526 62.521L5.526 60.385Q5.526 60.170 5.464 60.074Q5.401 59.978 5.282 59.957Q5.163 59.935 4.917 59.935L4.917 59.639L6.108 59.553L6.108 60.287Q6.221 60.072 6.415 59.904Q6.608 59.736 6.846 59.644Q7.085 59.553 7.339 59.553Q8.507 59.553 8.507 60.631L8.507 62.521Q8.507 62.689 8.677 62.736Q8.846 62.783 9.116 62.783L9.116 63.080L7.261 63.080L7.261 62.783Q7.534 62.783 7.702 62.736Q7.870 62.689 7.870 62.521L7.870 60.646Q7.870 60.264 7.749 60.035Q7.628 59.807 7.276 59.807Q6.964 59.807 6.710 59.969Q6.456 60.131 6.309 60.400Q6.163 60.670 6.163 60.967L6.163 62.521Q6.163 62.689 6.333 62.736Q6.503 62.783 6.772 62.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M34.181-52.153h62.596V-72.07H34.181Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(75.066 -123.236)\">\u003Cpath d=\"M-30.519 63.080L-33.679 63.080L-33.679 62.873Q-33.679 62.846-33.656 62.814L-32.304 61.416Q-31.925 61.029-31.677 60.740Q-31.429 60.451-31.255 60.094Q-31.082 59.736-31.082 59.346Q-31.082 58.998-31.214 58.705Q-31.347 58.412-31.601 58.234Q-31.855 58.057-32.210 58.057Q-32.570 58.057-32.861 58.252Q-33.152 58.447-33.296 58.775L-33.242 58.775Q-33.058 58.775-32.933 58.896Q-32.808 59.017-32.808 59.209Q-32.808 59.389-32.933 59.517Q-33.058 59.646-33.242 59.646Q-33.421 59.646-33.550 59.517Q-33.679 59.389-33.679 59.209Q-33.679 58.807-33.459 58.471Q-33.238 58.135-32.873 57.947Q-32.507 57.760-32.105 57.760Q-31.625 57.760-31.209 57.947Q-30.792 58.135-30.541 58.496Q-30.289 58.857-30.289 59.346Q-30.289 59.705-30.443 60.008Q-30.597 60.310-30.849 60.570Q-31.101 60.830-31.451 61.115Q-31.800 61.400-31.968 61.553L-32.898 62.392L-32.183 62.392Q-30.808 62.392-30.769 62.353Q-30.699 62.275-30.656 62.090Q-30.613 61.904-30.570 61.615L-30.289 61.615L-30.519 63.080M-29.140 62.615Q-29.140 62.432-29.003 62.295Q-28.867 62.158-28.675 62.158Q-28.484 62.158-28.351 62.291Q-28.218 62.424-28.218 62.615Q-28.218 62.814-28.351 62.947Q-28.484 63.080-28.675 63.080Q-28.867 63.080-29.003 62.943Q-29.140 62.807-29.140 62.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(75.066 -123.236)\">\u003Cpath d=\"M-18.532 63.080L-23.380 63.080L-23.380 62.783Q-23.060 62.783-22.816 62.736Q-22.571 62.689-22.571 62.521L-22.571 58.178Q-22.571 58.006-22.816 57.959Q-23.060 57.912-23.380 57.912L-23.380 57.615L-18.646 57.615L-18.411 59.463L-18.693 59.463Q-18.775 58.767-18.950 58.447Q-19.126 58.127-19.474 58.019Q-19.821 57.912-20.540 57.912L-21.404 57.912Q-21.622 57.912-21.714 57.955Q-21.806 57.998-21.806 58.178L-21.806 60.096L-21.173 60.096Q-20.747 60.096-20.540 60.033Q-20.333 59.971-20.245 59.775Q-20.157 59.580-20.157 59.158L-19.876 59.158L-19.876 61.326L-20.157 61.326Q-20.157 60.904-20.245 60.711Q-20.333 60.517-20.540 60.455Q-20.747 60.392-21.173 60.392L-21.806 60.392L-21.806 62.521Q-21.806 62.693-21.714 62.738Q-21.622 62.783-21.404 62.783L-20.478 62.783Q-19.896 62.783-19.542 62.701Q-19.189 62.619-18.984 62.422Q-18.779 62.225-18.665 61.887Q-18.552 61.549-18.458 60.967L-18.181 60.967L-18.532 63.080M-16.314 63.080L-17.810 63.080L-17.810 62.783Q-17.177 62.783-16.755 62.303L-15.986 61.392L-16.978 60.193Q-17.134 60.014-17.296 59.971Q-17.458 59.928-17.763 59.928L-17.763 59.631L-16.075 59.631L-16.075 59.928Q-16.169 59.928-16.245 59.971Q-16.321 60.014-16.321 60.103Q-16.321 60.146-16.290 60.193L-15.634 60.982L-15.154 60.408Q-15.036 60.271-15.036 60.135Q-15.036 60.045-15.087 59.986Q-15.138 59.928-15.220 59.928L-15.220 59.631L-13.732 59.631L-13.732 59.928Q-14.368 59.928-14.779 60.408L-15.458 61.209L-14.372 62.521Q-14.212 62.697-14.052 62.740Q-13.892 62.783-13.587 62.783L-13.587 63.080L-15.275 63.080L-15.275 62.783Q-15.185 62.783-15.107 62.740Q-15.029 62.697-15.029 62.607Q-15.029 62.584-15.060 62.521L-15.802 61.615L-16.388 62.303Q-16.505 62.439-16.505 62.576Q-16.505 62.662-16.454 62.723Q-16.404 62.783-16.314 62.783L-16.314 63.080M-11.337 64.631L-13.193 64.631L-13.193 64.338Q-12.923 64.338-12.755 64.293Q-12.587 64.248-12.587 64.072L-12.587 60.248Q-12.587 60.041-12.743 59.988Q-12.900 59.935-13.193 59.935L-13.193 59.639L-11.970 59.553L-11.970 60.017Q-11.739 59.795-11.425 59.674Q-11.111 59.553-10.771 59.553Q-10.298 59.553-9.894 59.799Q-9.489 60.045-9.257 60.461Q-9.025 60.877-9.025 61.353Q-9.025 61.728-9.173 62.057Q-9.321 62.385-9.591 62.637Q-9.861 62.889-10.204 63.023Q-10.548 63.158-10.907 63.158Q-11.196 63.158-11.468 63.037Q-11.739 62.916-11.946 62.705L-11.946 64.072Q-11.946 64.248-11.779 64.293Q-11.611 64.338-11.337 64.338L-11.337 64.631M-11.946 60.416L-11.946 62.256Q-11.794 62.545-11.532 62.725Q-11.271 62.904-10.962 62.904Q-10.677 62.904-10.454 62.766Q-10.232 62.627-10.079 62.396Q-9.927 62.166-9.849 61.894Q-9.771 61.623-9.771 61.353Q-9.771 61.021-9.896 60.664Q-10.021 60.307-10.269 60.070Q-10.517 59.834-10.864 59.834Q-11.189 59.834-11.484 59.990Q-11.779 60.146-11.946 60.416M-8.404 62.248Q-8.404 61.764-8.001 61.469Q-7.599 61.174-7.048 61.055Q-6.497 60.935-6.005 60.935L-6.005 60.646Q-6.005 60.420-6.120 60.213Q-6.236 60.006-6.433 59.887Q-6.630 59.767-6.861 59.767Q-7.286 59.767-7.571 59.873Q-7.501 59.900-7.454 59.955Q-7.407 60.010-7.382 60.080Q-7.357 60.150-7.357 60.225Q-7.357 60.330-7.407 60.422Q-7.458 60.514-7.550 60.564Q-7.642 60.615-7.747 60.615Q-7.853 60.615-7.945 60.564Q-8.036 60.514-8.087 60.422Q-8.138 60.330-8.138 60.225Q-8.138 59.807-7.749 59.660Q-7.361 59.514-6.861 59.514Q-6.529 59.514-6.175 59.644Q-5.821 59.775-5.593 60.029Q-5.364 60.283-5.364 60.631L-5.364 62.432Q-5.364 62.564-5.292 62.674Q-5.220 62.783-5.091 62.783Q-4.966 62.783-4.898 62.678Q-4.829 62.572-4.829 62.432L-4.829 61.920L-4.548 61.920L-4.548 62.432Q-4.548 62.635-4.665 62.793Q-4.782 62.951-4.964 63.035Q-5.146 63.119-5.349 63.119Q-5.579 63.119-5.732 62.947Q-5.884 62.775-5.915 62.545Q-6.075 62.826-6.384 62.992Q-6.693 63.158-7.044 63.158Q-7.556 63.158-7.980 62.935Q-8.404 62.713-8.404 62.248M-7.716 62.248Q-7.716 62.533-7.489 62.719Q-7.263 62.904-6.970 62.904Q-6.724 62.904-6.499 62.787Q-6.275 62.670-6.140 62.467Q-6.005 62.264-6.005 62.010L-6.005 61.178Q-6.271 61.178-6.556 61.232Q-6.841 61.287-7.112 61.416Q-7.384 61.545-7.550 61.752Q-7.716 61.959-7.716 62.248M-2.325 63.080L-4.181 63.080L-4.181 62.783Q-3.907 62.783-3.739 62.736Q-3.571 62.689-3.571 62.521L-3.571 60.385Q-3.571 60.170-3.634 60.074Q-3.696 59.978-3.816 59.957Q-3.935 59.935-4.181 59.935L-4.181 59.639L-2.989 59.553L-2.989 60.287Q-2.876 60.072-2.683 59.904Q-2.489 59.736-2.251 59.644Q-2.013 59.553-1.759 59.553Q-0.591 59.553-0.591 60.631L-0.591 62.521Q-0.591 62.689-0.421 62.736Q-0.251 62.783 0.018 62.783L0.018 63.080L-1.837 63.080L-1.837 62.783Q-1.564 62.783-1.396 62.736Q-1.228 62.689-1.228 62.521L-1.228 60.646Q-1.228 60.264-1.349 60.035Q-1.470 59.807-1.821 59.807Q-2.134 59.807-2.388 59.969Q-2.642 60.131-2.788 60.400Q-2.935 60.670-2.935 60.967L-2.935 62.521Q-2.935 62.689-2.765 62.736Q-2.595 62.783-2.325 62.783L-2.325 63.080M0.507 63.072L0.507 61.850Q0.507 61.822 0.538 61.791Q0.569 61.760 0.593 61.760L0.698 61.760Q0.768 61.760 0.784 61.822Q0.846 62.142 0.985 62.383Q1.124 62.623 1.356 62.764Q1.589 62.904 1.897 62.904Q2.136 62.904 2.345 62.844Q2.554 62.783 2.690 62.635Q2.827 62.486 2.827 62.240Q2.827 61.986 2.616 61.820Q2.405 61.654 2.136 61.600L1.514 61.486Q1.108 61.408 0.807 61.152Q0.507 60.896 0.507 60.521Q0.507 60.154 0.708 59.932Q0.909 59.709 1.233 59.611Q1.557 59.514 1.897 59.514Q2.362 59.514 2.659 59.721L2.882 59.537Q2.905 59.514 2.936 59.514L2.987 59.514Q3.018 59.514 3.046 59.541Q3.073 59.568 3.073 59.600L3.073 60.584Q3.073 60.615 3.048 60.644Q3.022 60.674 2.987 60.674L2.882 60.674Q2.846 60.674 2.819 60.646Q2.792 60.619 2.792 60.584Q2.792 60.185 2.540 59.965Q2.288 59.744 1.889 59.744Q1.534 59.744 1.251 59.867Q0.968 59.990 0.968 60.295Q0.968 60.514 1.169 60.646Q1.370 60.779 1.616 60.822L2.241 60.935Q2.671 61.025 2.979 61.322Q3.288 61.619 3.288 62.033Q3.288 62.603 2.889 62.881Q2.491 63.158 1.897 63.158Q1.346 63.158 0.995 62.822L0.698 63.135Q0.675 63.158 0.639 63.158L0.593 63.158Q0.569 63.158 0.538 63.127Q0.507 63.096 0.507 63.072M5.675 63.080L3.897 63.080L3.897 62.783Q4.171 62.783 4.339 62.736Q4.507 62.689 4.507 62.521L4.507 60.385Q4.507 60.170 4.450 60.074Q4.393 59.978 4.280 59.957Q4.167 59.935 3.921 59.935L3.921 59.639L5.120 59.553L5.120 62.521Q5.120 62.689 5.266 62.736Q5.413 62.783 5.675 62.783L5.675 63.080M4.233 58.158Q4.233 57.967 4.368 57.836Q4.503 57.705 4.698 57.705Q4.819 57.705 4.923 57.767Q5.026 57.830 5.089 57.934Q5.151 58.037 5.151 58.158Q5.151 58.353 5.020 58.488Q4.889 58.623 4.698 58.623Q4.499 58.623 4.366 58.490Q4.233 58.357 4.233 58.158M6.175 61.385Q6.175 60.881 6.430 60.449Q6.686 60.017 7.122 59.766Q7.557 59.514 8.057 59.514Q8.444 59.514 8.786 59.658Q9.128 59.803 9.389 60.064Q9.651 60.326 9.794 60.662Q9.936 60.998 9.936 61.385Q9.936 61.877 9.673 62.287Q9.409 62.697 8.979 62.928Q8.550 63.158 8.057 63.158Q7.565 63.158 7.132 62.926Q6.698 62.693 6.436 62.285Q6.175 61.877 6.175 61.385M8.057 62.881Q8.514 62.881 8.766 62.658Q9.018 62.435 9.106 62.084Q9.194 61.732 9.194 61.287Q9.194 60.857 9.100 60.519Q9.007 60.182 8.753 59.975Q8.499 59.767 8.057 59.767Q7.409 59.767 7.165 60.184Q6.921 60.600 6.921 61.287Q6.921 61.732 7.009 62.084Q7.096 62.435 7.348 62.658Q7.600 62.881 8.057 62.881M12.350 63.080L10.495 63.080L10.495 62.783Q10.768 62.783 10.936 62.736Q11.104 62.689 11.104 62.521L11.104 60.385Q11.104 60.170 11.042 60.074Q10.979 59.978 10.860 59.957Q10.741 59.935 10.495 59.935L10.495 59.639L11.686 59.553L11.686 60.287Q11.800 60.072 11.993 59.904Q12.186 59.736 12.425 59.644Q12.663 59.553 12.917 59.553Q14.085 59.553 14.085 60.631L14.085 62.521Q14.085 62.689 14.255 62.736Q14.425 62.783 14.694 62.783L14.694 63.080L12.839 63.080L12.839 62.783Q13.112 62.783 13.280 62.736Q13.448 62.689 13.448 62.521L13.448 60.646Q13.448 60.264 13.327 60.035Q13.206 59.807 12.854 59.807Q12.542 59.807 12.288 59.969Q12.034 60.131 11.888 60.400Q11.741 60.670 11.741 60.967L11.741 62.521Q11.741 62.689 11.911 62.736Q12.081 62.783 12.350 62.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M133.766-52.153h62.596V-72.07h-62.596Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(174.023 -122.414)\">\u003Cpath d=\"M-33.312 62.447Q-33.121 62.721-32.765 62.848Q-32.410 62.975-32.027 62.975Q-31.691 62.975-31.482 62.789Q-31.273 62.603-31.177 62.310Q-31.082 62.017-31.082 61.705Q-31.082 61.381-31.179 61.086Q-31.277 60.791-31.490 60.607Q-31.703 60.424-32.035 60.424L-32.601 60.424Q-32.632 60.424-32.662 60.394Q-32.691 60.365-32.691 60.338L-32.691 60.256Q-32.691 60.221-32.662 60.195Q-32.632 60.170-32.601 60.170L-32.121 60.135Q-31.835 60.135-31.638 59.930Q-31.441 59.725-31.345 59.430Q-31.250 59.135-31.250 58.857Q-31.250 58.478-31.449 58.240Q-31.648 58.002-32.027 58.002Q-32.347 58.002-32.636 58.109Q-32.925 58.217-33.089 58.439Q-32.910 58.439-32.787 58.566Q-32.664 58.693-32.664 58.865Q-32.664 59.037-32.789 59.162Q-32.914 59.287-33.089 59.287Q-33.261 59.287-33.386 59.162Q-33.511 59.037-33.511 58.865Q-33.511 58.498-33.287 58.250Q-33.062 58.002-32.722 57.881Q-32.382 57.760-32.027 57.760Q-31.679 57.760-31.316 57.881Q-30.953 58.002-30.705 58.252Q-30.457 58.502-30.457 58.857Q-30.457 59.342-30.775 59.725Q-31.093 60.107-31.570 60.279Q-31.019 60.389-30.619 60.775Q-30.218 61.162-30.218 61.697Q-30.218 62.154-30.482 62.510Q-30.746 62.865-31.167 63.057Q-31.589 63.248-32.027 63.248Q-32.437 63.248-32.830 63.113Q-33.222 62.978-33.488 62.693Q-33.753 62.408-33.753 61.990Q-33.753 61.795-33.621 61.666Q-33.488 61.537-33.296 61.537Q-33.171 61.537-33.068 61.596Q-32.964 61.654-32.902 61.760Q-32.839 61.865-32.839 61.990Q-32.839 62.185-32.974 62.316Q-33.109 62.447-33.312 62.447M-29.140 62.615Q-29.140 62.432-29.003 62.295Q-28.867 62.158-28.675 62.158Q-28.484 62.158-28.351 62.291Q-28.218 62.424-28.218 62.615Q-28.218 62.814-28.351 62.947Q-28.484 63.080-28.675 63.080Q-28.867 63.080-29.003 62.943Q-29.140 62.807-29.140 62.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.023 -122.414)\">\u003Cpath d=\"M-23.243 63.158L-23.243 61.353Q-23.243 61.326-23.212 61.295Q-23.181 61.264-23.157 61.264L-23.052 61.264Q-23.021 61.264-22.991 61.293Q-22.962 61.322-22.962 61.353Q-22.962 62.135-22.446 62.543Q-21.931 62.951-21.122 62.951Q-20.825 62.951-20.570 62.801Q-20.314 62.650-20.163 62.394Q-20.013 62.139-20.013 61.842Q-20.013 61.443-20.259 61.139Q-20.505 60.834-20.876 60.752L-21.997 60.494Q-22.337 60.420-22.624 60.199Q-22.911 59.978-23.077 59.660Q-23.243 59.342-23.243 58.990Q-23.243 58.560-23.013 58.205Q-22.782 57.850-22.402 57.648Q-22.021 57.447-21.595 57.447Q-21.345 57.447-21.099 57.506Q-20.853 57.564-20.634 57.687Q-20.415 57.810-20.251 57.990L-19.923 57.494Q-19.892 57.447-19.853 57.447L-19.806 57.447Q-19.779 57.447-19.747 57.478Q-19.716 57.510-19.716 57.537L-19.716 59.346Q-19.716 59.369-19.747 59.400Q-19.779 59.432-19.806 59.432L-19.907 59.432Q-19.939 59.432-19.968 59.402Q-19.997 59.373-19.997 59.346Q-19.997 59.213-20.040 59.027Q-20.083 58.842-20.148 58.687Q-20.212 58.533-20.312 58.375Q-20.411 58.217-20.501 58.127Q-20.931 57.721-21.595 57.721Q-21.872 57.721-22.132 57.853Q-22.392 57.986-22.550 58.221Q-22.708 58.455-22.708 58.736Q-22.708 59.092-22.468 59.363Q-22.228 59.635-21.861 59.721L-20.747 59.975Q-20.470 60.041-20.237 60.195Q-20.005 60.350-19.835 60.568Q-19.665 60.787-19.571 61.045Q-19.478 61.303-19.478 61.592Q-19.478 61.920-19.603 62.223Q-19.728 62.525-19.962 62.762Q-20.196 62.998-20.489 63.123Q-20.782 63.248-21.122 63.248Q-22.138 63.248-22.708 62.705L-23.036 63.201Q-23.068 63.248-23.107 63.248L-23.157 63.248Q-23.181 63.248-23.212 63.217Q-23.243 63.185-23.243 63.158M-16.900 63.080L-18.677 63.080L-18.677 62.783Q-18.404 62.783-18.236 62.736Q-18.068 62.689-18.068 62.521L-18.068 60.385Q-18.068 60.170-18.124 60.074Q-18.181 59.978-18.294 59.957Q-18.407 59.935-18.654 59.935L-18.654 59.639L-17.454 59.553L-17.454 62.521Q-17.454 62.689-17.308 62.736Q-17.161 62.783-16.900 62.783L-16.900 63.080M-18.341 58.158Q-18.341 57.967-18.206 57.836Q-18.071 57.705-17.876 57.705Q-17.755 57.705-17.652 57.767Q-17.548 57.830-17.486 57.934Q-17.423 58.037-17.423 58.158Q-17.423 58.353-17.554 58.488Q-17.685 58.623-17.876 58.623Q-18.075 58.623-18.208 58.490Q-18.341 58.357-18.341 58.158M-14.470 63.080L-16.325 63.080L-16.325 62.783Q-16.052 62.783-15.884 62.736Q-15.716 62.689-15.716 62.521L-15.716 60.385Q-15.716 60.170-15.779 60.074Q-15.841 59.978-15.960 59.957Q-16.079 59.935-16.325 59.935L-16.325 59.639L-15.134 59.553L-15.134 60.287Q-15.021 60.072-14.827 59.904Q-14.634 59.736-14.396 59.644Q-14.157 59.553-13.904 59.553Q-12.943 59.553-12.767 60.264Q-12.583 59.935-12.255 59.744Q-11.927 59.553-11.548 59.553Q-10.372 59.553-10.372 60.631L-10.372 62.521Q-10.372 62.689-10.204 62.736Q-10.036 62.783-9.767 62.783L-9.767 63.080L-11.622 63.080L-11.622 62.783Q-11.349 62.783-11.181 62.738Q-11.013 62.693-11.013 62.521L-11.013 60.646Q-11.013 60.260-11.138 60.033Q-11.263 59.807-11.614 59.807Q-11.919 59.807-12.175 59.969Q-12.431 60.131-12.579 60.400Q-12.728 60.670-12.728 60.967L-12.728 62.521Q-12.728 62.689-12.558 62.736Q-12.388 62.783-12.118 62.783L-12.118 63.080L-13.974 63.080L-13.974 62.783Q-13.700 62.783-13.532 62.736Q-13.364 62.689-13.364 62.521L-13.364 60.646Q-13.364 60.260-13.489 60.033Q-13.614 59.807-13.966 59.807Q-14.271 59.807-14.527 59.969Q-14.782 60.131-14.931 60.400Q-15.079 60.670-15.079 60.967L-15.079 62.521Q-15.079 62.689-14.909 62.736Q-14.739 62.783-14.470 62.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.023 -122.414)\">\u003Cpath d=\"M-8.864 62.127L-8.864 60.385Q-8.864 60.170-8.927 60.074Q-8.989 59.978-9.108 59.957Q-9.227 59.935-9.473 59.935L-9.473 59.639L-8.227 59.553L-8.227 62.103L-8.227 62.127Q-8.227 62.439-8.173 62.601Q-8.118 62.764-7.968 62.834Q-7.817 62.904-7.497 62.904Q-7.067 62.904-6.794 62.566Q-6.520 62.228-6.520 61.783L-6.520 60.385Q-6.520 60.170-6.583 60.074Q-6.645 59.978-6.765 59.957Q-6.884 59.935-7.130 59.935L-7.130 59.639L-5.884 59.553L-5.884 62.338Q-5.884 62.549-5.821 62.644Q-5.759 62.740-5.640 62.762Q-5.520 62.783-5.274 62.783L-5.274 63.080L-6.497 63.158L-6.497 62.537Q-6.665 62.826-6.946 62.992Q-7.227 63.158-7.548 63.158Q-8.864 63.158-8.864 62.127M-2.915 63.080L-4.747 63.080L-4.747 62.783Q-4.473 62.783-4.306 62.736Q-4.138 62.689-4.138 62.521L-4.138 58.361Q-4.138 58.146-4.200 58.051Q-4.263 57.955-4.382 57.934Q-4.501 57.912-4.747 57.912L-4.747 57.615L-3.524 57.529L-3.524 62.521Q-3.524 62.689-3.356 62.736Q-3.188 62.783-2.915 62.783L-2.915 63.080M-2.372 62.248Q-2.372 61.764-1.970 61.469Q-1.567 61.174-1.016 61.055Q-0.466 60.935 0.027 60.935L0.027 60.646Q0.027 60.420-0.089 60.213Q-0.204 60.006-0.401 59.887Q-0.598 59.767-0.829 59.767Q-1.255 59.767-1.540 59.873Q-1.470 59.900-1.423 59.955Q-1.376 60.010-1.350 60.080Q-1.325 60.150-1.325 60.225Q-1.325 60.330-1.376 60.422Q-1.427 60.514-1.518 60.564Q-1.610 60.615-1.716 60.615Q-1.821 60.615-1.913 60.564Q-2.005 60.514-2.056 60.422Q-2.106 60.330-2.106 60.225Q-2.106 59.807-1.718 59.660Q-1.329 59.514-0.829 59.514Q-0.497 59.514-0.143 59.644Q0.210 59.775 0.439 60.029Q0.667 60.283 0.667 60.631L0.667 62.432Q0.667 62.564 0.739 62.674Q0.812 62.783 0.941 62.783Q1.066 62.783 1.134 62.678Q1.202 62.572 1.202 62.432L1.202 61.920L1.484 61.920L1.484 62.432Q1.484 62.635 1.366 62.793Q1.249 62.951 1.068 63.035Q0.886 63.119 0.683 63.119Q0.452 63.119 0.300 62.947Q0.148 62.775 0.116 62.545Q-0.044 62.826-0.352 62.992Q-0.661 63.158-1.013 63.158Q-1.524 63.158-1.948 62.935Q-2.372 62.713-2.372 62.248M-1.684 62.248Q-1.684 62.533-1.458 62.719Q-1.231 62.904-0.938 62.904Q-0.692 62.904-0.468 62.787Q-0.243 62.670-0.108 62.467Q0.027 62.264 0.027 62.010L0.027 61.178Q-0.239 61.178-0.524 61.232Q-0.809 61.287-1.081 61.416Q-1.352 61.545-1.518 61.752Q-1.684 61.959-1.684 62.248M2.402 62.119L2.402 59.928L1.698 59.928L1.698 59.674Q2.054 59.674 2.296 59.441Q2.538 59.209 2.650 58.861Q2.761 58.514 2.761 58.158L3.042 58.158L3.042 59.631L4.218 59.631L4.218 59.928L3.042 59.928L3.042 62.103Q3.042 62.424 3.161 62.652Q3.280 62.881 3.562 62.881Q3.741 62.881 3.859 62.758Q3.976 62.635 4.028 62.455Q4.081 62.275 4.081 62.103L4.081 61.631L4.362 61.631L4.362 62.119Q4.362 62.373 4.257 62.613Q4.152 62.853 3.954 63.006Q3.757 63.158 3.499 63.158Q3.183 63.158 2.931 63.035Q2.679 62.912 2.540 62.678Q2.402 62.443 2.402 62.119M6.941 63.080L5.163 63.080L5.163 62.783Q5.437 62.783 5.605 62.736Q5.773 62.689 5.773 62.521L5.773 60.385Q5.773 60.170 5.716 60.074Q5.659 59.978 5.546 59.957Q5.433 59.935 5.187 59.935L5.187 59.639L6.386 59.553L6.386 62.521Q6.386 62.689 6.532 62.736Q6.679 62.783 6.941 62.783L6.941 63.080M5.499 58.158Q5.499 57.967 5.634 57.836Q5.769 57.705 5.964 57.705Q6.085 57.705 6.189 57.767Q6.292 57.830 6.355 57.934Q6.417 58.037 6.417 58.158Q6.417 58.353 6.286 58.488Q6.155 58.623 5.964 58.623Q5.765 58.623 5.632 58.490Q5.499 58.357 5.499 58.158M7.441 61.385Q7.441 60.881 7.696 60.449Q7.952 60.017 8.388 59.766Q8.823 59.514 9.323 59.514Q9.710 59.514 10.052 59.658Q10.394 59.803 10.655 60.064Q10.917 60.326 11.060 60.662Q11.202 60.998 11.202 61.385Q11.202 61.877 10.939 62.287Q10.675 62.697 10.245 62.928Q9.816 63.158 9.323 63.158Q8.831 63.158 8.398 62.926Q7.964 62.693 7.702 62.285Q7.441 61.877 7.441 61.385M9.323 62.881Q9.780 62.881 10.032 62.658Q10.284 62.435 10.372 62.084Q10.460 61.732 10.460 61.287Q10.460 60.857 10.366 60.519Q10.273 60.182 10.019 59.975Q9.765 59.767 9.323 59.767Q8.675 59.767 8.431 60.184Q8.187 60.600 8.187 61.287Q8.187 61.732 8.275 62.084Q8.362 62.435 8.614 62.658Q8.866 62.881 9.323 62.881M13.616 63.080L11.761 63.080L11.761 62.783Q12.034 62.783 12.202 62.736Q12.370 62.689 12.370 62.521L12.370 60.385Q12.370 60.170 12.308 60.074Q12.245 59.978 12.126 59.957Q12.007 59.935 11.761 59.935L11.761 59.639L12.952 59.553L12.952 60.287Q13.066 60.072 13.259 59.904Q13.452 59.736 13.691 59.644Q13.929 59.553 14.183 59.553Q15.351 59.553 15.351 60.631L15.351 62.521Q15.351 62.689 15.521 62.736Q15.691 62.783 15.960 62.783L15.960 63.080L14.105 63.080L14.105 62.783Q14.378 62.783 14.546 62.736Q14.714 62.689 14.714 62.521L14.714 60.646Q14.714 60.264 14.593 60.035Q14.472 59.807 14.120 59.807Q13.808 59.807 13.554 59.969Q13.300 60.131 13.153 60.400Q13.007 60.670 13.007 60.967L13.007 62.521Q13.007 62.689 13.177 62.736Q13.347 62.783 13.616 62.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M233.35-52.153h62.596V-72.07H233.35Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(279.69 -123.192)\">\u003Cpath d=\"M-31.625 61.767L-33.867 61.767L-33.867 61.471L-31.296 57.814Q-31.257 57.760-31.195 57.760L-31.050 57.760Q-31 57.760-30.968 57.791Q-30.937 57.822-30.937 57.873L-30.937 61.471L-30.105 61.471L-30.105 61.767L-30.937 61.767L-30.937 62.521Q-30.937 62.783-30.113 62.783L-30.113 63.080L-32.449 63.080L-32.449 62.783Q-31.625 62.783-31.625 62.521L-31.625 61.767M-31.570 58.666L-33.539 61.471L-31.570 61.471L-31.570 58.666M-29.140 62.615Q-29.140 62.432-29.003 62.295Q-28.867 62.158-28.675 62.158Q-28.484 62.158-28.351 62.291Q-28.218 62.424-28.218 62.615Q-28.218 62.814-28.351 62.947Q-28.484 63.080-28.675 63.080Q-28.867 63.080-29.003 62.943Q-29.140 62.807-29.140 62.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(279.69 -123.192)\">\u003Cpath d=\"M-20.068 63.080L-23.349 63.080L-23.349 62.783Q-23.025 62.783-22.782 62.736Q-22.540 62.689-22.540 62.521L-22.540 58.178Q-22.540 58.006-22.782 57.959Q-23.025 57.912-23.349 57.912L-23.349 57.615L-20.302 57.615Q-19.876 57.615-19.443 57.769Q-19.009 57.924-18.714 58.232Q-18.419 58.541-18.419 58.975Q-18.419 59.228-18.544 59.445Q-18.669 59.662-18.870 59.818Q-19.071 59.975-19.304 60.074Q-19.536 60.174-19.794 60.225Q-19.419 60.260-19.040 60.437Q-18.661 60.615-18.421 60.914Q-18.181 61.213-18.181 61.607Q-18.181 62.060-18.464 62.394Q-18.747 62.728-19.183 62.904Q-19.618 63.080-20.068 63.080M-21.829 60.369L-21.829 62.521Q-21.829 62.693-21.737 62.738Q-21.646 62.783-21.427 62.783L-20.302 62.783Q-20.064 62.783-19.829 62.695Q-19.595 62.607-19.409 62.447Q-19.224 62.287-19.122 62.074Q-19.021 61.861-19.021 61.607Q-19.021 61.287-19.173 61.002Q-19.325 60.717-19.595 60.543Q-19.864 60.369-20.181 60.369L-21.829 60.369M-21.829 58.178L-21.829 60.111L-20.540 60.111Q-20.298 60.111-20.060 60.029Q-19.821 59.947-19.638 59.801Q-19.454 59.654-19.341 59.437Q-19.228 59.221-19.228 58.975Q-19.228 58.764-19.314 58.562Q-19.400 58.361-19.546 58.219Q-19.693 58.076-19.888 57.994Q-20.083 57.912-20.302 57.912L-21.427 57.912Q-21.646 57.912-21.737 57.955Q-21.829 57.998-21.829 58.178M-17.364 62.248Q-17.364 61.764-16.962 61.469Q-16.560 61.174-16.009 61.055Q-15.458 60.935-14.966 60.935L-14.966 60.646Q-14.966 60.420-15.081 60.213Q-15.196 60.006-15.394 59.887Q-15.591 59.767-15.821 59.767Q-16.247 59.767-16.532 59.873Q-16.462 59.900-16.415 59.955Q-16.368 60.010-16.343 60.080Q-16.318 60.150-16.318 60.225Q-16.318 60.330-16.368 60.422Q-16.419 60.514-16.511 60.564Q-16.603 60.615-16.708 60.615Q-16.814 60.615-16.905 60.564Q-16.997 60.514-17.048 60.422Q-17.099 60.330-17.099 60.225Q-17.099 59.807-16.710 59.660Q-16.321 59.514-15.821 59.514Q-15.489 59.514-15.136 59.644Q-14.782 59.775-14.554 60.029Q-14.325 60.283-14.325 60.631L-14.325 62.432Q-14.325 62.564-14.253 62.674Q-14.181 62.783-14.052 62.783Q-13.927 62.783-13.859 62.678Q-13.790 62.572-13.790 62.432L-13.790 61.920L-13.509 61.920L-13.509 62.432Q-13.509 62.635-13.626 62.793Q-13.743 62.951-13.925 63.035Q-14.107 63.119-14.310 63.119Q-14.540 63.119-14.693 62.947Q-14.845 62.775-14.876 62.545Q-15.036 62.826-15.345 62.992Q-15.654 63.158-16.005 63.158Q-16.517 63.158-16.941 62.935Q-17.364 62.713-17.364 62.248M-16.677 62.248Q-16.677 62.533-16.450 62.719Q-16.224 62.904-15.931 62.904Q-15.685 62.904-15.460 62.787Q-15.236 62.670-15.101 62.467Q-14.966 62.264-14.966 62.010L-14.966 61.178Q-15.232 61.178-15.517 61.232Q-15.802 61.287-16.073 61.416Q-16.345 61.545-16.511 61.752Q-16.677 61.959-16.677 62.248M-13.173 61.353Q-13.173 60.857-12.923 60.432Q-12.673 60.006-12.253 59.760Q-11.833 59.514-11.333 59.514Q-10.794 59.514-10.404 59.639Q-10.013 59.764-10.013 60.178Q-10.013 60.283-10.064 60.375Q-10.114 60.467-10.206 60.517Q-10.298 60.568-10.407 60.568Q-10.513 60.568-10.605 60.517Q-10.696 60.467-10.747 60.375Q-10.798 60.283-10.798 60.178Q-10.798 59.955-10.630 59.850Q-10.853 59.791-11.325 59.791Q-11.622 59.791-11.837 59.930Q-12.052 60.068-12.183 60.299Q-12.314 60.529-12.372 60.799Q-12.431 61.068-12.431 61.353Q-12.431 61.748-12.298 62.098Q-12.165 62.447-11.894 62.664Q-11.622 62.881-11.224 62.881Q-10.849 62.881-10.573 62.664Q-10.298 62.447-10.196 62.088Q-10.181 62.025-10.118 62.025L-10.013 62.025Q-9.978 62.025-9.952 62.053Q-9.927 62.080-9.927 62.119L-9.927 62.142Q-10.060 62.623-10.445 62.891Q-10.829 63.158-11.333 63.158Q-11.696 63.158-12.030 63.021Q-12.364 62.885-12.624 62.635Q-12.884 62.385-13.029 62.049Q-13.173 61.713-13.173 61.353\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(279.69 -123.192)\">\u003Cpath d=\"M-7.845 63.080L-9.642 63.080L-9.642 62.783Q-9.373 62.783-9.205 62.738Q-9.037 62.693-9.037 62.521L-9.037 58.361Q-9.037 58.146-9.099 58.051Q-9.162 57.955-9.279 57.934Q-9.396 57.912-9.642 57.912L-9.642 57.615L-8.420 57.529L-8.420 61.295L-7.322 60.408Q-7.115 60.228-7.115 60.080Q-7.115 60.014-7.168 59.971Q-7.220 59.928-7.291 59.928L-7.291 59.631L-5.756 59.631L-5.756 59.928Q-6.287 59.928-6.885 60.408L-7.494 60.904L-6.420 62.303Q-6.283 62.478-6.176 62.586Q-6.068 62.693-5.933 62.738Q-5.799 62.783-5.572 62.783L-5.572 63.080L-7.197 63.080L-7.197 62.783Q-6.955 62.783-6.955 62.631Q-6.955 62.553-6.998 62.482Q-7.041 62.412-7.123 62.303L-7.924 61.256L-8.451 61.682L-8.451 62.521Q-8.451 62.689-8.283 62.736Q-8.115 62.783-7.845 62.783L-7.845 63.080M-4.506 62.127L-4.506 60.385Q-4.506 60.170-4.568 60.074Q-4.631 59.978-4.750 59.957Q-4.869 59.935-5.115 59.935L-5.115 59.639L-3.869 59.553L-3.869 62.103L-3.869 62.127Q-3.869 62.439-3.814 62.601Q-3.760 62.764-3.609 62.834Q-3.459 62.904-3.138 62.904Q-2.709 62.904-2.435 62.566Q-2.162 62.228-2.162 61.783L-2.162 60.385Q-2.162 60.170-2.224 60.074Q-2.287 59.978-2.406 59.957Q-2.525 59.935-2.771 59.935L-2.771 59.639L-1.525 59.553L-1.525 62.338Q-1.525 62.549-1.463 62.644Q-1.400 62.740-1.281 62.762Q-1.162 62.783-0.916 62.783L-0.916 63.080L-2.138 63.158L-2.138 62.537Q-2.306 62.826-2.588 62.992Q-2.869 63.158-3.189 63.158Q-4.506 63.158-4.506 62.127M1.412 64.631L-0.443 64.631L-0.443 64.338Q-0.174 64.338-0.006 64.293Q0.162 64.248 0.162 64.072L0.162 60.248Q0.162 60.041 0.006 59.988Q-0.150 59.935-0.443 59.935L-0.443 59.639L0.780 59.553L0.780 60.017Q1.010 59.795 1.324 59.674Q1.639 59.553 1.979 59.553Q2.451 59.553 2.856 59.799Q3.260 60.045 3.492 60.461Q3.725 60.877 3.725 61.353Q3.725 61.728 3.576 62.057Q3.428 62.385 3.158 62.637Q2.889 62.889 2.545 63.023Q2.201 63.158 1.842 63.158Q1.553 63.158 1.281 63.037Q1.010 62.916 0.803 62.705L0.803 64.072Q0.803 64.248 0.971 64.293Q1.139 64.338 1.412 64.338L1.412 64.631M0.803 60.416L0.803 62.256Q0.955 62.545 1.217 62.725Q1.479 62.904 1.787 62.904Q2.072 62.904 2.295 62.766Q2.518 62.627 2.670 62.396Q2.822 62.166 2.901 61.894Q2.979 61.623 2.979 61.353Q2.979 61.021 2.854 60.664Q2.729 60.307 2.481 60.070Q2.233 59.834 1.885 59.834Q1.561 59.834 1.266 59.990Q0.971 60.146 0.803 60.416\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-2.607-62.112H31.98\"\u002F>\u003Cpath stroke=\"none\" d=\"m33.981-62.112-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M96.977-62.112h34.589\"\u002F>\u003Cpath stroke=\"none\" d=\"m133.566-62.112-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M196.562-62.112h34.588\"\u002F>\u003Cpath stroke=\"none\" d=\"m233.15-62.112-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-26.28-30.814a7.824 7.824 0 1 0-15.65 0 7.824 7.824 0 0 0 15.65 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-46.198.484a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.65 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-6.364.484a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.649 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-16.322 31.782a7.824 7.824 0 1 0-15.65 0 7.824 7.824 0 0 0 15.65 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m-29.798-24.044 11.302 17.759M-16.621 8.13l-5.093 16.006\" style=\"stroke-width:.8\"\u002F>\u003Cpath fill=\"none\" d=\"M-38.413-24.044-49.714-6.285\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(29.14 -43.775)\">\u003Cpath d=\"M-33.264 62.239L-33.264 60.342L-33.903 60.342L-33.903 60.120Q-33.585 60.120-33.368 59.910Q-33.151 59.700-33.051 59.390Q-32.950 59.081-32.950 58.773L-32.683 58.773L-32.683 60.062L-31.606 60.062L-31.606 60.342L-32.683 60.342L-32.683 62.226Q-32.683 62.502-32.579 62.701Q-32.475 62.899-32.215 62.899Q-32.058 62.899-31.952 62.795Q-31.846 62.690-31.796 62.537Q-31.747 62.383-31.747 62.226L-31.747 61.812L-31.480 61.812L-31.480 62.239Q-31.480 62.465-31.579 62.675Q-31.678 62.885-31.863 63.017Q-32.047 63.148-32.276 63.148Q-32.714 63.148-32.989 62.911Q-33.264 62.673-33.264 62.239M-28.920 63.080L-30.656 63.080L-30.656 62.800Q-30.427 62.800-30.279 62.766Q-30.130 62.731-30.130 62.591L-30.130 60.742Q-30.130 60.472-30.238 60.411Q-30.345 60.349-30.656 60.349L-30.656 60.069L-29.627 59.994L-29.627 60.701Q-29.498 60.393-29.255 60.194Q-29.012 59.994-28.694 59.994Q-28.476 59.994-28.305 60.118Q-28.134 60.243-28.134 60.455Q-28.134 60.592-28.233 60.691Q-28.332 60.790-28.465 60.790Q-28.602 60.790-28.701 60.691Q-28.800 60.592-28.800 60.455Q-28.800 60.315-28.701 60.216Q-28.992 60.216-29.192 60.412Q-29.392 60.609-29.484 60.903Q-29.576 61.197-29.576 61.477L-29.576 62.591Q-29.576 62.800-28.920 62.800L-28.920 63.080M-27.590 61.545Q-27.590 61.224-27.466 60.935Q-27.341 60.646-27.115 60.423Q-26.890 60.199-26.594 60.079Q-26.298 59.959-25.980 59.959Q-25.652 59.959-25.391 60.059Q-25.129 60.158-24.953 60.340Q-24.777 60.523-24.683 60.781Q-24.589 61.039-24.589 61.371Q-24.589 61.463-24.671 61.484L-26.927 61.484L-26.927 61.545Q-26.927 62.133-26.644 62.516Q-26.360 62.899-25.792 62.899Q-25.471 62.899-25.203 62.706Q-24.935 62.513-24.846 62.198Q-24.839 62.157-24.764 62.143L-24.671 62.143Q-24.589 62.167-24.589 62.239Q-24.589 62.246-24.596 62.273Q-24.709 62.670-25.080 62.909Q-25.451 63.148-25.875 63.148Q-26.312 63.148-26.712 62.940Q-27.112 62.731-27.351 62.364Q-27.590 61.997-27.590 61.545M-26.920 61.275L-25.105 61.275Q-25.105 60.998-25.203 60.746Q-25.300 60.493-25.499 60.337Q-25.697 60.182-25.980 60.182Q-26.257 60.182-26.471 60.340Q-26.685 60.499-26.803 60.754Q-26.920 61.009-26.920 61.275M-24.042 61.545Q-24.042 61.224-23.918 60.935Q-23.793 60.646-23.567 60.423Q-23.342 60.199-23.046 60.079Q-22.751 59.959-22.433 59.959Q-22.105 59.959-21.843 60.059Q-21.582 60.158-21.406 60.340Q-21.230 60.523-21.136 60.781Q-21.042 61.039-21.042 61.371Q-21.042 61.463-21.124 61.484L-23.379 61.484L-23.379 61.545Q-23.379 62.133-23.096 62.516Q-22.812 62.899-22.245 62.899Q-21.923 62.899-21.655 62.706Q-21.387 62.513-21.298 62.198Q-21.291 62.157-21.216 62.143L-21.124 62.143Q-21.042 62.167-21.042 62.239Q-21.042 62.246-21.048 62.273Q-21.161 62.670-21.532 62.909Q-21.903 63.148-22.327 63.148Q-22.764 63.148-23.164 62.940Q-23.564 62.731-23.803 62.364Q-24.042 61.997-24.042 61.545M-23.373 61.275L-21.558 61.275Q-21.558 60.998-21.655 60.746Q-21.752 60.493-21.951 60.337Q-22.149 60.182-22.433 60.182Q-22.709 60.182-22.923 60.340Q-23.137 60.499-23.255 60.754Q-23.373 61.009-23.373 61.275\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 -43.775)\">\u003Cpath d=\"M-16.092 64.437L-17.722 64.437L-17.722 64.157Q-17.493 64.157-17.344 64.122Q-17.196 64.088-17.196 63.948L-17.196 60.602Q-17.196 60.431-17.332 60.390Q-17.469 60.349-17.722 60.349L-17.722 60.069L-16.642 59.994L-16.642 60.400Q-16.420 60.199-16.133 60.096Q-15.845 59.994-15.538 59.994Q-15.111 59.994-14.747 60.207Q-14.383 60.421-14.169 60.785Q-13.955 61.149-13.955 61.569Q-13.955 62.014-14.195 62.378Q-14.434 62.742-14.827 62.945Q-15.220 63.148-15.664 63.148Q-15.931 63.148-16.179 63.048Q-16.426 62.947-16.614 62.766L-16.614 63.948Q-16.614 64.085-16.466 64.121Q-16.317 64.157-16.092 64.157L-16.092 64.437M-16.614 60.749L-16.614 62.359Q-16.481 62.612-16.238 62.769Q-15.996 62.926-15.719 62.926Q-15.391 62.926-15.138 62.725Q-14.885 62.523-14.752 62.205Q-14.618 61.887-14.618 61.569Q-14.618 61.340-14.683 61.111Q-14.748 60.882-14.876 60.684Q-15.005 60.486-15.199 60.366Q-15.394 60.247-15.627 60.247Q-15.921 60.247-16.189 60.376Q-16.457 60.506-16.614 60.749\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 -43.775)\">\u003Cpath d=\"M-13.145 61.597Q-13.145 61.255-13.010 60.956Q-12.875 60.657-12.635 60.433Q-12.396 60.209-12.078 60.084Q-11.760 59.959-11.429 59.959Q-10.984 59.959-10.585 60.175Q-10.185 60.390-9.950 60.768Q-9.716 61.145-9.716 61.597Q-9.716 61.938-9.858 62.222Q-10 62.506-10.244 62.713Q-10.489 62.919-10.798 63.034Q-11.107 63.148-11.429 63.148Q-11.859 63.148-12.261 62.947Q-12.663 62.745-12.904 62.393Q-13.145 62.041-13.145 61.597M-11.429 62.899Q-10.827 62.899-10.603 62.521Q-10.379 62.143-10.379 61.511Q-10.379 60.899-10.614 60.540Q-10.848 60.182-11.429 60.182Q-12.481 60.182-12.481 61.511Q-12.481 62.143-12.256 62.521Q-12.030 62.899-11.429 62.899M-7.454 63.080L-9.057 63.080L-9.057 62.800Q-8.831 62.800-8.682 62.766Q-8.534 62.731-8.534 62.591L-8.534 58.972Q-8.534 58.702-8.641 58.640Q-8.749 58.579-9.057 58.579L-9.057 58.298L-7.980 58.223L-7.980 62.591Q-7.980 62.728-7.830 62.764Q-7.679 62.800-7.454 62.800L-7.454 63.080M-5.242 63.080L-6.794 63.080L-6.794 62.800Q-6.568 62.800-6.420 62.766Q-6.271 62.731-6.271 62.591L-6.271 60.742Q-6.271 60.554-6.319 60.470Q-6.367 60.387-6.464 60.368Q-6.562 60.349-6.773 60.349L-6.773 60.069L-5.717 59.994L-5.717 62.591Q-5.717 62.731-5.586 62.766Q-5.454 62.800-5.242 62.800L-5.242 63.080M-6.514 58.773Q-6.514 58.602-6.391 58.483Q-6.268 58.363-6.097 58.363Q-5.929 58.363-5.806 58.483Q-5.683 58.602-5.683 58.773Q-5.683 58.948-5.806 59.071Q-5.929 59.194-6.097 59.194Q-6.268 59.194-6.391 59.071Q-6.514 58.948-6.514 58.773M-4.596 61.569Q-4.596 61.241-4.461 60.940Q-4.326 60.640-4.090 60.419Q-3.855 60.199-3.550 60.079Q-3.246 59.959-2.921 59.959Q-2.416 59.959-2.067 60.062Q-1.718 60.164-1.718 60.540Q-1.718 60.687-1.816 60.788Q-1.913 60.889-2.060 60.889Q-2.214 60.889-2.313 60.790Q-2.412 60.691-2.412 60.540Q-2.412 60.352-2.272 60.260Q-2.474 60.209-2.915 60.209Q-3.270 60.209-3.499 60.405Q-3.728 60.602-3.829 60.911Q-3.930 61.221-3.930 61.569Q-3.930 61.918-3.803 62.224Q-3.677 62.530-3.422 62.714Q-3.168 62.899-2.812 62.899Q-2.590 62.899-2.405 62.815Q-2.221 62.731-2.086 62.576Q-1.951 62.420-1.893 62.212Q-1.879 62.157-1.824 62.157L-1.711 62.157Q-1.681 62.157-1.658 62.181Q-1.636 62.205-1.636 62.239L-1.636 62.260Q-1.722 62.547-1.910 62.745Q-2.098 62.943-2.363 63.046Q-2.627 63.148-2.921 63.148Q-3.352 63.148-3.740 62.942Q-4.128 62.735-4.362 62.372Q-4.596 62.010-4.596 61.569M-0.713 64.215Q-0.584 64.283-0.447 64.283Q-0.276 64.283-0.126 64.194Q0.025 64.105 0.136 63.960Q0.247 63.815 0.326 63.647L0.589 63.080L-0.580 60.554Q-0.655 60.407-0.785 60.375Q-0.915 60.342-1.147 60.342L-1.147 60.062L0.374 60.062L0.374 60.342Q0.025 60.342 0.025 60.489Q0.028 60.510 0.030 60.527Q0.032 60.544 0.032 60.554L0.890 62.413L1.662 60.742Q1.696 60.674 1.696 60.595Q1.696 60.482 1.613 60.412Q1.529 60.342 1.416 60.342L1.416 60.062L2.612 60.062L2.612 60.342Q2.394 60.342 2.221 60.446Q2.048 60.551 1.956 60.742L0.620 63.647Q0.449 64.017 0.179 64.263Q-0.091 64.509-0.447 64.509Q-0.717 64.509-0.936 64.343Q-1.154 64.177-1.154 63.914Q-1.154 63.777-1.062 63.688Q-0.970 63.600-0.830 63.600Q-0.693 63.600-0.604 63.688Q-0.515 63.777-0.515 63.914Q-0.515 64.017-0.568 64.095Q-0.621 64.174-0.713 64.215\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M73.304-30.814a7.824 7.824 0 1 0-15.65 0 7.824 7.824 0 0 0 15.65 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M93.22.484a7.824 7.824 0 1 0-15.648 0 7.824 7.824 0 0 0 15.649 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M83.262 31.782a7.824 7.824 0 1 0-15.648 0 7.824 7.824 0 0 0 15.648 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M93.22 60.235a7.824 7.824 0 1 0-15.648 0 7.824 7.824 0 0 0 15.649 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M69.787-24.044 81.088-6.285M82.963 8.13l-5.092 16.006\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m78.089 39.356 4.59 13.116\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(130.148 -.415)\">\u003Cpath d=\"M-32.109 63.080L-33.743 63.080L-33.743 62.800Q-33.514 62.800-33.365 62.766Q-33.216 62.731-33.216 62.591L-33.216 60.742Q-33.216 60.472-33.324 60.411Q-33.432 60.349-33.743 60.349L-33.743 60.069L-32.683 59.994L-32.683 60.643Q-32.512 60.335-32.208 60.164Q-31.904 59.994-31.559 59.994Q-31.053 59.994-30.769 60.217Q-30.485 60.441-30.485 60.937L-30.485 62.591Q-30.485 62.728-30.337 62.764Q-30.188 62.800-29.962 62.800L-29.962 63.080L-31.593 63.080L-31.593 62.800Q-31.364 62.800-31.215 62.766Q-31.066 62.731-31.066 62.591L-31.066 60.951Q-31.066 60.616-31.186 60.416Q-31.306 60.216-31.620 60.216Q-31.890 60.216-32.124 60.352Q-32.358 60.489-32.497 60.723Q-32.635 60.957-32.635 61.231L-32.635 62.591Q-32.635 62.728-32.485 62.764Q-32.334 62.800-32.109 62.800L-32.109 63.080M-29.416 61.545Q-29.416 61.224-29.291 60.935Q-29.166 60.646-28.940 60.423Q-28.715 60.199-28.419 60.079Q-28.124 59.959-27.806 59.959Q-27.478 59.959-27.216 60.059Q-26.955 60.158-26.779 60.340Q-26.603 60.523-26.509 60.781Q-26.415 61.039-26.415 61.371Q-26.415 61.463-26.497 61.484L-28.752 61.484L-28.752 61.545Q-28.752 62.133-28.469 62.516Q-28.185 62.899-27.618 62.899Q-27.296 62.899-27.028 62.706Q-26.760 62.513-26.671 62.198Q-26.664 62.157-26.589 62.143L-26.497 62.143Q-26.415 62.167-26.415 62.239Q-26.415 62.246-26.421 62.273Q-26.534 62.670-26.905 62.909Q-27.276 63.148-27.700 63.148Q-28.137 63.148-28.537 62.940Q-28.937 62.731-29.176 62.364Q-29.416 61.997-29.416 61.545M-28.746 61.275L-26.931 61.275Q-26.931 60.998-27.028 60.746Q-27.126 60.493-27.324 60.337Q-27.522 60.182-27.806 60.182Q-28.083 60.182-28.296 60.340Q-28.510 60.499-28.628 60.754Q-28.746 61.009-28.746 61.275M-24.439 63.053L-25.420 60.554Q-25.481 60.411-25.599 60.376Q-25.717 60.342-25.933 60.342L-25.933 60.062L-24.453 60.062L-24.453 60.342Q-24.832 60.342-24.832 60.503Q-24.832 60.513-24.818 60.554L-24.104 62.386L-23.431 60.681Q-23.461 60.609-23.461 60.581Q-23.461 60.554-23.489 60.554Q-23.550 60.407-23.668 60.375Q-23.786 60.342-23.998 60.342L-23.998 60.062L-22.600 60.062L-22.600 60.342Q-22.976 60.342-22.976 60.503Q-22.976 60.534-22.969 60.554L-22.214 62.492L-21.527 60.742Q-21.506 60.691-21.506 60.636Q-21.506 60.496-21.619 60.419Q-21.732 60.342-21.872 60.342L-21.872 60.062L-20.652 60.062L-20.652 60.342Q-20.857 60.342-21.012 60.448Q-21.168 60.554-21.240 60.742L-22.146 63.053Q-22.180 63.148-22.292 63.148L-22.361 63.148Q-22.470 63.148-22.508 63.053L-23.291 61.050L-24.077 63.053Q-24.111 63.148-24.224 63.148L-24.292 63.148Q-24.401 63.148-24.439 63.053\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(130.148 -.415)\">\u003Cpath d=\"M-15.734 63.080L-17.368 63.080L-17.368 62.800Q-17.139 62.800-16.990 62.766Q-16.841 62.731-16.841 62.591L-16.841 60.742Q-16.841 60.472-16.949 60.411Q-17.057 60.349-17.368 60.349L-17.368 60.069L-16.308 59.994L-16.308 60.643Q-16.137 60.335-15.833 60.164Q-15.529 59.994-15.184 59.994Q-14.678 59.994-14.394 60.217Q-14.110 60.441-14.110 60.937L-14.110 62.591Q-14.110 62.728-13.962 62.764Q-13.813 62.800-13.587 62.800L-13.587 63.080L-15.218 63.080L-15.218 62.800Q-14.989 62.800-14.840 62.766Q-14.691 62.731-14.691 62.591L-14.691 60.951Q-14.691 60.616-14.811 60.416Q-14.931 60.216-15.245 60.216Q-15.515 60.216-15.749 60.352Q-15.983 60.489-16.122 60.723Q-16.260 60.957-16.260 61.231L-16.260 62.591Q-16.260 62.728-16.110 62.764Q-15.959 62.800-15.734 62.800L-15.734 63.080M-13.041 61.597Q-13.041 61.255-12.906 60.956Q-12.771 60.657-12.531 60.433Q-12.292 60.209-11.974 60.084Q-11.656 59.959-11.325 59.959Q-10.880 59.959-10.480 60.175Q-10.081 60.390-9.846 60.768Q-9.612 61.145-9.612 61.597Q-9.612 61.938-9.754 62.222Q-9.896 62.506-10.140 62.713Q-10.385 62.919-10.694 63.034Q-11.003 63.148-11.325 63.148Q-11.755 63.148-12.157 62.947Q-12.559 62.745-12.800 62.393Q-13.041 62.041-13.041 61.597M-11.325 62.899Q-10.723 62.899-10.499 62.521Q-10.275 62.143-10.275 61.511Q-10.275 60.899-10.510 60.540Q-10.744 60.182-11.325 60.182Q-12.377 60.182-12.377 61.511Q-12.377 62.143-12.152 62.521Q-11.926 62.899-11.325 62.899\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(130.148 -.415)\">\u003Cpath d=\"M-8.798 61.569Q-8.798 61.231-8.657 60.940Q-8.517 60.650-8.273 60.436Q-8.029 60.223-7.724 60.108Q-7.420 59.994-7.095 59.994Q-6.825 59.994-6.562 60.093Q-6.299 60.192-6.108 60.370L-6.108 58.972Q-6.108 58.702-6.215 58.640Q-6.323 58.579-6.634 58.579L-6.634 58.298L-5.557 58.223L-5.557 62.407Q-5.557 62.595-5.503 62.678Q-5.448 62.762-5.347 62.781Q-5.246 62.800-5.031 62.800L-5.031 63.080L-6.138 63.148L-6.138 62.731Q-6.555 63.148-7.181 63.148Q-7.612 63.148-7.984 62.936Q-8.357 62.725-8.577 62.364Q-8.798 62.003-8.798 61.569M-7.123 62.926Q-6.914 62.926-6.728 62.854Q-6.542 62.783-6.388 62.646Q-6.234 62.509-6.138 62.331L-6.138 60.722Q-6.224 60.575-6.369 60.455Q-6.514 60.335-6.684 60.276Q-6.853 60.216-7.034 60.216Q-7.594 60.216-7.863 60.605Q-8.131 60.995-8.131 61.576Q-8.131 62.147-7.897 62.537Q-7.663 62.926-7.123 62.926M-4.423 61.545Q-4.423 61.224-4.298 60.935Q-4.173 60.646-3.947 60.423Q-3.722 60.199-3.426 60.079Q-3.131 59.959-2.813 59.959Q-2.485 59.959-2.223 60.059Q-1.962 60.158-1.786 60.340Q-1.610 60.523-1.516 60.781Q-1.422 61.039-1.422 61.371Q-1.422 61.463-1.504 61.484L-3.759 61.484L-3.759 61.545Q-3.759 62.133-3.476 62.516Q-3.192 62.899-2.625 62.899Q-2.303 62.899-2.035 62.706Q-1.767 62.513-1.678 62.198Q-1.671 62.157-1.596 62.143L-1.504 62.143Q-1.422 62.167-1.422 62.239Q-1.422 62.246-1.428 62.273Q-1.541 62.670-1.912 62.909Q-2.283 63.148-2.707 63.148Q-3.144 63.148-3.544 62.940Q-3.944 62.731-4.183 62.364Q-4.423 61.997-4.423 61.545M-3.753 61.275L-1.938 61.275Q-1.938 60.998-2.035 60.746Q-2.133 60.493-2.331 60.337Q-2.529 60.182-2.813 60.182Q-3.090 60.182-3.303 60.340Q-3.517 60.499-3.635 60.754Q-3.753 61.009-3.753 61.275\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M172.888-30.814a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.65 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M182.847 31.782a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.649 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M192.805 60.235a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.65 0Zm-7.824 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M179.29 105.76h11.381V94.378h-11.38Z\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m166.325-22.89 7.437 46.748M177.673 39.356l4.657 13.305\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-dasharray:3.0,3.0;stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M184.98 68.26v23.319\"\u002F>\u003Cpath stroke=\"none\" d=\"m184.98 94.178 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg transform=\"translate(229.732 19.502)\">\u003Cpath d=\"M-32.041 63.080L-33.777 63.080L-33.777 62.800Q-33.548 62.800-33.399 62.766Q-33.251 62.731-33.251 62.591L-33.251 60.742Q-33.251 60.472-33.358 60.411Q-33.466 60.349-33.777 60.349L-33.777 60.069L-32.748 59.994L-32.748 60.701Q-32.618 60.393-32.376 60.194Q-32.133 59.994-31.815 59.994Q-31.596 59.994-31.425 60.118Q-31.254 60.243-31.254 60.455Q-31.254 60.592-31.354 60.691Q-31.453 60.790-31.586 60.790Q-31.723 60.790-31.822 60.691Q-31.921 60.592-31.921 60.455Q-31.921 60.315-31.822 60.216Q-32.112 60.216-32.312 60.412Q-32.512 60.609-32.605 60.903Q-32.697 61.197-32.697 61.477L-32.697 62.591Q-32.697 62.800-32.041 62.800L-32.041 63.080M-30.711 61.597Q-30.711 61.255-30.576 60.956Q-30.441 60.657-30.202 60.433Q-29.962 60.209-29.645 60.084Q-29.327 59.959-28.995 59.959Q-28.551 59.959-28.151 60.175Q-27.751 60.390-27.517 60.768Q-27.283 61.145-27.283 61.597Q-27.283 61.938-27.425 62.222Q-27.566 62.506-27.811 62.713Q-28.055 62.919-28.365 63.034Q-28.674 63.148-28.995 63.148Q-29.426 63.148-29.827 62.947Q-30.229 62.745-30.470 62.393Q-30.711 62.041-30.711 61.597M-28.995 62.899Q-28.394 62.899-28.170 62.521Q-27.946 62.143-27.946 61.511Q-27.946 60.899-28.180 60.540Q-28.414 60.182-28.995 60.182Q-30.048 60.182-30.048 61.511Q-30.048 62.143-29.822 62.521Q-29.597 62.899-28.995 62.899M-25.020 63.080L-26.623 63.080L-26.623 62.800Q-26.397 62.800-26.249 62.766Q-26.100 62.731-26.100 62.591L-26.100 58.972Q-26.100 58.702-26.208 58.640Q-26.315 58.579-26.623 58.579L-26.623 58.298L-25.546 58.223L-25.546 62.591Q-25.546 62.728-25.396 62.764Q-25.246 62.800-25.020 62.800L-25.020 63.080M-22.757 63.080L-24.360 63.080L-24.360 62.800Q-24.135 62.800-23.986 62.766Q-23.837 62.731-23.837 62.591L-23.837 58.972Q-23.837 58.702-23.945 58.640Q-24.053 58.579-24.360 58.579L-24.360 58.298L-23.284 58.223L-23.284 62.591Q-23.284 62.728-23.133 62.764Q-22.983 62.800-22.757 62.800L-22.757 63.080M-22.204 61.597Q-22.204 61.255-22.069 60.956Q-21.934 60.657-21.694 60.433Q-21.455 60.209-21.137 60.084Q-20.819 59.959-20.488 59.959Q-20.043 59.959-19.644 60.175Q-19.244 60.390-19.010 60.768Q-18.775 61.145-18.775 61.597Q-18.775 61.938-18.917 62.222Q-19.059 62.506-19.303 62.713Q-19.548 62.919-19.857 63.034Q-20.167 63.148-20.488 63.148Q-20.918 63.148-21.320 62.947Q-21.722 62.745-21.963 62.393Q-22.204 62.041-22.204 61.597M-20.488 62.899Q-19.886 62.899-19.662 62.521Q-19.438 62.143-19.438 61.511Q-19.438 60.899-19.673 60.540Q-19.907 60.182-20.488 60.182Q-21.541 60.182-21.541 61.511Q-21.541 62.143-21.315 62.521Q-21.089 62.899-20.488 62.899M-17.606 62.246L-17.606 60.742Q-17.606 60.472-17.714 60.411Q-17.822 60.349-18.133 60.349L-18.133 60.069L-17.025 59.994L-17.025 62.226L-17.025 62.246Q-17.025 62.526-16.974 62.670Q-16.923 62.813-16.781 62.870Q-16.639 62.926-16.352 62.926Q-16.099 62.926-15.894 62.786Q-15.689 62.646-15.573 62.420Q-15.457 62.195-15.457 61.945L-15.457 60.742Q-15.457 60.472-15.564 60.411Q-15.672 60.349-15.983 60.349L-15.983 60.069L-14.876 59.994L-14.876 62.407Q-14.876 62.598-14.823 62.680Q-14.770 62.762-14.669 62.781Q-14.568 62.800-14.353 62.800L-14.353 63.080L-15.429 63.148L-15.429 62.584Q-15.539 62.766-15.684 62.889Q-15.829 63.012-16.015 63.080Q-16.202 63.148-16.403 63.148Q-17.606 63.148-17.606 62.246M-13.238 62.239L-13.238 60.342L-13.877 60.342L-13.877 60.120Q-13.560 60.120-13.343 59.910Q-13.126 59.700-13.025 59.390Q-12.924 59.081-12.924 58.773L-12.657 58.773L-12.657 60.062L-11.581 60.062L-11.581 60.342L-12.657 60.342L-12.657 62.226Q-12.657 62.502-12.553 62.701Q-12.449 62.899-12.189 62.899Q-12.032 62.899-11.926 62.795Q-11.820 62.690-11.770 62.537Q-11.721 62.383-11.721 62.226L-11.721 61.812L-11.454 61.812L-11.454 62.239Q-11.454 62.465-11.553 62.675Q-11.652 62.885-11.837 63.017Q-12.022 63.148-12.251 63.148Q-12.688 63.148-12.963 62.911Q-13.238 62.673-13.238 62.239\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(204.433 51.073)\">\u003Cpath d=\"M-33.264 62.239L-33.264 60.342L-33.903 60.342L-33.903 60.120Q-33.585 60.120-33.368 59.910Q-33.151 59.700-33.051 59.390Q-32.950 59.081-32.950 58.773L-32.683 58.773L-32.683 60.062L-31.606 60.062L-31.606 60.342L-32.683 60.342L-32.683 62.226Q-32.683 62.502-32.579 62.701Q-32.475 62.899-32.215 62.899Q-32.058 62.899-31.952 62.795Q-31.846 62.690-31.796 62.537Q-31.747 62.383-31.747 62.226L-31.747 61.812L-31.480 61.812L-31.480 62.239Q-31.480 62.465-31.579 62.675Q-31.678 62.885-31.863 63.017Q-32.047 63.148-32.276 63.148Q-32.714 63.148-32.989 62.911Q-33.264 62.673-33.264 62.239M-30.711 61.545Q-30.711 61.224-30.586 60.935Q-30.461 60.646-30.236 60.423Q-30.010 60.199-29.715 60.079Q-29.419 59.959-29.101 59.959Q-28.773 59.959-28.511 60.059Q-28.250 60.158-28.074 60.340Q-27.898 60.523-27.804 60.781Q-27.710 61.039-27.710 61.371Q-27.710 61.463-27.792 61.484L-30.048 61.484L-30.048 61.545Q-30.048 62.133-29.764 62.516Q-29.480 62.899-28.913 62.899Q-28.592 62.899-28.324 62.706Q-28.055 62.513-27.966 62.198Q-27.959 62.157-27.884 62.143L-27.792 62.143Q-27.710 62.167-27.710 62.239Q-27.710 62.246-27.717 62.273Q-27.830 62.670-28.200 62.909Q-28.571 63.148-28.995 63.148Q-29.433 63.148-29.833 62.940Q-30.232 62.731-30.472 62.364Q-30.711 61.997-30.711 61.545M-30.041 61.275L-28.226 61.275Q-28.226 60.998-28.324 60.746Q-28.421 60.493-28.619 60.337Q-28.817 60.182-29.101 60.182Q-29.378 60.182-29.592 60.340Q-29.805 60.499-29.923 60.754Q-30.041 61.009-30.041 61.275M-25.372 63.080L-27.108 63.080L-27.108 62.800Q-26.879 62.800-26.731 62.766Q-26.582 62.731-26.582 62.591L-26.582 60.742Q-26.582 60.472-26.690 60.411Q-26.797 60.349-27.108 60.349L-27.108 60.069L-26.080 59.994L-26.080 60.701Q-25.950 60.393-25.707 60.194Q-25.464 59.994-25.147 59.994Q-24.928 59.994-24.757 60.118Q-24.586 60.243-24.586 60.455Q-24.586 60.592-24.685 60.691Q-24.784 60.790-24.917 60.790Q-25.054 60.790-25.153 60.691Q-25.252 60.592-25.252 60.455Q-25.252 60.315-25.153 60.216Q-25.444 60.216-25.644 60.412Q-25.844 60.609-25.936 60.903Q-26.028 61.197-26.028 61.477L-26.028 62.591Q-26.028 62.800-25.372 62.800L-25.372 63.080M-22.320 63.080L-23.954 63.080L-23.954 62.800Q-23.725 62.800-23.576 62.766Q-23.427 62.731-23.427 62.591L-23.427 60.742Q-23.427 60.472-23.535 60.411Q-23.643 60.349-23.954 60.349L-23.954 60.069L-22.894 59.994L-22.894 60.643Q-22.723 60.335-22.419 60.164Q-22.115 59.994-21.770 59.994Q-21.370 59.994-21.093 60.134Q-20.816 60.274-20.730 60.622Q-20.563 60.329-20.264 60.161Q-19.965 59.994-19.620 59.994Q-19.114 59.994-18.830 60.217Q-18.546 60.441-18.546 60.937L-18.546 62.591Q-18.546 62.728-18.398 62.764Q-18.249 62.800-18.023 62.800L-18.023 63.080L-19.654 63.080L-19.654 62.800Q-19.428 62.800-19.278 62.764Q-19.127 62.728-19.127 62.591L-19.127 60.951Q-19.127 60.616-19.247 60.416Q-19.367 60.216-19.681 60.216Q-19.951 60.216-20.185 60.352Q-20.419 60.489-20.558 60.723Q-20.696 60.957-20.696 61.231L-20.696 62.591Q-20.696 62.728-20.548 62.764Q-20.399 62.800-20.173 62.800L-20.173 63.080L-21.804 63.080L-21.804 62.800Q-21.575 62.800-21.426 62.766Q-21.277 62.731-21.277 62.591L-21.277 60.951Q-21.277 60.616-21.397 60.416Q-21.517 60.216-21.831 60.216Q-22.101 60.216-22.335 60.352Q-22.569 60.489-22.708 60.723Q-22.846 60.957-22.846 61.231L-22.846 62.591Q-22.846 62.728-22.696 62.764Q-22.545 62.800-22.320 62.800L-22.320 63.080M-15.819 63.080L-17.371 63.080L-17.371 62.800Q-17.145 62.800-16.996 62.766Q-16.848 62.731-16.848 62.591L-16.848 60.742Q-16.848 60.554-16.896 60.470Q-16.943 60.387-17.041 60.368Q-17.138 60.349-17.350 60.349L-17.350 60.069L-16.294 59.994L-16.294 62.591Q-16.294 62.731-16.162 62.766Q-16.031 62.800-15.819 62.800L-15.819 63.080M-17.090 58.773Q-17.090 58.602-16.967 58.483Q-16.844 58.363-16.673 58.363Q-16.506 58.363-16.383 58.483Q-16.260 58.602-16.260 58.773Q-16.260 58.948-16.383 59.071Q-16.506 59.194-16.673 59.194Q-16.844 59.194-16.967 59.071Q-17.090 58.948-17.090 58.773M-13.491 63.080L-15.125 63.080L-15.125 62.800Q-14.896 62.800-14.747 62.766Q-14.599 62.731-14.599 62.591L-14.599 60.742Q-14.599 60.472-14.706 60.411Q-14.814 60.349-15.125 60.349L-15.125 60.069L-14.065 59.994L-14.065 60.643Q-13.895 60.335-13.590 60.164Q-13.286 59.994-12.941 59.994Q-12.435 59.994-12.151 60.217Q-11.868 60.441-11.868 60.937L-11.868 62.591Q-11.868 62.728-11.719 62.764Q-11.570 62.800-11.345 62.800L-11.345 63.080L-12.975 63.080L-12.975 62.800Q-12.746 62.800-12.597 62.766Q-12.449 62.731-12.449 62.591L-12.449 60.951Q-12.449 60.616-12.568 60.416Q-12.688 60.216-13.002 60.216Q-13.272 60.216-13.507 60.352Q-13.741 60.489-13.879 60.723Q-14.018 60.957-14.018 61.231L-14.018 62.591Q-14.018 62.728-13.867 62.764Q-13.717 62.800-13.491 62.800L-13.491 63.080M-10.699 62.352Q-10.699 62.020-10.475 61.793Q-10.251 61.566-9.907 61.438Q-9.564 61.309-9.191 61.257Q-8.819 61.204-8.515 61.204L-8.515 60.951Q-8.515 60.746-8.622 60.566Q-8.730 60.387-8.911 60.284Q-9.092 60.182-9.301 60.182Q-9.708 60.182-9.943 60.274Q-9.855 60.311-9.808 60.395Q-9.762 60.479-9.762 60.581Q-9.762 60.677-9.808 60.756Q-9.855 60.834-9.935 60.879Q-10.015 60.923-10.104 60.923Q-10.254 60.923-10.355 60.826Q-10.456 60.728-10.456 60.581Q-10.456 59.959-9.301 59.959Q-9.089 59.959-8.839 60.023Q-8.590 60.086-8.388 60.205Q-8.187 60.325-8.060 60.510Q-7.934 60.694-7.934 60.937L-7.934 62.513Q-7.934 62.629-7.872 62.725Q-7.811 62.820-7.698 62.820Q-7.588 62.820-7.523 62.726Q-7.459 62.632-7.459 62.513L-7.459 62.065L-7.192 62.065L-7.192 62.513Q-7.192 62.783-7.419 62.948Q-7.647 63.114-7.927 63.114Q-8.135 63.114-8.272 62.960Q-8.409 62.807-8.433 62.591Q-8.580 62.858-8.862 63.003Q-9.144 63.148-9.468 63.148Q-9.745 63.148-10.029 63.073Q-10.313 62.998-10.506 62.819Q-10.699 62.639-10.699 62.352M-10.084 62.352Q-10.084 62.526-9.983 62.656Q-9.882 62.786-9.726 62.856Q-9.571 62.926-9.407 62.926Q-9.188 62.926-8.980 62.829Q-8.771 62.731-8.643 62.550Q-8.515 62.369-8.515 62.143L-8.515 61.415Q-8.839 61.415-9.205 61.506Q-9.571 61.597-9.827 61.809Q-10.084 62.020-10.084 62.352M-5.107 63.080L-6.710 63.080L-6.710 62.800Q-6.484 62.800-6.336 62.766Q-6.187 62.731-6.187 62.591L-6.187 58.972Q-6.187 58.702-6.295 58.640Q-6.402 58.579-6.710 58.579L-6.710 58.298L-5.633 58.223L-5.633 62.591Q-5.633 62.728-5.483 62.764Q-5.333 62.800-5.107 62.800\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M272.473-30.814a7.824 7.824 0 1 0-15.649 0 7.824 7.824 0 0 0 15.649 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M282.432 31.782a7.824 7.824 0 1 0-15.65 0 7.824 7.824 0 0 0 15.65 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M292.39 60.235a7.824 7.824 0 1 0-15.65 0 7.824 7.824 0 0 0 15.65 0Zm-7.825 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M278.875 105.76h11.38V94.378h-11.38Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M284.565 94.178V70.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m284.565 68.26-2.08 4.16 2.08-1.56 2.08 1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"m281.915 52.661-3.798-10.851\"\u002F>\u003Cpath stroke=\"none\" d=\"m277.258 39.356-.59 4.613 1.449-2.16 2.478.786\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"m273.346 23.857-7.029-44.179\"\u002F>\u003Cpath stroke=\"none\" d=\"m265.909-22.89-1.4 4.436 1.808-1.868 2.3 1.214\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\">\u003Cg transform=\"translate(329.317 -46.217)\">\u003Cpath d=\"M-32.041 63.080L-33.777 63.080L-33.777 62.800Q-33.548 62.800-33.399 62.766Q-33.251 62.731-33.251 62.591L-33.251 60.742Q-33.251 60.472-33.358 60.411Q-33.466 60.349-33.777 60.349L-33.777 60.069L-32.748 59.994L-32.748 60.701Q-32.618 60.393-32.376 60.194Q-32.133 59.994-31.815 59.994Q-31.596 59.994-31.425 60.118Q-31.254 60.243-31.254 60.455Q-31.254 60.592-31.354 60.691Q-31.453 60.790-31.586 60.790Q-31.723 60.790-31.822 60.691Q-31.921 60.592-31.921 60.455Q-31.921 60.315-31.822 60.216Q-32.112 60.216-32.312 60.412Q-32.512 60.609-32.605 60.903Q-32.697 61.197-32.697 61.477L-32.697 62.591Q-32.697 62.800-32.041 62.800L-32.041 63.080M-30.711 61.545Q-30.711 61.224-30.586 60.935Q-30.461 60.646-30.236 60.423Q-30.010 60.199-29.715 60.079Q-29.419 59.959-29.101 59.959Q-28.773 59.959-28.511 60.059Q-28.250 60.158-28.074 60.340Q-27.898 60.523-27.804 60.781Q-27.710 61.039-27.710 61.371Q-27.710 61.463-27.792 61.484L-30.048 61.484L-30.048 61.545Q-30.048 62.133-29.764 62.516Q-29.480 62.899-28.913 62.899Q-28.592 62.899-28.324 62.706Q-28.055 62.513-27.966 62.198Q-27.959 62.157-27.884 62.143L-27.792 62.143Q-27.710 62.167-27.710 62.239Q-27.710 62.246-27.717 62.273Q-27.830 62.670-28.200 62.909Q-28.571 63.148-28.995 63.148Q-29.433 63.148-29.833 62.940Q-30.232 62.731-30.472 62.364Q-30.711 61.997-30.711 61.545M-30.041 61.275L-28.226 61.275Q-28.226 60.998-28.324 60.746Q-28.421 60.493-28.619 60.337Q-28.817 60.182-29.101 60.182Q-29.378 60.182-29.592 60.340Q-29.805 60.499-29.923 60.754Q-30.041 61.009-30.041 61.275M-26.596 62.239L-26.596 60.342L-27.235 60.342L-27.235 60.120Q-26.917 60.120-26.700 59.910Q-26.483 59.700-26.382 59.390Q-26.281 59.081-26.281 58.773L-26.015 58.773L-26.015 60.062L-24.938 60.062L-24.938 60.342L-26.015 60.342L-26.015 62.226Q-26.015 62.502-25.910 62.701Q-25.806 62.899-25.546 62.899Q-25.389 62.899-25.283 62.795Q-25.177 62.690-25.128 62.537Q-25.078 62.383-25.078 62.226L-25.078 61.812L-24.812 61.812L-24.812 62.239Q-24.812 62.465-24.911 62.675Q-25.010 62.885-25.194 63.017Q-25.379 63.148-25.608 63.148Q-26.045 63.148-26.321 62.911Q-26.596 62.673-26.596 62.239M-23.427 62.246L-23.427 60.742Q-23.427 60.472-23.535 60.411Q-23.643 60.349-23.954 60.349L-23.954 60.069L-22.846 59.994L-22.846 62.226L-22.846 62.246Q-22.846 62.526-22.795 62.670Q-22.744 62.813-22.602 62.870Q-22.460 62.926-22.173 62.926Q-21.920 62.926-21.715 62.786Q-21.510 62.646-21.394 62.420Q-21.277 62.195-21.277 61.945L-21.277 60.742Q-21.277 60.472-21.385 60.411Q-21.493 60.349-21.804 60.349L-21.804 60.069L-20.696 59.994L-20.696 62.407Q-20.696 62.598-20.643 62.680Q-20.590 62.762-20.490 62.781Q-20.389 62.800-20.173 62.800L-20.173 63.080L-21.250 63.148L-21.250 62.584Q-21.359 62.766-21.505 62.889Q-21.650 63.012-21.836 63.080Q-22.022 63.148-22.224 63.148Q-23.427 63.148-23.427 62.246M-17.835 63.080L-19.572 63.080L-19.572 62.800Q-19.343 62.800-19.194 62.766Q-19.045 62.731-19.045 62.591L-19.045 60.742Q-19.045 60.472-19.153 60.411Q-19.261 60.349-19.572 60.349L-19.572 60.069L-18.543 59.994L-18.543 60.701Q-18.413 60.393-18.170 60.194Q-17.928 59.994-17.610 59.994Q-17.391 59.994-17.220 60.118Q-17.049 60.243-17.049 60.455Q-17.049 60.592-17.148 60.691Q-17.248 60.790-17.381 60.790Q-17.518 60.790-17.617 60.691Q-17.716 60.592-17.716 60.455Q-17.716 60.315-17.617 60.216Q-17.907 60.216-18.107 60.412Q-18.307 60.609-18.399 60.903Q-18.492 61.197-18.492 61.477L-18.492 62.591Q-18.492 62.800-17.835 62.800L-17.835 63.080M-14.783 63.080L-16.417 63.080L-16.417 62.800Q-16.188 62.800-16.039 62.766Q-15.891 62.731-15.891 62.591L-15.891 60.742Q-15.891 60.472-15.998 60.411Q-16.106 60.349-16.417 60.349L-16.417 60.069L-15.357 59.994L-15.357 60.643Q-15.187 60.335-14.882 60.164Q-14.578 59.994-14.233 59.994Q-13.727 59.994-13.443 60.217Q-13.160 60.441-13.160 60.937L-13.160 62.591Q-13.160 62.728-13.011 62.764Q-12.862 62.800-12.637 62.800L-12.637 63.080L-14.267 63.080L-14.267 62.800Q-14.038 62.800-13.889 62.766Q-13.741 62.731-13.741 62.591L-13.741 60.951Q-13.741 60.616-13.860 60.416Q-13.980 60.216-14.294 60.216Q-14.564 60.216-14.799 60.352Q-15.033 60.489-15.171 60.723Q-15.310 60.957-15.310 61.231L-15.310 62.591Q-15.310 62.728-15.159 62.764Q-15.009 62.800-14.783 62.800\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">One MCTS iteration. Selection descends the tree by the tree policy to a leaf; expansion adds a child; simulation rolls out to a terminal state under the rollout policy; backup carries the return up the traversed tree edges. Iterations repeat until the move-time budget is spent.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:404.634px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 303.476 126.364\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-38.753 -60.438)\">\u003Cpath d=\"M-26.514-2.219Q-26.514-2.703-26.112-2.998Q-25.709-3.293-25.159-3.412Q-24.608-3.532-24.116-3.532L-24.116-3.821Q-24.116-4.047-24.231-4.254Q-24.346-4.461-24.543-4.580Q-24.741-4.700-24.971-4.700Q-25.397-4.700-25.682-4.594Q-25.612-4.567-25.565-4.512Q-25.518-4.457-25.493-4.387Q-25.467-4.317-25.467-4.242Q-25.467-4.137-25.518-4.045Q-25.569-3.953-25.661-3.903Q-25.752-3.852-25.858-3.852Q-25.963-3.852-26.055-3.903Q-26.147-3.953-26.198-4.045Q-26.248-4.137-26.248-4.242Q-26.248-4.660-25.860-4.807Q-25.471-4.953-24.971-4.953Q-24.639-4.953-24.286-4.823Q-23.932-4.692-23.704-4.438Q-23.475-4.184-23.475-3.836L-23.475-2.035Q-23.475-1.903-23.403-1.793Q-23.330-1.684-23.202-1.684Q-23.077-1.684-23.008-1.789Q-22.940-1.895-22.940-2.035L-22.940-2.547L-22.659-2.547L-22.659-2.035Q-22.659-1.832-22.776-1.674Q-22.893-1.516-23.075-1.432Q-23.256-1.348-23.459-1.348Q-23.690-1.348-23.842-1.520Q-23.995-1.692-24.026-1.922Q-24.186-1.641-24.495-1.475Q-24.803-1.309-25.155-1.309Q-25.666-1.309-26.090-1.532Q-26.514-1.754-26.514-2.219M-25.827-2.219Q-25.827-1.934-25.600-1.748Q-25.373-1.563-25.080-1.563Q-24.834-1.563-24.610-1.680Q-24.385-1.797-24.250-2Q-24.116-2.203-24.116-2.457L-24.116-3.289Q-24.381-3.289-24.666-3.235Q-24.952-3.180-25.223-3.051Q-25.495-2.922-25.661-2.715Q-25.827-2.508-25.827-2.219M-20.299-1.387L-22.284-1.387L-22.284-1.684Q-22.010-1.684-21.842-1.731Q-21.674-1.778-21.674-1.946L-21.674-4.539L-22.315-4.539L-22.315-4.836L-21.674-4.836L-21.674-5.770Q-21.674-6.035-21.557-6.272Q-21.440-6.508-21.246-6.672Q-21.053-6.836-20.805-6.928Q-20.557-7.020-20.291-7.020Q-20.006-7.020-19.782-6.862Q-19.557-6.703-19.557-6.426Q-19.557-6.270-19.663-6.160Q-19.768-6.051-19.932-6.051Q-20.088-6.051-20.198-6.160Q-20.307-6.270-20.307-6.426Q-20.307-6.633-20.147-6.739Q-20.245-6.762-20.338-6.762Q-20.569-6.762-20.741-6.606Q-20.913-6.450-20.998-6.213Q-21.084-5.977-21.084-5.754L-21.084-4.836L-20.116-4.836L-20.116-4.539L-21.061-4.539L-21.061-1.946Q-21.061-1.778-20.834-1.731Q-20.608-1.684-20.299-1.684L-20.299-1.387M-19.147-2.348L-19.147-4.539L-19.850-4.539L-19.850-4.793Q-19.495-4.793-19.252-5.026Q-19.010-5.258-18.899-5.606Q-18.788-5.953-18.788-6.309L-18.506-6.309L-18.506-4.836L-17.330-4.836L-17.330-4.539L-18.506-4.539L-18.506-2.364Q-18.506-2.043-18.387-1.815Q-18.268-1.586-17.987-1.586Q-17.807-1.586-17.690-1.709Q-17.573-1.832-17.520-2.012Q-17.467-2.192-17.467-2.364L-17.467-2.836L-17.186-2.836L-17.186-2.348Q-17.186-2.094-17.291-1.854Q-17.397-1.614-17.594-1.461Q-17.791-1.309-18.049-1.309Q-18.366-1.309-18.618-1.432Q-18.870-1.555-19.008-1.789Q-19.147-2.024-19.147-2.348M-16.467-3.141Q-16.467-3.621-16.235-4.037Q-16.002-4.453-15.592-4.703Q-15.182-4.953-14.705-4.953Q-13.975-4.953-13.577-4.512Q-13.178-4.071-13.178-3.340Q-13.178-3.235-13.272-3.211L-15.721-3.211L-15.721-3.141Q-15.721-2.731-15.600-2.375Q-15.479-2.020-15.207-1.803Q-14.936-1.586-14.506-1.586Q-14.143-1.586-13.846-1.815Q-13.549-2.043-13.448-2.395Q-13.440-2.442-13.354-2.457L-13.272-2.457Q-13.178-2.430-13.178-2.348Q-13.178-2.340-13.186-2.309Q-13.248-2.082-13.387-1.899Q-13.526-1.715-13.717-1.582Q-13.909-1.449-14.127-1.379Q-14.346-1.309-14.584-1.309Q-14.955-1.309-15.293-1.446Q-15.631-1.582-15.899-1.834Q-16.166-2.086-16.317-2.426Q-16.467-2.766-16.467-3.141M-15.713-3.449L-13.752-3.449Q-13.752-3.754-13.854-4.045Q-13.955-4.336-14.172-4.518Q-14.389-4.700-14.705-4.700Q-15.006-4.700-15.237-4.512Q-15.467-4.325-15.590-4.033Q-15.713-3.742-15.713-3.449M-10.682-1.387L-12.663-1.387L-12.663-1.684Q-12.393-1.684-12.225-1.729Q-12.057-1.774-12.057-1.946L-12.057-4.082Q-12.057-4.297-12.120-4.393Q-12.182-4.489-12.299-4.510Q-12.416-4.532-12.663-4.532L-12.663-4.828L-11.495-4.914L-11.495-4.129Q-11.416-4.340-11.264-4.526Q-11.112-4.711-10.913-4.813Q-10.713-4.914-10.487-4.914Q-10.241-4.914-10.049-4.770Q-9.858-4.625-9.858-4.395Q-9.858-4.239-9.963-4.129Q-10.069-4.020-10.225-4.020Q-10.381-4.020-10.491-4.129Q-10.600-4.239-10.600-4.395Q-10.600-4.555-10.495-4.660Q-10.819-4.660-11.034-4.432Q-11.248-4.203-11.344-3.864Q-11.440-3.524-11.440-3.219L-11.440-1.946Q-11.440-1.778-11.213-1.731Q-10.987-1.684-10.682-1.684\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.753 -60.438)\">\u003Cpath d=\"M-6.438-2.219Q-6.438-2.703-6.036-2.998Q-5.633-3.293-5.083-3.412Q-4.532-3.532-4.040-3.532L-4.040-3.821Q-4.040-4.047-4.155-4.254Q-4.270-4.461-4.467-4.580Q-4.665-4.700-4.895-4.700Q-5.321-4.700-5.606-4.594Q-5.536-4.567-5.489-4.512Q-5.442-4.457-5.417-4.387Q-5.391-4.317-5.391-4.242Q-5.391-4.137-5.442-4.045Q-5.493-3.953-5.585-3.903Q-5.676-3.852-5.782-3.852Q-5.887-3.852-5.979-3.903Q-6.071-3.953-6.122-4.045Q-6.172-4.137-6.172-4.242Q-6.172-4.660-5.784-4.807Q-5.395-4.953-4.895-4.953Q-4.563-4.953-4.210-4.823Q-3.856-4.692-3.628-4.438Q-3.399-4.184-3.399-3.836L-3.399-2.035Q-3.399-1.903-3.327-1.793Q-3.254-1.684-3.126-1.684Q-3.001-1.684-2.932-1.789Q-2.864-1.895-2.864-2.035L-2.864-2.547L-2.583-2.547L-2.583-2.035Q-2.583-1.832-2.700-1.674Q-2.817-1.516-2.999-1.432Q-3.180-1.348-3.383-1.348Q-3.614-1.348-3.766-1.520Q-3.919-1.692-3.950-1.922Q-4.110-1.641-4.419-1.475Q-4.727-1.309-5.079-1.309Q-5.590-1.309-6.014-1.532Q-6.438-1.754-6.438-2.219M-5.751-2.219Q-5.751-1.934-5.524-1.748Q-5.297-1.563-5.004-1.563Q-4.758-1.563-4.534-1.680Q-4.309-1.797-4.174-2Q-4.040-2.203-4.040-2.457L-4.040-3.289Q-4.305-3.289-4.590-3.235Q-4.876-3.180-5.147-3.051Q-5.419-2.922-5.585-2.715Q-5.751-2.508-5.751-2.219\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.753 -60.438)\">\u003Cpath d=\"M2.615-1.387L0.630-1.387L0.630-1.684Q0.904-1.684 1.072-1.731Q1.240-1.778 1.240-1.946L1.240-4.539L0.599-4.539L0.599-4.836L1.240-4.836L1.240-5.770Q1.240-6.035 1.357-6.272Q1.474-6.508 1.667-6.672Q1.861-6.836 2.109-6.928Q2.357-7.020 2.623-7.020Q2.908-7.020 3.132-6.862Q3.357-6.703 3.357-6.426Q3.357-6.270 3.251-6.160Q3.146-6.051 2.982-6.051Q2.826-6.051 2.716-6.160Q2.607-6.270 2.607-6.426Q2.607-6.633 2.767-6.739Q2.669-6.762 2.576-6.762Q2.345-6.762 2.173-6.606Q2.001-6.450 1.915-6.213Q1.830-5.977 1.830-5.754L1.830-4.836L2.798-4.836L2.798-4.539L1.853-4.539L1.853-1.946Q1.853-1.778 2.080-1.731Q2.306-1.684 2.615-1.684L2.615-1.387M3.142-3.141Q3.142-3.621 3.374-4.037Q3.607-4.453 4.017-4.703Q4.427-4.953 4.904-4.953Q5.634-4.953 6.033-4.512Q6.431-4.071 6.431-3.340Q6.431-3.235 6.337-3.211L3.888-3.211L3.888-3.141Q3.888-2.731 4.009-2.375Q4.130-2.020 4.402-1.803Q4.673-1.586 5.103-1.586Q5.466-1.586 5.763-1.815Q6.060-2.043 6.162-2.395Q6.169-2.442 6.255-2.457L6.337-2.457Q6.431-2.430 6.431-2.348Q6.431-2.340 6.423-2.309Q6.361-2.082 6.222-1.899Q6.083-1.715 5.892-1.582Q5.701-1.449 5.482-1.379Q5.263-1.309 5.025-1.309Q4.654-1.309 4.316-1.446Q3.978-1.582 3.710-1.834Q3.443-2.086 3.292-2.426Q3.142-2.766 3.142-3.141M3.896-3.449L5.857-3.449Q5.857-3.754 5.755-4.045Q5.654-4.336 5.437-4.518Q5.220-4.700 4.904-4.700Q4.603-4.700 4.373-4.512Q4.142-4.325 4.019-4.033Q3.896-3.742 3.896-3.449M8.505-1.418L7.435-4.274Q7.369-4.453 7.238-4.496Q7.107-4.539 6.849-4.539L6.849-4.836L8.529-4.836L8.529-4.539Q8.080-4.539 8.080-4.340Q8.083-4.325 8.085-4.307Q8.087-4.289 8.087-4.274L8.880-2.180L9.591-4.090Q9.556-4.184 9.556-4.229Q9.556-4.274 9.521-4.274Q9.455-4.453 9.324-4.496Q9.193-4.539 8.939-4.539L8.939-4.836L10.529-4.836L10.529-4.539Q10.080-4.539 10.080-4.340Q10.083-4.321 10.085-4.303Q10.087-4.285 10.087-4.274L10.919-2.059L11.673-4.059Q11.697-4.117 11.697-4.188Q11.697-4.348 11.560-4.444Q11.423-4.539 11.255-4.539L11.255-4.836L12.642-4.836L12.642-4.539Q12.408-4.539 12.230-4.412Q12.052-4.285 11.970-4.059L10.986-1.418Q10.931-1.309 10.818-1.309L10.759-1.309Q10.646-1.309 10.603-1.418L9.744-3.692L8.888-1.418Q8.849-1.309 8.728-1.309L8.673-1.309Q8.560-1.309 8.505-1.418\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.753 -60.438)\">\u003Cpath d=\"M17.755-1.387L15.977-1.387L15.977-1.684Q16.251-1.684 16.419-1.731Q16.587-1.778 16.587-1.946L16.587-4.082Q16.587-4.297 16.530-4.393Q16.473-4.489 16.360-4.510Q16.247-4.532 16.001-4.532L16.001-4.828L17.200-4.914L17.200-1.946Q17.200-1.778 17.346-1.731Q17.493-1.684 17.755-1.684L17.755-1.387M16.313-6.309Q16.313-6.500 16.448-6.631Q16.583-6.762 16.778-6.762Q16.899-6.762 17.003-6.700Q17.106-6.637 17.169-6.533Q17.231-6.430 17.231-6.309Q17.231-6.114 17.100-5.979Q16.970-5.844 16.778-5.844Q16.579-5.844 16.446-5.977Q16.313-6.110 16.313-6.309M18.880-2.348L18.880-4.539L18.177-4.539L18.177-4.793Q18.532-4.793 18.774-5.026Q19.016-5.258 19.128-5.606Q19.239-5.953 19.239-6.309L19.520-6.309L19.520-4.836L20.696-4.836L20.696-4.539L19.520-4.539L19.520-2.364Q19.520-2.043 19.639-1.815Q19.759-1.586 20.040-1.586Q20.220-1.586 20.337-1.709Q20.454-1.832 20.507-2.012Q20.559-2.192 20.559-2.364L20.559-2.836L20.841-2.836L20.841-2.348Q20.841-2.094 20.735-1.854Q20.630-1.614 20.432-1.461Q20.235-1.309 19.977-1.309Q19.661-1.309 19.409-1.432Q19.157-1.555 19.018-1.789Q18.880-2.024 18.880-2.348M21.559-3.141Q21.559-3.621 21.792-4.037Q22.024-4.453 22.434-4.703Q22.845-4.953 23.321-4.953Q24.052-4.953 24.450-4.512Q24.848-4.071 24.848-3.340Q24.848-3.235 24.755-3.211L22.305-3.211L22.305-3.141Q22.305-2.731 22.427-2.375Q22.548-2.020 22.819-1.803Q23.091-1.586 23.520-1.586Q23.884-1.586 24.180-1.815Q24.477-2.043 24.579-2.395Q24.587-2.442 24.673-2.457L24.755-2.457Q24.848-2.430 24.848-2.348Q24.848-2.340 24.841-2.309Q24.778-2.082 24.639-1.899Q24.501-1.715 24.309-1.582Q24.118-1.449 23.899-1.379Q23.680-1.309 23.442-1.309Q23.071-1.309 22.733-1.446Q22.395-1.582 22.128-1.834Q21.860-2.086 21.710-2.426Q21.559-2.766 21.559-3.141M22.313-3.449L24.274-3.449Q24.274-3.754 24.173-4.045Q24.071-4.336 23.854-4.518Q23.637-4.700 23.321-4.700Q23.020-4.700 22.790-4.512Q22.559-4.325 22.436-4.033Q22.313-3.742 22.313-3.449M27.345-1.387L25.364-1.387L25.364-1.684Q25.634-1.684 25.802-1.729Q25.970-1.774 25.970-1.946L25.970-4.082Q25.970-4.297 25.907-4.393Q25.845-4.489 25.727-4.510Q25.610-4.532 25.364-4.532L25.364-4.828L26.532-4.914L26.532-4.129Q26.610-4.340 26.762-4.526Q26.915-4.711 27.114-4.813Q27.313-4.914 27.540-4.914Q27.786-4.914 27.977-4.770Q28.169-4.625 28.169-4.395Q28.169-4.239 28.063-4.129Q27.958-4.020 27.802-4.020Q27.645-4.020 27.536-4.129Q27.427-4.239 27.427-4.395Q27.427-4.555 27.532-4.660Q27.208-4.660 26.993-4.432Q26.778-4.203 26.682-3.864Q26.587-3.524 26.587-3.219L26.587-1.946Q26.587-1.778 26.813-1.731Q27.040-1.684 27.345-1.684L27.345-1.387M28.747-2.219Q28.747-2.703 29.149-2.998Q29.552-3.293 30.102-3.412Q30.653-3.532 31.145-3.532L31.145-3.821Q31.145-4.047 31.030-4.254Q30.915-4.461 30.718-4.580Q30.520-4.700 30.290-4.700Q29.864-4.700 29.579-4.594Q29.649-4.567 29.696-4.512Q29.743-4.457 29.768-4.387Q29.794-4.317 29.794-4.242Q29.794-4.137 29.743-4.045Q29.692-3.953 29.600-3.903Q29.509-3.852 29.403-3.852Q29.298-3.852 29.206-3.903Q29.114-3.953 29.063-4.045Q29.012-4.137 29.012-4.242Q29.012-4.660 29.401-4.807Q29.790-4.953 30.290-4.953Q30.622-4.953 30.975-4.823Q31.329-4.692 31.557-4.438Q31.786-4.184 31.786-3.836L31.786-2.035Q31.786-1.903 31.858-1.793Q31.930-1.684 32.059-1.684Q32.184-1.684 32.253-1.789Q32.321-1.895 32.321-2.035L32.321-2.547L32.602-2.547L32.602-2.035Q32.602-1.832 32.485-1.674Q32.368-1.516 32.186-1.432Q32.005-1.348 31.802-1.348Q31.571-1.348 31.419-1.520Q31.266-1.692 31.235-1.922Q31.075-1.641 30.766-1.475Q30.458-1.309 30.106-1.309Q29.595-1.309 29.171-1.532Q28.747-1.754 28.747-2.219M29.434-2.219Q29.434-1.934 29.661-1.748Q29.887-1.563 30.180-1.563Q30.427-1.563 30.651-1.680Q30.876-1.797 31.011-2Q31.145-2.203 31.145-2.457L31.145-3.289Q30.880-3.289 30.595-3.235Q30.309-3.180 30.038-3.051Q29.766-2.922 29.600-2.715Q29.434-2.508 29.434-2.219M33.520-2.348L33.520-4.539L32.817-4.539L32.817-4.793Q33.173-4.793 33.415-5.026Q33.657-5.258 33.768-5.606Q33.880-5.953 33.880-6.309L34.161-6.309L34.161-4.836L35.337-4.836L35.337-4.539L34.161-4.539L34.161-2.364Q34.161-2.043 34.280-1.815Q34.399-1.586 34.680-1.586Q34.860-1.586 34.977-1.709Q35.094-1.832 35.147-2.012Q35.200-2.192 35.200-2.364L35.200-2.836L35.481-2.836L35.481-2.348Q35.481-2.094 35.376-1.854Q35.270-1.614 35.073-1.461Q34.876-1.309 34.618-1.309Q34.302-1.309 34.050-1.432Q33.798-1.555 33.659-1.789Q33.520-2.024 33.520-2.348M38.059-1.387L36.282-1.387L36.282-1.684Q36.555-1.684 36.723-1.731Q36.891-1.778 36.891-1.946L36.891-4.082Q36.891-4.297 36.835-4.393Q36.778-4.489 36.665-4.510Q36.552-4.532 36.305-4.532L36.305-4.828L37.505-4.914L37.505-1.946Q37.505-1.778 37.651-1.731Q37.798-1.684 38.059-1.684L38.059-1.387M36.618-6.309Q36.618-6.500 36.753-6.631Q36.887-6.762 37.083-6.762Q37.204-6.762 37.307-6.700Q37.411-6.637 37.473-6.533Q37.536-6.430 37.536-6.309Q37.536-6.114 37.405-5.979Q37.274-5.844 37.083-5.844Q36.884-5.844 36.751-5.977Q36.618-6.110 36.618-6.309M38.559-3.082Q38.559-3.586 38.815-4.018Q39.071-4.450 39.507-4.701Q39.942-4.953 40.442-4.953Q40.829-4.953 41.171-4.809Q41.512-4.664 41.774-4.403Q42.036-4.141 42.178-3.805Q42.321-3.469 42.321-3.082Q42.321-2.590 42.057-2.180Q41.794-1.770 41.364-1.539Q40.934-1.309 40.442-1.309Q39.950-1.309 39.516-1.541Q39.083-1.774 38.821-2.182Q38.559-2.590 38.559-3.082M40.442-1.586Q40.899-1.586 41.151-1.809Q41.403-2.032 41.491-2.383Q41.579-2.735 41.579-3.180Q41.579-3.610 41.485-3.948Q41.391-4.285 41.137-4.492Q40.884-4.700 40.442-4.700Q39.794-4.700 39.550-4.283Q39.305-3.867 39.305-3.180Q39.305-2.735 39.393-2.383Q39.481-2.032 39.733-1.809Q39.985-1.586 40.442-1.586M44.735-1.387L42.880-1.387L42.880-1.684Q43.153-1.684 43.321-1.731Q43.489-1.778 43.489-1.946L43.489-4.082Q43.489-4.297 43.427-4.393Q43.364-4.489 43.245-4.510Q43.126-4.532 42.880-4.532L42.880-4.828L44.071-4.914L44.071-4.180Q44.184-4.395 44.378-4.563Q44.571-4.731 44.809-4.823Q45.048-4.914 45.302-4.914Q46.469-4.914 46.469-3.836L46.469-1.946Q46.469-1.778 46.639-1.731Q46.809-1.684 47.079-1.684L47.079-1.387L45.223-1.387L45.223-1.684Q45.497-1.684 45.665-1.731Q45.833-1.778 45.833-1.946L45.833-3.821Q45.833-4.203 45.712-4.432Q45.591-4.660 45.239-4.660Q44.927-4.660 44.673-4.498Q44.419-4.336 44.272-4.067Q44.126-3.797 44.126-3.500L44.126-1.946Q44.126-1.778 44.296-1.731Q44.466-1.684 44.735-1.684L44.735-1.387M47.567-1.395L47.567-2.617Q47.567-2.645 47.598-2.676Q47.630-2.707 47.653-2.707L47.759-2.707Q47.829-2.707 47.844-2.645Q47.907-2.324 48.046-2.084Q48.184-1.844 48.417-1.703Q48.649-1.563 48.958-1.563Q49.196-1.563 49.405-1.623Q49.614-1.684 49.751-1.832Q49.887-1.981 49.887-2.227Q49.887-2.481 49.677-2.647Q49.466-2.813 49.196-2.867L48.575-2.981Q48.169-3.059 47.868-3.315Q47.567-3.571 47.567-3.946Q47.567-4.313 47.768-4.535Q47.969-4.758 48.294-4.856Q48.618-4.953 48.958-4.953Q49.423-4.953 49.719-4.746L49.942-4.930Q49.966-4.953 49.997-4.953L50.048-4.953Q50.079-4.953 50.106-4.926Q50.134-4.899 50.134-4.867L50.134-3.883Q50.134-3.852 50.108-3.823Q50.083-3.793 50.048-3.793L49.942-3.793Q49.907-3.793 49.880-3.821Q49.852-3.848 49.852-3.883Q49.852-4.282 49.600-4.502Q49.348-4.723 48.950-4.723Q48.594-4.723 48.311-4.600Q48.028-4.477 48.028-4.172Q48.028-3.953 48.229-3.821Q48.430-3.688 48.677-3.645L49.302-3.532Q49.731-3.442 50.040-3.145Q50.348-2.848 50.348-2.434Q50.348-1.864 49.950-1.586Q49.552-1.309 48.958-1.309Q48.407-1.309 48.055-1.645L47.759-1.332Q47.735-1.309 47.700-1.309L47.653-1.309Q47.630-1.309 47.598-1.340Q47.567-1.371 47.567-1.395\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-20.449-41.221a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.401 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-48.901-12.768a6.402 6.402 0 1 0-12.804 0 6.402 6.402 0 0 0 12.804 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M-20.449-12.768a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.401 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M8.004-12.768a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m-31.519-36.553-19.116 19.116M-26.85-34.62v15.25M-22.182-36.553l19.116 19.116\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(120.228 -61.994)\">\u003Cpath d=\"M-26.514-2.219Q-26.514-2.703-26.112-2.998Q-25.709-3.293-25.159-3.412Q-24.608-3.532-24.116-3.532L-24.116-3.821Q-24.116-4.047-24.231-4.254Q-24.346-4.461-24.543-4.580Q-24.741-4.700-24.971-4.700Q-25.397-4.700-25.682-4.594Q-25.612-4.567-25.565-4.512Q-25.518-4.457-25.493-4.387Q-25.467-4.317-25.467-4.242Q-25.467-4.137-25.518-4.045Q-25.569-3.953-25.661-3.903Q-25.752-3.852-25.858-3.852Q-25.963-3.852-26.055-3.903Q-26.147-3.953-26.198-4.045Q-26.248-4.137-26.248-4.242Q-26.248-4.660-25.860-4.807Q-25.471-4.953-24.971-4.953Q-24.639-4.953-24.286-4.823Q-23.932-4.692-23.704-4.438Q-23.475-4.184-23.475-3.836L-23.475-2.035Q-23.475-1.903-23.403-1.793Q-23.330-1.684-23.202-1.684Q-23.077-1.684-23.008-1.789Q-22.940-1.895-22.940-2.035L-22.940-2.547L-22.659-2.547L-22.659-2.035Q-22.659-1.832-22.776-1.674Q-22.893-1.516-23.075-1.432Q-23.256-1.348-23.459-1.348Q-23.690-1.348-23.842-1.520Q-23.995-1.692-24.026-1.922Q-24.186-1.641-24.495-1.475Q-24.803-1.309-25.155-1.309Q-25.666-1.309-26.090-1.532Q-26.514-1.754-26.514-2.219M-25.827-2.219Q-25.827-1.934-25.600-1.748Q-25.373-1.563-25.080-1.563Q-24.834-1.563-24.610-1.680Q-24.385-1.797-24.250-2Q-24.116-2.203-24.116-2.457L-24.116-3.289Q-24.381-3.289-24.666-3.235Q-24.952-3.180-25.223-3.051Q-25.495-2.922-25.661-2.715Q-25.827-2.508-25.827-2.219M-20.299-1.387L-22.284-1.387L-22.284-1.684Q-22.010-1.684-21.842-1.731Q-21.674-1.778-21.674-1.946L-21.674-4.539L-22.315-4.539L-22.315-4.836L-21.674-4.836L-21.674-5.770Q-21.674-6.035-21.557-6.272Q-21.440-6.508-21.246-6.672Q-21.053-6.836-20.805-6.928Q-20.557-7.020-20.291-7.020Q-20.006-7.020-19.782-6.862Q-19.557-6.703-19.557-6.426Q-19.557-6.270-19.663-6.160Q-19.768-6.051-19.932-6.051Q-20.088-6.051-20.198-6.160Q-20.307-6.270-20.307-6.426Q-20.307-6.633-20.147-6.739Q-20.245-6.762-20.338-6.762Q-20.569-6.762-20.741-6.606Q-20.913-6.450-20.998-6.213Q-21.084-5.977-21.084-5.754L-21.084-4.836L-20.116-4.836L-20.116-4.539L-21.061-4.539L-21.061-1.946Q-21.061-1.778-20.834-1.731Q-20.608-1.684-20.299-1.684L-20.299-1.387M-19.147-2.348L-19.147-4.539L-19.850-4.539L-19.850-4.793Q-19.495-4.793-19.252-5.026Q-19.010-5.258-18.899-5.606Q-18.788-5.953-18.788-6.309L-18.506-6.309L-18.506-4.836L-17.330-4.836L-17.330-4.539L-18.506-4.539L-18.506-2.364Q-18.506-2.043-18.387-1.815Q-18.268-1.586-17.987-1.586Q-17.807-1.586-17.690-1.709Q-17.573-1.832-17.520-2.012Q-17.467-2.192-17.467-2.364L-17.467-2.836L-17.186-2.836L-17.186-2.348Q-17.186-2.094-17.291-1.854Q-17.397-1.614-17.594-1.461Q-17.791-1.309-18.049-1.309Q-18.366-1.309-18.618-1.432Q-18.870-1.555-19.008-1.789Q-19.147-2.024-19.147-2.348M-16.467-3.141Q-16.467-3.621-16.235-4.037Q-16.002-4.453-15.592-4.703Q-15.182-4.953-14.705-4.953Q-13.975-4.953-13.577-4.512Q-13.178-4.071-13.178-3.340Q-13.178-3.235-13.272-3.211L-15.721-3.211L-15.721-3.141Q-15.721-2.731-15.600-2.375Q-15.479-2.020-15.207-1.803Q-14.936-1.586-14.506-1.586Q-14.143-1.586-13.846-1.815Q-13.549-2.043-13.448-2.395Q-13.440-2.442-13.354-2.457L-13.272-2.457Q-13.178-2.430-13.178-2.348Q-13.178-2.340-13.186-2.309Q-13.248-2.082-13.387-1.899Q-13.526-1.715-13.717-1.582Q-13.909-1.449-14.127-1.379Q-14.346-1.309-14.584-1.309Q-14.955-1.309-15.293-1.446Q-15.631-1.582-15.899-1.834Q-16.166-2.086-16.317-2.426Q-16.467-2.766-16.467-3.141M-15.713-3.449L-13.752-3.449Q-13.752-3.754-13.854-4.045Q-13.955-4.336-14.172-4.518Q-14.389-4.700-14.705-4.700Q-15.006-4.700-15.237-4.512Q-15.467-4.325-15.590-4.033Q-15.713-3.742-15.713-3.449M-10.682-1.387L-12.663-1.387L-12.663-1.684Q-12.393-1.684-12.225-1.729Q-12.057-1.774-12.057-1.946L-12.057-4.082Q-12.057-4.297-12.120-4.393Q-12.182-4.489-12.299-4.510Q-12.416-4.532-12.663-4.532L-12.663-4.828L-11.495-4.914L-11.495-4.129Q-11.416-4.340-11.264-4.526Q-11.112-4.711-10.913-4.813Q-10.713-4.914-10.487-4.914Q-10.241-4.914-10.049-4.770Q-9.858-4.625-9.858-4.395Q-9.858-4.239-9.963-4.129Q-10.069-4.020-10.225-4.020Q-10.381-4.020-10.491-4.129Q-10.600-4.239-10.600-4.395Q-10.600-4.555-10.495-4.660Q-10.819-4.660-11.034-4.432Q-11.248-4.203-11.344-3.864Q-11.440-3.524-11.440-3.219L-11.440-1.946Q-11.440-1.778-11.213-1.731Q-10.987-1.684-10.682-1.684\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.228 -61.994)\">\u003Cpath d=\"M-4.606-1.387L-6.461-1.387L-6.461-1.684Q-6.188-1.684-6.020-1.731Q-5.852-1.778-5.852-1.946L-5.852-4.082Q-5.852-4.297-5.915-4.393Q-5.977-4.489-6.096-4.510Q-6.215-4.532-6.461-4.532L-6.461-4.828L-5.270-4.914L-5.270-4.180Q-5.157-4.395-4.963-4.563Q-4.770-4.731-4.532-4.823Q-4.294-4.914-4.040-4.914Q-3.079-4.914-2.903-4.203Q-2.719-4.532-2.391-4.723Q-2.063-4.914-1.684-4.914Q-0.508-4.914-0.508-3.836L-0.508-1.946Q-0.508-1.778-0.340-1.731Q-0.172-1.684 0.097-1.684L0.097-1.387L-1.758-1.387L-1.758-1.684Q-1.485-1.684-1.317-1.729Q-1.149-1.774-1.149-1.946L-1.149-3.821Q-1.149-4.207-1.274-4.434Q-1.399-4.660-1.751-4.660Q-2.055-4.660-2.311-4.498Q-2.567-4.336-2.715-4.067Q-2.864-3.797-2.864-3.500L-2.864-1.946Q-2.864-1.778-2.694-1.731Q-2.524-1.684-2.254-1.684L-2.254-1.387L-4.110-1.387L-4.110-1.684Q-3.837-1.684-3.669-1.731Q-3.501-1.778-3.501-1.946L-3.501-3.821Q-3.501-4.207-3.626-4.434Q-3.751-4.660-4.102-4.660Q-4.407-4.660-4.663-4.498Q-4.919-4.336-5.067-4.067Q-5.215-3.797-5.215-3.500L-5.215-1.946Q-5.215-1.778-5.045-1.731Q-4.876-1.684-4.606-1.684L-4.606-1.387M0.640-2.219Q0.640-2.703 1.042-2.998Q1.445-3.293 1.996-3.412Q2.546-3.532 3.038-3.532L3.038-3.821Q3.038-4.047 2.923-4.254Q2.808-4.461 2.611-4.580Q2.414-4.700 2.183-4.700Q1.757-4.700 1.472-4.594Q1.542-4.567 1.589-4.512Q1.636-4.457 1.662-4.387Q1.687-4.317 1.687-4.242Q1.687-4.137 1.636-4.045Q1.585-3.953 1.494-3.903Q1.402-3.852 1.296-3.852Q1.191-3.852 1.099-3.903Q1.007-3.953 0.956-4.045Q0.906-4.137 0.906-4.242Q0.906-4.660 1.294-4.807Q1.683-4.953 2.183-4.953Q2.515-4.953 2.869-4.823Q3.222-4.692 3.451-4.438Q3.679-4.184 3.679-3.836L3.679-2.035Q3.679-1.903 3.751-1.793Q3.824-1.684 3.953-1.684Q4.078-1.684 4.146-1.789Q4.214-1.895 4.214-2.035L4.214-2.547L4.496-2.547L4.496-2.035Q4.496-1.832 4.378-1.674Q4.261-1.516 4.080-1.432Q3.898-1.348 3.695-1.348Q3.464-1.348 3.312-1.520Q3.160-1.692 3.128-1.922Q2.968-1.641 2.660-1.475Q2.351-1.309 1.999-1.309Q1.488-1.309 1.064-1.532Q0.640-1.754 0.640-2.219M1.328-2.219Q1.328-1.934 1.554-1.748Q1.781-1.563 2.074-1.563Q2.320-1.563 2.544-1.680Q2.769-1.797 2.904-2Q3.038-2.203 3.038-2.457L3.038-3.289Q2.773-3.289 2.488-3.235Q2.203-3.180 1.931-3.051Q1.660-2.922 1.494-2.715Q1.328-2.508 1.328-2.219M6.718-1.387L4.863-1.387L4.863-1.684Q5.136-1.684 5.304-1.731Q5.472-1.778 5.472-1.946L5.472-4.082Q5.472-4.297 5.410-4.393Q5.347-4.489 5.228-4.510Q5.109-4.532 4.863-4.532L4.863-4.828L6.054-4.914L6.054-4.180Q6.167-4.395 6.361-4.563Q6.554-4.731 6.792-4.823Q7.031-4.914 7.285-4.914Q8.453-4.914 8.453-3.836L8.453-1.946Q8.453-1.778 8.622-1.731Q8.792-1.684 9.062-1.684L9.062-1.387L7.206-1.387L7.206-1.684Q7.480-1.684 7.648-1.731Q7.816-1.778 7.816-1.946L7.816-3.821Q7.816-4.203 7.695-4.432Q7.574-4.660 7.222-4.660Q6.910-4.660 6.656-4.498Q6.402-4.336 6.255-4.067Q6.109-3.797 6.109-3.500L6.109-1.946Q6.109-1.778 6.279-1.731Q6.449-1.684 6.718-1.684\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.228 -61.994)\">\u003Cpath d=\"M9.702-0.090Q9.816-0.012 9.991-0.012Q10.280-0.012 10.501-0.225Q10.722-0.438 10.847-0.739L11.136-1.387L9.862-4.274Q9.780-4.450 9.636-4.494Q9.491-4.539 9.222-4.539L9.222-4.836L10.941-4.836L10.941-4.539Q10.519-4.539 10.519-4.356Q10.519-4.344 10.534-4.274L11.472-2.149L12.304-4.059Q12.343-4.149 12.343-4.227Q12.343-4.367 12.241-4.453Q12.140-4.539 11.999-4.539L11.999-4.836L13.351-4.836L13.351-4.539Q13.097-4.539 12.903-4.414Q12.710-4.289 12.605-4.059L11.159-0.739Q11.046-0.485 10.880-0.262Q10.714-0.039 10.485 0.103Q10.257 0.246 9.991 0.246Q9.694 0.246 9.454 0.054Q9.214-0.137 9.214-0.426Q9.214-0.582 9.319-0.684Q9.425-0.785 9.573-0.785Q9.679-0.785 9.759-0.739Q9.839-0.692 9.886-0.614Q9.933-0.535 9.933-0.426Q9.933-0.305 9.872-0.217Q9.812-0.129 9.702-0.090\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.228 -61.994)\">\u003Cpath d=\"M18.464-1.387L16.686-1.387L16.686-1.684Q16.960-1.684 17.128-1.731Q17.296-1.778 17.296-1.946L17.296-4.082Q17.296-4.297 17.239-4.393Q17.182-4.489 17.069-4.510Q16.956-4.532 16.710-4.532L16.710-4.828L17.909-4.914L17.909-1.946Q17.909-1.778 18.055-1.731Q18.202-1.684 18.464-1.684L18.464-1.387M17.022-6.309Q17.022-6.500 17.157-6.631Q17.292-6.762 17.487-6.762Q17.608-6.762 17.712-6.700Q17.815-6.637 17.878-6.533Q17.940-6.430 17.940-6.309Q17.940-6.114 17.809-5.979Q17.678-5.844 17.487-5.844Q17.288-5.844 17.155-5.977Q17.022-6.110 17.022-6.309M19.589-2.348L19.589-4.539L18.886-4.539L18.886-4.793Q19.241-4.793 19.483-5.026Q19.725-5.258 19.837-5.606Q19.948-5.953 19.948-6.309L20.229-6.309L20.229-4.836L21.405-4.836L21.405-4.539L20.229-4.539L20.229-2.364Q20.229-2.043 20.348-1.815Q20.468-1.586 20.749-1.586Q20.928-1.586 21.046-1.709Q21.163-1.832 21.216-2.012Q21.268-2.192 21.268-2.364L21.268-2.836L21.550-2.836L21.550-2.348Q21.550-2.094 21.444-1.854Q21.339-1.614 21.141-1.461Q20.944-1.309 20.686-1.309Q20.370-1.309 20.118-1.432Q19.866-1.555 19.727-1.789Q19.589-2.024 19.589-2.348M22.268-3.141Q22.268-3.621 22.501-4.037Q22.733-4.453 23.143-4.703Q23.553-4.953 24.030-4.953Q24.761-4.953 25.159-4.512Q25.557-4.071 25.557-3.340Q25.557-3.235 25.464-3.211L23.014-3.211L23.014-3.141Q23.014-2.731 23.136-2.375Q23.257-2.020 23.528-1.803Q23.800-1.586 24.229-1.586Q24.593-1.586 24.889-1.815Q25.186-2.043 25.288-2.395Q25.296-2.442 25.382-2.457L25.464-2.457Q25.557-2.430 25.557-2.348Q25.557-2.340 25.550-2.309Q25.487-2.082 25.348-1.899Q25.210-1.715 25.018-1.582Q24.827-1.449 24.608-1.379Q24.389-1.309 24.151-1.309Q23.780-1.309 23.442-1.446Q23.104-1.582 22.837-1.834Q22.569-2.086 22.419-2.426Q22.268-2.766 22.268-3.141M23.022-3.449L24.983-3.449Q24.983-3.754 24.882-4.045Q24.780-4.336 24.563-4.518Q24.346-4.700 24.030-4.700Q23.729-4.700 23.499-4.512Q23.268-4.325 23.145-4.033Q23.022-3.742 23.022-3.449M28.053-1.387L26.073-1.387L26.073-1.684Q26.343-1.684 26.511-1.729Q26.678-1.774 26.678-1.946L26.678-4.082Q26.678-4.297 26.616-4.393Q26.553-4.489 26.436-4.510Q26.319-4.532 26.073-4.532L26.073-4.828L27.241-4.914L27.241-4.129Q27.319-4.340 27.471-4.526Q27.624-4.711 27.823-4.813Q28.022-4.914 28.249-4.914Q28.495-4.914 28.686-4.770Q28.878-4.625 28.878-4.395Q28.878-4.239 28.772-4.129Q28.667-4.020 28.511-4.020Q28.354-4.020 28.245-4.129Q28.136-4.239 28.136-4.395Q28.136-4.555 28.241-4.660Q27.917-4.660 27.702-4.432Q27.487-4.203 27.391-3.864Q27.296-3.524 27.296-3.219L27.296-1.946Q27.296-1.778 27.522-1.731Q27.749-1.684 28.053-1.684L28.053-1.387M29.456-2.219Q29.456-2.703 29.858-2.998Q30.261-3.293 30.811-3.412Q31.362-3.532 31.854-3.532L31.854-3.821Q31.854-4.047 31.739-4.254Q31.624-4.461 31.427-4.580Q31.229-4.700 30.999-4.700Q30.573-4.700 30.288-4.594Q30.358-4.567 30.405-4.512Q30.452-4.457 30.477-4.387Q30.503-4.317 30.503-4.242Q30.503-4.137 30.452-4.045Q30.401-3.953 30.309-3.903Q30.218-3.852 30.112-3.852Q30.007-3.852 29.915-3.903Q29.823-3.953 29.772-4.045Q29.721-4.137 29.721-4.242Q29.721-4.660 30.110-4.807Q30.499-4.953 30.999-4.953Q31.331-4.953 31.684-4.823Q32.038-4.692 32.266-4.438Q32.495-4.184 32.495-3.836L32.495-2.035Q32.495-1.903 32.567-1.793Q32.639-1.684 32.768-1.684Q32.893-1.684 32.962-1.789Q33.030-1.895 33.030-2.035L33.030-2.547L33.311-2.547L33.311-2.035Q33.311-1.832 33.194-1.674Q33.077-1.516 32.895-1.432Q32.714-1.348 32.511-1.348Q32.280-1.348 32.128-1.520Q31.975-1.692 31.944-1.922Q31.784-1.641 31.475-1.475Q31.167-1.309 30.815-1.309Q30.303-1.309 29.880-1.532Q29.456-1.754 29.456-2.219M30.143-2.219Q30.143-1.934 30.370-1.748Q30.596-1.563 30.889-1.563Q31.136-1.563 31.360-1.680Q31.585-1.797 31.720-2Q31.854-2.203 31.854-2.457L31.854-3.289Q31.589-3.289 31.303-3.235Q31.018-3.180 30.747-3.051Q30.475-2.922 30.309-2.715Q30.143-2.508 30.143-2.219M34.229-2.348L34.229-4.539L33.526-4.539L33.526-4.793Q33.882-4.793 34.124-5.026Q34.366-5.258 34.477-5.606Q34.589-5.953 34.589-6.309L34.870-6.309L34.870-4.836L36.046-4.836L36.046-4.539L34.870-4.539L34.870-2.364Q34.870-2.043 34.989-1.815Q35.108-1.586 35.389-1.586Q35.569-1.586 35.686-1.709Q35.803-1.832 35.856-2.012Q35.909-2.192 35.909-2.364L35.909-2.836L36.190-2.836L36.190-2.348Q36.190-2.094 36.085-1.854Q35.979-1.614 35.782-1.461Q35.585-1.309 35.327-1.309Q35.011-1.309 34.759-1.432Q34.507-1.555 34.368-1.789Q34.229-2.024 34.229-2.348M38.768-1.387L36.991-1.387L36.991-1.684Q37.264-1.684 37.432-1.731Q37.600-1.778 37.600-1.946L37.600-4.082Q37.600-4.297 37.544-4.393Q37.487-4.489 37.374-4.510Q37.261-4.532 37.014-4.532L37.014-4.828L38.214-4.914L38.214-1.946Q38.214-1.778 38.360-1.731Q38.507-1.684 38.768-1.684L38.768-1.387M37.327-6.309Q37.327-6.500 37.462-6.631Q37.596-6.762 37.792-6.762Q37.913-6.762 38.016-6.700Q38.120-6.637 38.182-6.533Q38.245-6.430 38.245-6.309Q38.245-6.114 38.114-5.979Q37.983-5.844 37.792-5.844Q37.593-5.844 37.460-5.977Q37.327-6.110 37.327-6.309M39.268-3.082Q39.268-3.586 39.524-4.018Q39.780-4.450 40.216-4.701Q40.651-4.953 41.151-4.953Q41.538-4.953 41.880-4.809Q42.221-4.664 42.483-4.403Q42.745-4.141 42.887-3.805Q43.030-3.469 43.030-3.082Q43.030-2.590 42.766-2.180Q42.503-1.770 42.073-1.539Q41.643-1.309 41.151-1.309Q40.659-1.309 40.225-1.541Q39.792-1.774 39.530-2.182Q39.268-2.590 39.268-3.082M41.151-1.586Q41.608-1.586 41.860-1.809Q42.112-2.032 42.200-2.383Q42.288-2.735 42.288-3.180Q42.288-3.610 42.194-3.948Q42.100-4.285 41.846-4.492Q41.593-4.700 41.151-4.700Q40.503-4.700 40.259-4.283Q40.014-3.867 40.014-3.180Q40.014-2.735 40.102-2.383Q40.190-2.032 40.442-1.809Q40.694-1.586 41.151-1.586M45.444-1.387L43.589-1.387L43.589-1.684Q43.862-1.684 44.030-1.731Q44.198-1.778 44.198-1.946L44.198-4.082Q44.198-4.297 44.136-4.393Q44.073-4.489 43.954-4.510Q43.835-4.532 43.589-4.532L43.589-4.828L44.780-4.914L44.780-4.180Q44.893-4.395 45.087-4.563Q45.280-4.731 45.518-4.823Q45.757-4.914 46.011-4.914Q47.178-4.914 47.178-3.836L47.178-1.946Q47.178-1.778 47.348-1.731Q47.518-1.684 47.788-1.684L47.788-1.387L45.932-1.387L45.932-1.684Q46.206-1.684 46.374-1.731Q46.542-1.778 46.542-1.946L46.542-3.821Q46.542-4.203 46.421-4.432Q46.300-4.660 45.948-4.660Q45.636-4.660 45.382-4.498Q45.128-4.336 44.981-4.067Q44.835-3.797 44.835-3.500L44.835-1.946Q44.835-1.778 45.005-1.731Q45.175-1.684 45.444-1.684L45.444-1.387M48.276-1.395L48.276-2.617Q48.276-2.645 48.307-2.676Q48.339-2.707 48.362-2.707L48.468-2.707Q48.538-2.707 48.553-2.645Q48.616-2.324 48.755-2.084Q48.893-1.844 49.126-1.703Q49.358-1.563 49.667-1.563Q49.905-1.563 50.114-1.623Q50.323-1.684 50.460-1.832Q50.596-1.981 50.596-2.227Q50.596-2.481 50.386-2.647Q50.175-2.813 49.905-2.867L49.284-2.981Q48.878-3.059 48.577-3.315Q48.276-3.571 48.276-3.946Q48.276-4.313 48.477-4.535Q48.678-4.758 49.003-4.856Q49.327-4.953 49.667-4.953Q50.132-4.953 50.428-4.746L50.651-4.930Q50.675-4.953 50.706-4.953L50.757-4.953Q50.788-4.953 50.815-4.926Q50.843-4.899 50.843-4.867L50.843-3.883Q50.843-3.852 50.817-3.823Q50.792-3.793 50.757-3.793L50.651-3.793Q50.616-3.793 50.589-3.821Q50.561-3.848 50.561-3.883Q50.561-4.282 50.309-4.502Q50.057-4.723 49.659-4.723Q49.303-4.723 49.020-4.600Q48.737-4.477 48.737-4.172Q48.737-3.953 48.938-3.821Q49.139-3.688 49.386-3.645L50.011-3.532Q50.440-3.442 50.749-3.145Q51.057-2.848 51.057-2.434Q51.057-1.864 50.659-1.586Q50.261-1.309 49.667-1.309Q49.116-1.309 48.764-1.645L48.468-1.332Q48.444-1.309 48.409-1.309L48.362-1.309Q48.339-1.309 48.307-1.340Q48.276-1.371 48.276-1.395\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M138.887-41.221a6.402 6.402 0 1 0-12.804 0 6.402 6.402 0 0 0 12.804 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M99.053-15.614a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M138.887-15.614a6.402 6.402 0 1 0-12.804 0 6.402 6.402 0 0 0 12.804 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M178.72-15.614a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.804 0Zm-6.401 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.932-37.651 98.205-19.184\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M132.485-34.62v12.204\" style=\"stroke-width:.8\"\u002F>\u003Cpath fill=\"none\" d=\"m138.038-37.651 28.728 18.467\"\u002F>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M121.815 12.839a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M155.959 12.839a6.402 6.402 0 1 0-12.804 0 6.402 6.402 0 0 0 12.804 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M128.986-9.781 118.81 7.178\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m135.985-9.781 10.072 16.788\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-bg)\">\u003Cpath d=\"M144.577 41.292a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.401 0\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-bg)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M170.185 41.292a6.402 6.402 0 1 0-12.803 0 6.402 6.402 0 0 0 12.803 0Zm-6.402 0\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m147.031 19.154-6.404 16.008\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m152.599 18.922 8.143 16.286\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M-24.854-1.387L-26.488-1.387L-26.488-1.667Q-26.259-1.667-26.110-1.701Q-25.961-1.736-25.961-1.876L-25.961-5.495Q-25.961-5.765-26.069-5.827Q-26.177-5.888-26.488-5.888L-26.488-6.169L-25.408-6.244L-25.408-3.858Q-25.302-4.043-25.124-4.185Q-24.946-4.326-24.738-4.400Q-24.529-4.473-24.304-4.473Q-23.798-4.473-23.514-4.250Q-23.230-4.026-23.230-3.530L-23.230-1.876Q-23.230-1.739-23.082-1.703Q-22.933-1.667-22.707-1.667L-22.707-1.387L-24.338-1.387L-24.338-1.667Q-24.109-1.667-23.960-1.701Q-23.811-1.736-23.811-1.876L-23.811-3.516Q-23.811-3.851-23.931-4.051Q-24.051-4.251-24.365-4.251Q-24.635-4.251-24.869-4.115Q-25.103-3.978-25.242-3.744Q-25.380-3.510-25.380-3.236L-25.380-1.876Q-25.380-1.739-25.230-1.703Q-25.079-1.667-24.854-1.667L-24.854-1.387M-20.503-1.387L-22.055-1.387L-22.055-1.667Q-21.829-1.667-21.680-1.701Q-21.532-1.736-21.532-1.876L-21.532-3.725Q-21.532-3.913-21.579-3.997Q-21.627-4.080-21.725-4.099Q-21.822-4.118-22.034-4.118L-22.034-4.398L-20.978-4.473L-20.978-1.876Q-20.978-1.736-20.846-1.701Q-20.715-1.667-20.503-1.667L-20.503-1.387M-21.774-5.694Q-21.774-5.865-21.651-5.984Q-21.528-6.104-21.357-6.104Q-21.190-6.104-21.067-5.984Q-20.944-5.865-20.944-5.694Q-20.944-5.519-21.067-5.396Q-21.190-5.273-21.357-5.273Q-21.528-5.273-21.651-5.396Q-21.774-5.519-21.774-5.694M-19.898-0.854Q-19.898-1.100-19.701-1.284Q-19.505-1.469-19.248-1.548Q-19.385-1.660-19.457-1.821Q-19.529-1.982-19.529-2.163Q-19.529-2.484-19.317-2.730Q-19.652-3.028-19.652-3.438Q-19.652-3.899-19.262-4.186Q-18.872-4.473-18.394-4.473Q-17.922-4.473-17.587-4.227Q-17.413-4.381-17.203-4.463Q-16.993-4.545-16.764-4.545Q-16.600-4.545-16.478-4.438Q-16.357-4.330-16.357-4.166Q-16.357-4.070-16.429-3.998Q-16.500-3.927-16.593-3.927Q-16.692-3.927-16.762-4Q-16.832-4.074-16.832-4.173Q-16.832-4.227-16.818-4.258L-16.811-4.272Q-16.805-4.292-16.796-4.303Q-16.788-4.313-16.784-4.320Q-17.140-4.320-17.427-4.097Q-17.140-3.804-17.140-3.438Q-17.140-3.123-17.324-2.891Q-17.509-2.658-17.798-2.530Q-18.086-2.402-18.394-2.402Q-18.596-2.402-18.787-2.452Q-18.978-2.501-19.156-2.611Q-19.248-2.484-19.248-2.341Q-19.248-2.159-19.120-2.024Q-18.992-1.889-18.808-1.889L-18.175-1.889Q-17.727-1.889-17.358-1.818Q-16.989-1.746-16.729-1.517Q-16.470-1.288-16.470-0.854Q-16.470-0.533-16.765-0.331Q-17.061-0.129-17.464-0.040Q-17.868 0.049-18.182 0.049Q-18.500 0.049-18.903-0.040Q-19.307-0.129-19.602-0.331Q-19.898-0.533-19.898-0.854M-19.443-0.854Q-19.443-0.625-19.225-0.476Q-19.006-0.327-18.714-0.259Q-18.421-0.191-18.182-0.191Q-18.018-0.191-17.809-0.227Q-17.601-0.262-17.394-0.343Q-17.187-0.423-17.056-0.551Q-16.924-0.679-16.924-0.854Q-16.924-1.206-17.305-1.300Q-17.686-1.394-18.189-1.394L-18.808-1.394Q-19.047-1.394-19.245-1.243Q-19.443-1.093-19.443-0.854M-18.394-2.641Q-17.727-2.641-17.727-3.438Q-17.727-4.238-18.394-4.238Q-19.064-4.238-19.064-3.438Q-19.064-2.641-18.394-2.641M-14.193-1.387L-15.827-1.387L-15.827-1.667Q-15.598-1.667-15.449-1.701Q-15.301-1.736-15.301-1.876L-15.301-5.495Q-15.301-5.765-15.408-5.827Q-15.516-5.888-15.827-5.888L-15.827-6.169L-14.747-6.244L-14.747-3.858Q-14.641-4.043-14.463-4.185Q-14.286-4.326-14.077-4.400Q-13.869-4.473-13.643-4.473Q-13.137-4.473-12.853-4.250Q-12.570-4.026-12.570-3.530L-12.570-1.876Q-12.570-1.739-12.421-1.703Q-12.272-1.667-12.047-1.667L-12.047-1.387L-13.677-1.387L-13.677-1.667Q-13.448-1.667-13.299-1.701Q-13.151-1.736-13.151-1.876L-13.151-3.516Q-13.151-3.851-13.270-4.051Q-13.390-4.251-13.704-4.251Q-13.975-4.251-14.209-4.115Q-14.443-3.978-14.581-3.744Q-14.720-3.510-14.720-3.236L-14.720-1.876Q-14.720-1.739-14.569-1.703Q-14.419-1.667-14.193-1.667L-14.193-1.387M-9.576-2.641L-11.633-2.641L-11.633-3.144L-9.576-3.144L-9.576-2.641M-7.022-1.387L-8.759-1.387L-8.759-1.667Q-8.530-1.667-8.381-1.701Q-8.232-1.736-8.232-1.876L-8.232-3.725Q-8.232-3.995-8.340-4.056Q-8.448-4.118-8.759-4.118L-8.759-4.398L-7.730-4.473L-7.730-3.766Q-7.600-4.074-7.357-4.273Q-7.115-4.473-6.797-4.473Q-6.578-4.473-6.407-4.349Q-6.236-4.224-6.236-4.012Q-6.236-3.875-6.335-3.776Q-6.434-3.677-6.568-3.677Q-6.704-3.677-6.804-3.776Q-6.903-3.875-6.903-4.012Q-6.903-4.152-6.804-4.251Q-7.094-4.251-7.294-4.055Q-7.494-3.858-7.586-3.564Q-7.679-3.270-7.679-2.990L-7.679-1.876Q-7.679-1.667-7.022-1.667L-7.022-1.387M-5.693-2.922Q-5.693-3.243-5.568-3.532Q-5.443-3.821-5.218-4.044Q-4.992-4.268-4.696-4.388Q-4.401-4.508-4.083-4.508Q-3.755-4.508-3.493-4.408Q-3.232-4.309-3.056-4.127Q-2.880-3.944-2.786-3.686Q-2.692-3.428-2.692-3.096Q-2.692-3.004-2.774-2.983L-5.030-2.983L-5.030-2.922Q-5.030-2.334-4.746-1.951Q-4.462-1.568-3.895-1.568Q-3.574-1.568-3.305-1.761Q-3.037-1.954-2.948-2.269Q-2.941-2.310-2.866-2.324L-2.774-2.324Q-2.692-2.300-2.692-2.228Q-2.692-2.221-2.699-2.194Q-2.811-1.797-3.182-1.558Q-3.553-1.319-3.977-1.319Q-4.414-1.319-4.814-1.527Q-5.214-1.736-5.454-2.103Q-5.693-2.470-5.693-2.922M-5.023-3.192L-3.208-3.192Q-3.208-3.469-3.305-3.721Q-3.403-3.974-3.601-4.130Q-3.799-4.285-4.083-4.285Q-4.360-4.285-4.573-4.127Q-4.787-3.968-4.905-3.713Q-5.023-3.458-5.023-3.192M-1.578-2.228L-1.578-4.125L-2.217-4.125L-2.217-4.347Q-1.899-4.347-1.682-4.557Q-1.465-4.767-1.364-5.077Q-1.263-5.386-1.263-5.694L-0.996-5.694L-0.996-4.405L0.080-4.405L0.080-4.125L-0.996-4.125L-0.996-2.241Q-0.996-1.965-0.892-1.766Q-0.788-1.568-0.528-1.568Q-0.371-1.568-0.265-1.672Q-0.159-1.777-0.110-1.930Q-0.060-2.084-0.060-2.241L-0.060-2.655L0.207-2.655L0.207-2.228Q0.207-2.002 0.108-1.792Q0.008-1.582-0.176-1.450Q-0.361-1.319-0.590-1.319Q-1.027-1.319-1.302-1.556Q-1.578-1.794-1.578-2.228M1.591-2.221L1.591-3.725Q1.591-3.995 1.483-4.056Q1.376-4.118 1.065-4.118L1.065-4.398L2.172-4.473L2.172-2.241L2.172-2.221Q2.172-1.941 2.223-1.797Q2.275-1.654 2.416-1.597Q2.558-1.541 2.845-1.541Q3.098-1.541 3.303-1.681Q3.508-1.821 3.625-2.047Q3.741-2.272 3.741-2.522L3.741-3.725Q3.741-3.995 3.633-4.056Q3.525-4.118 3.214-4.118L3.214-4.398L4.322-4.473L4.322-2.060Q4.322-1.869 4.375-1.787Q4.428-1.705 4.529-1.686Q4.629-1.667 4.845-1.667L4.845-1.387L3.768-1.319L3.768-1.883Q3.659-1.701 3.514-1.578Q3.368-1.455 3.182-1.387Q2.996-1.319 2.794-1.319Q1.591-1.319 1.591-2.221M7.183-1.387L5.446-1.387L5.446-1.667Q5.675-1.667 5.824-1.701Q5.973-1.736 5.973-1.876L5.973-3.725Q5.973-3.995 5.865-4.056Q5.757-4.118 5.446-4.118L5.446-4.398L6.475-4.473L6.475-3.766Q6.605-4.074 6.848-4.273Q7.090-4.473 7.408-4.473Q7.627-4.473 7.798-4.349Q7.969-4.224 7.969-4.012Q7.969-3.875 7.870-3.776Q7.771-3.677 7.637-3.677Q7.501-3.677 7.401-3.776Q7.302-3.875 7.302-4.012Q7.302-4.152 7.401-4.251Q7.111-4.251 6.911-4.055Q6.711-3.858 6.619-3.564Q6.526-3.270 6.526-2.990L6.526-1.876Q6.526-1.667 7.183-1.667L7.183-1.387M10.235-1.387L8.601-1.387L8.601-1.667Q8.830-1.667 8.979-1.701Q9.128-1.736 9.128-1.876L9.128-3.725Q9.128-3.995 9.020-4.056Q8.912-4.118 8.601-4.118L8.601-4.398L9.661-4.473L9.661-3.824Q9.832-4.132 10.136-4.303Q10.440-4.473 10.785-4.473Q11.291-4.473 11.575-4.250Q11.858-4.026 11.858-3.530L11.858-1.876Q11.858-1.739 12.007-1.703Q12.156-1.667 12.381-1.667L12.381-1.387L10.751-1.387L10.751-1.667Q10.980-1.667 11.129-1.701Q11.277-1.736 11.277-1.876L11.277-3.516Q11.277-3.851 11.158-4.051Q11.038-4.251 10.724-4.251Q10.454-4.251 10.220-4.115Q9.985-3.978 9.847-3.744Q9.709-3.510 9.709-3.236L9.709-1.876Q9.709-1.739 9.859-1.703Q10.009-1.667 10.235-1.667\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M16.507-1.387L16.240-1.387L16.240-5.495Q16.240-5.765 16.133-5.827Q16.025-5.888 15.714-5.888L15.714-6.169L16.794-6.244L16.794-4.074Q17.003-4.265 17.288-4.369Q17.573-4.473 17.871-4.473Q18.189-4.473 18.486-4.352Q18.783-4.231 19.006-4.015Q19.228-3.800 19.354-3.515Q19.481-3.229 19.481-2.898Q19.481-2.453 19.241-2.089Q19.002-1.725 18.609-1.522Q18.216-1.319 17.772-1.319Q17.577-1.319 17.387-1.375Q17.198-1.431 17.037-1.536Q16.876-1.640 16.736-1.801L16.507-1.387M16.822-3.732L16.822-2.115Q16.958-1.855 17.199-1.698Q17.440-1.541 17.717-1.541Q18.011-1.541 18.223-1.648Q18.435-1.756 18.568-1.948Q18.701-2.139 18.760-2.378Q18.818-2.617 18.818-2.898Q18.818-3.257 18.724-3.561Q18.630-3.865 18.402-4.058Q18.175-4.251 17.809-4.251Q17.509-4.251 17.242-4.115Q16.975-3.978 16.822-3.732M21.866-1.387L20.130-1.387L20.130-1.667Q20.359-1.667 20.508-1.701Q20.657-1.736 20.657-1.876L20.657-3.725Q20.657-3.995 20.549-4.056Q20.441-4.118 20.130-4.118L20.130-4.398L21.159-4.473L21.159-3.766Q21.289-4.074 21.532-4.273Q21.774-4.473 22.092-4.473Q22.311-4.473 22.482-4.349Q22.653-4.224 22.653-4.012Q22.653-3.875 22.553-3.776Q22.454-3.677 22.321-3.677Q22.184-3.677 22.085-3.776Q21.986-3.875 21.986-4.012Q21.986-4.152 22.085-4.251Q21.795-4.251 21.595-4.055Q21.395-3.858 21.303-3.564Q21.210-3.270 21.210-2.990L21.210-1.876Q21.210-1.667 21.866-1.667L21.866-1.387M23.295-2.115Q23.295-2.447 23.519-2.674Q23.743-2.901 24.086-3.029Q24.430-3.158 24.803-3.210Q25.175-3.263 25.479-3.263L25.479-3.516Q25.479-3.721 25.372-3.901Q25.264-4.080 25.083-4.183Q24.902-4.285 24.693-4.285Q24.286-4.285 24.051-4.193Q24.139-4.156 24.186-4.072Q24.232-3.988 24.232-3.886Q24.232-3.790 24.186-3.711Q24.139-3.633 24.059-3.588Q23.979-3.544 23.890-3.544Q23.740-3.544 23.639-3.641Q23.538-3.739 23.538-3.886Q23.538-4.508 24.693-4.508Q24.905-4.508 25.155-4.444Q25.404-4.381 25.606-4.262Q25.807-4.142 25.934-3.957Q26.060-3.773 26.060-3.530L26.060-1.954Q26.060-1.838 26.122-1.742Q26.183-1.647 26.296-1.647Q26.406-1.647 26.470-1.741Q26.535-1.835 26.535-1.954L26.535-2.402L26.802-2.402L26.802-1.954Q26.802-1.684 26.575-1.519Q26.347-1.353 26.067-1.353Q25.859-1.353 25.722-1.507Q25.585-1.660 25.561-1.876Q25.414-1.609 25.132-1.464Q24.850-1.319 24.526-1.319Q24.249-1.319 23.965-1.394Q23.681-1.469 23.488-1.648Q23.295-1.828 23.295-2.115M23.910-2.115Q23.910-1.941 24.011-1.811Q24.112-1.681 24.268-1.611Q24.423-1.541 24.587-1.541Q24.806-1.541 25.014-1.638Q25.223-1.736 25.351-1.917Q25.479-2.098 25.479-2.324L25.479-3.052Q25.155-3.052 24.789-2.961Q24.423-2.870 24.167-2.658Q23.910-2.447 23.910-2.115M28.901-1.387L27.267-1.387L27.267-1.667Q27.496-1.667 27.645-1.701Q27.793-1.736 27.793-1.876L27.793-3.725Q27.793-3.995 27.686-4.056Q27.578-4.118 27.267-4.118L27.267-4.398L28.326-4.473L28.326-3.824Q28.497-4.132 28.802-4.303Q29.106-4.473 29.451-4.473Q29.957-4.473 30.240-4.250Q30.524-4.026 30.524-3.530L30.524-1.876Q30.524-1.739 30.673-1.703Q30.822-1.667 31.047-1.667L31.047-1.387L29.417-1.387L29.417-1.667Q29.646-1.667 29.794-1.701Q29.943-1.736 29.943-1.876L29.943-3.516Q29.943-3.851 29.823-4.051Q29.704-4.251 29.389-4.251Q29.119-4.251 28.885-4.115Q28.651-3.978 28.513-3.744Q28.374-3.510 28.374-3.236L28.374-1.876Q28.374-1.739 28.525-1.703Q28.675-1.667 28.901-1.667L28.901-1.387M31.635-2.898Q31.635-3.226 31.770-3.527Q31.905-3.827 32.141-4.048Q32.377-4.268 32.681-4.388Q32.985-4.508 33.310-4.508Q33.816-4.508 34.164-4.405Q34.513-4.303 34.513-3.927Q34.513-3.780 34.416-3.679Q34.318-3.578 34.171-3.578Q34.017-3.578 33.918-3.677Q33.819-3.776 33.819-3.927Q33.819-4.115 33.959-4.207Q33.758-4.258 33.317-4.258Q32.961-4.258 32.732-4.062Q32.503-3.865 32.402-3.556Q32.302-3.246 32.302-2.898Q32.302-2.549 32.428-2.243Q32.554-1.937 32.809-1.753Q33.064-1.568 33.419-1.568Q33.641-1.568 33.826-1.652Q34.011-1.736 34.146-1.891Q34.281-2.047 34.339-2.255Q34.352-2.310 34.407-2.310L34.520-2.310Q34.551-2.310 34.573-2.286Q34.595-2.262 34.595-2.228L34.595-2.207Q34.510-1.920 34.322-1.722Q34.134-1.524 33.869-1.421Q33.604-1.319 33.310-1.319Q32.879-1.319 32.491-1.525Q32.103-1.732 31.869-2.095Q31.635-2.457 31.635-2.898\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M36.667-1.387L35.033-1.387L35.033-1.667Q35.262-1.667 35.411-1.701Q35.560-1.736 35.560-1.876L35.560-5.495Q35.560-5.765 35.452-5.827Q35.344-5.888 35.033-5.888L35.033-6.169L36.113-6.244L36.113-3.858Q36.219-4.043 36.397-4.185Q36.575-4.326 36.783-4.400Q36.992-4.473 37.217-4.473Q37.723-4.473 38.007-4.250Q38.291-4.026 38.291-3.530L38.291-1.876Q38.291-1.739 38.439-1.703Q38.588-1.667 38.814-1.667L38.814-1.387L37.183-1.387L37.183-1.667Q37.412-1.667 37.561-1.701Q37.710-1.736 37.710-1.876L37.710-3.516Q37.710-3.851 37.590-4.051Q37.470-4.251 37.156-4.251Q36.886-4.251 36.652-4.115Q36.418-3.978 36.279-3.744Q36.141-3.510 36.141-3.236L36.141-1.876Q36.141-1.739 36.291-1.703Q36.442-1.667 36.667-1.667\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The tree grows asymmetrically. Early iterations expand near the root (left); high-return branches accumulate visits and keep expanding, so the tree deepens along promising continuations while poor branches stay shallow (right).\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:278.590px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 208.943 123.496\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-68.737 30.36h177.253\"\u002F>\u003Cpath stroke=\"none\" d=\"m110.516 30.36-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(152.777 9.533)\">\u003Cpath d=\"M-66.479 30.360L-68.401 30.360L-68.401 30.063Q-67.592 30.063-67.592 29.583L-67.592 25.239Q-67.850 25.192-68.401 25.192L-68.401 24.895L-66.905 24.895Q-66.846 24.915-66.835 24.926L-63.827 29.114L-63.827 25.672Q-63.827 25.192-64.632 25.192L-64.632 24.895L-62.714 24.895L-62.714 25.192Q-63.522 25.192-63.522 25.672L-63.522 30.255Q-63.542 30.340-63.616 30.360L-63.721 30.360Q-63.776 30.348-63.792 30.321L-67.288 25.465L-67.288 29.583Q-67.288 30.063-66.479 30.063L-66.479 30.360M-59.760 32.352Q-60.374 31.895-60.776 31.260Q-61.178 30.626-61.374 29.880Q-61.569 29.133-61.569 28.360Q-61.569 27.587-61.374 26.840Q-61.178 26.094-60.776 25.460Q-60.374 24.825-59.760 24.368Q-59.749 24.364-59.741 24.362Q-59.733 24.360-59.721 24.360L-59.643 24.360Q-59.604 24.360-59.579 24.387Q-59.553 24.415-59.553 24.458Q-59.553 24.508-59.585 24.528Q-60.092 24.981-60.415 25.604Q-60.737 26.227-60.878 26.922Q-61.018 27.618-61.018 28.360Q-61.018 29.094-60.880 29.794Q-60.741 30.493-60.417 31.118Q-60.092 31.743-59.585 32.192Q-59.553 32.212-59.553 32.262Q-59.553 32.305-59.579 32.333Q-59.604 32.360-59.643 32.360L-59.721 32.360Q-59.729 32.356-59.739 32.354Q-59.749 32.352-59.760 32.352M-58.792 30.352L-58.792 29.130Q-58.792 29.102-58.760 29.071Q-58.729 29.040-58.706 29.040L-58.600 29.040Q-58.530 29.040-58.514 29.102Q-58.452 29.422-58.313 29.663Q-58.174 29.903-57.942 30.044Q-57.710 30.184-57.401 30.184Q-57.163 30.184-56.954 30.124Q-56.745 30.063-56.608 29.915Q-56.471 29.766-56.471 29.520Q-56.471 29.266-56.682 29.100Q-56.893 28.934-57.163 28.880L-57.784 28.766Q-58.190 28.688-58.491 28.432Q-58.792 28.176-58.792 27.801Q-58.792 27.434-58.591 27.212Q-58.389 26.989-58.065 26.891Q-57.741 26.794-57.401 26.794Q-56.936 26.794-56.639 27.001L-56.417 26.817Q-56.393 26.794-56.362 26.794L-56.311 26.794Q-56.280 26.794-56.253 26.821Q-56.225 26.848-56.225 26.880L-56.225 27.864Q-56.225 27.895-56.251 27.924Q-56.276 27.954-56.311 27.954L-56.417 27.954Q-56.452 27.954-56.479 27.926Q-56.507 27.899-56.507 27.864Q-56.507 27.465-56.758 27.245Q-57.010 27.024-57.409 27.024Q-57.764 27.024-58.048 27.147Q-58.331 27.270-58.331 27.575Q-58.331 27.794-58.130 27.926Q-57.928 28.059-57.682 28.102L-57.057 28.215Q-56.628 28.305-56.319 28.602Q-56.010 28.899-56.010 29.313Q-56.010 29.883-56.409 30.161Q-56.807 30.438-57.401 30.438Q-57.952 30.438-58.303 30.102L-58.600 30.415Q-58.624 30.438-58.659 30.438L-58.706 30.438Q-58.729 30.438-58.760 30.407Q-58.792 30.376-58.792 30.352M-54.897 31.766Q-54.897 31.743-54.866 31.696Q-54.573 31.434-54.407 31.067Q-54.241 30.700-54.241 30.313L-54.241 30.255Q-54.370 30.360-54.538 30.360Q-54.729 30.360-54.866 30.227Q-55.003 30.094-55.003 29.895Q-55.003 29.704-54.866 29.571Q-54.729 29.438-54.538 29.438Q-54.237 29.438-54.112 29.708Q-53.987 29.977-53.987 30.313Q-53.987 30.762-54.169 31.176Q-54.350 31.590-54.690 31.887Q-54.714 31.911-54.753 31.911Q-54.799 31.911-54.848 31.866Q-54.897 31.821-54.897 31.766M-53.026 29.528Q-53.026 29.044-52.624 28.749Q-52.221 28.454-51.671 28.335Q-51.120 28.215-50.628 28.215L-50.628 27.926Q-50.628 27.700-50.743 27.493Q-50.858 27.286-51.055 27.167Q-51.253 27.047-51.483 27.047Q-51.909 27.047-52.194 27.153Q-52.124 27.180-52.077 27.235Q-52.030 27.290-52.005 27.360Q-51.979 27.430-51.979 27.505Q-51.979 27.610-52.030 27.702Q-52.081 27.794-52.173 27.844Q-52.264 27.895-52.370 27.895Q-52.475 27.895-52.567 27.844Q-52.659 27.794-52.710 27.702Q-52.760 27.610-52.760 27.505Q-52.760 27.087-52.372 26.940Q-51.983 26.794-51.483 26.794Q-51.151 26.794-50.798 26.924Q-50.444 27.055-50.216 27.309Q-49.987 27.563-49.987 27.911L-49.987 29.712Q-49.987 29.844-49.915 29.954Q-49.842 30.063-49.714 30.063Q-49.589 30.063-49.520 29.958Q-49.452 29.852-49.452 29.712L-49.452 29.200L-49.171 29.200L-49.171 29.712Q-49.171 29.915-49.288 30.073Q-49.405 30.231-49.587 30.315Q-49.768 30.399-49.971 30.399Q-50.202 30.399-50.354 30.227Q-50.507 30.055-50.538 29.825Q-50.698 30.106-51.007 30.272Q-51.315 30.438-51.667 30.438Q-52.178 30.438-52.602 30.215Q-53.026 29.993-53.026 29.528M-52.339 29.528Q-52.339 29.813-52.112 29.999Q-51.885 30.184-51.592 30.184Q-51.346 30.184-51.122 30.067Q-50.897 29.950-50.762 29.747Q-50.628 29.544-50.628 29.290L-50.628 28.458Q-50.893 28.458-51.178 28.512Q-51.464 28.567-51.735 28.696Q-52.007 28.825-52.173 29.032Q-52.339 29.239-52.339 29.528M-48.475 32.360L-48.557 32.360Q-48.592 32.360-48.618 32.331Q-48.643 32.301-48.643 32.262Q-48.643 32.212-48.612 32.192Q-48.225 31.856-47.942 31.407Q-47.659 30.958-47.493 30.458Q-47.327 29.958-47.253 29.440Q-47.178 28.922-47.178 28.360Q-47.178 27.790-47.253 27.274Q-47.327 26.758-47.493 26.262Q-47.659 25.766-47.938 25.319Q-48.217 24.872-48.612 24.528Q-48.643 24.508-48.643 24.458Q-48.643 24.419-48.618 24.389Q-48.592 24.360-48.557 24.360L-48.475 24.360Q-48.464 24.360-48.454 24.362Q-48.444 24.364-48.436 24.368Q-47.823 24.825-47.421 25.460Q-47.018 26.094-46.823 26.840Q-46.628 27.587-46.628 28.360Q-46.628 29.133-46.823 29.880Q-47.018 30.626-47.421 31.260Q-47.823 31.895-48.436 32.352Q-48.448 32.352-48.456 32.354Q-48.464 32.356-48.475 32.360\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-68.737 30.36V-70.07\"\u002F>\u003Cpath stroke=\"none\" d=\"m-68.737-72.07-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M-54.51-60.689C-40.284-29.39-23.212-13.742-.45-5.206c28.452 9.39 62.596 15.08 102.43 17.925\" style=\"stroke-width:1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(175.672 -15.21)\">\u003Cpath d=\"M-67.616 30.360L-67.883 30.360L-67.883 26.252Q-67.883 25.982-67.990 25.920Q-68.098 25.859-68.409 25.859L-68.409 25.578L-67.329 25.503L-67.329 27.673Q-67.120 27.482-66.835 27.378Q-66.549 27.274-66.252 27.274Q-65.934 27.274-65.637 27.395Q-65.340 27.516-65.117 27.732Q-64.895 27.947-64.769 28.232Q-64.642 28.518-64.642 28.849Q-64.642 29.294-64.882 29.658Q-65.121 30.022-65.514 30.225Q-65.907 30.428-66.351 30.428Q-66.546 30.428-66.736 30.372Q-66.925 30.316-67.086 30.211Q-67.247 30.107-67.387 29.946L-67.616 30.360M-67.301 28.015L-67.301 29.632Q-67.165 29.892-66.924 30.049Q-66.683 30.206-66.406 30.206Q-66.112 30.206-65.900 30.099Q-65.688 29.991-65.555 29.799Q-65.422 29.608-65.363 29.369Q-65.305 29.130-65.305 28.849Q-65.305 28.490-65.399 28.186Q-65.493 27.882-65.721 27.689Q-65.948 27.496-66.314 27.496Q-66.614 27.496-66.881 27.632Q-67.148 27.769-67.301 28.015\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(175.672 -15.21)\">\u003Cpath d=\"M-63.832 28.877Q-63.832 28.535-63.697 28.236Q-63.562 27.937-63.322 27.713Q-63.083 27.489-62.765 27.364Q-62.447 27.239-62.116 27.239Q-61.671 27.239-61.272 27.455Q-60.872 27.670-60.637 28.048Q-60.403 28.425-60.403 28.877Q-60.403 29.218-60.545 29.502Q-60.687 29.786-60.931 29.993Q-61.176 30.199-61.485 30.314Q-61.794 30.428-62.116 30.428Q-62.546 30.428-62.948 30.227Q-63.350 30.025-63.591 29.673Q-63.832 29.321-63.832 28.877M-62.116 30.179Q-61.514 30.179-61.290 29.801Q-61.066 29.423-61.066 28.791Q-61.066 28.179-61.301 27.820Q-61.535 27.462-62.116 27.462Q-63.168 27.462-63.168 28.791Q-63.168 29.423-62.943 29.801Q-62.717 30.179-62.116 30.179M-58.127 30.360L-59.761 30.360L-59.761 30.080Q-59.532 30.080-59.383 30.046Q-59.234 30.011-59.234 29.871L-59.234 28.022Q-59.234 27.752-59.342 27.691Q-59.450 27.629-59.761 27.629L-59.761 27.349L-58.701 27.274L-58.701 27.923Q-58.530 27.615-58.226 27.444Q-57.922 27.274-57.577 27.274Q-57.071 27.274-56.787 27.497Q-56.503 27.721-56.503 28.217L-56.503 29.871Q-56.503 30.008-56.355 30.044Q-56.206 30.080-55.980 30.080L-55.980 30.360L-57.611 30.360L-57.611 30.080Q-57.382 30.080-57.233 30.046Q-57.084 30.011-57.084 29.871L-57.084 28.231Q-57.084 27.896-57.204 27.696Q-57.324 27.496-57.638 27.496Q-57.908 27.496-58.142 27.632Q-58.376 27.769-58.515 28.003Q-58.653 28.237-58.653 28.511L-58.653 29.871Q-58.653 30.008-58.503 30.044Q-58.353 30.080-58.127 30.080\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(175.672 -15.21)\">\u003Cpath d=\"M-55.028 29.526L-55.028 28.022Q-55.028 27.752-55.136 27.691Q-55.244 27.629-55.555 27.629L-55.555 27.349L-54.447 27.274L-54.447 29.506L-54.447 29.526Q-54.447 29.806-54.396 29.950Q-54.345 30.093-54.203 30.150Q-54.061 30.206-53.774 30.206Q-53.521 30.206-53.316 30.066Q-53.111 29.926-52.995 29.700Q-52.878 29.475-52.878 29.225L-52.878 28.022Q-52.878 27.752-52.986 27.691Q-53.094 27.629-53.405 27.629L-53.405 27.349L-52.297 27.274L-52.297 29.687Q-52.297 29.878-52.244 29.960Q-52.191 30.042-52.091 30.061Q-51.990 30.080-51.774 30.080L-51.774 30.360L-52.851 30.428L-52.851 29.864Q-52.960 30.046-53.106 30.169Q-53.251 30.292-53.437 30.360Q-53.624 30.428-53.825 30.428Q-55.028 30.428-55.028 29.526M-51.187 30.353L-51.187 29.290Q-51.187 29.266-51.159 29.239Q-51.132 29.212-51.108 29.212L-50.999 29.212Q-50.934 29.212-50.920 29.270Q-50.824 29.704-50.578 29.955Q-50.332 30.206-49.918 30.206Q-49.577 30.206-49.324 30.073Q-49.071 29.940-49.071 29.632Q-49.071 29.475-49.165 29.360Q-49.259 29.246-49.397 29.177Q-49.536 29.109-49.703 29.071L-50.284 28.972Q-50.640 28.904-50.913 28.683Q-51.187 28.463-51.187 28.121Q-51.187 27.872-51.075 27.697Q-50.964 27.523-50.778 27.424Q-50.592 27.325-50.376 27.282Q-50.161 27.239-49.918 27.239Q-49.505 27.239-49.225 27.421L-49.009 27.246Q-48.999 27.243-48.992 27.241Q-48.985 27.239-48.975 27.239L-48.924 27.239Q-48.896 27.239-48.873 27.263Q-48.849 27.287-48.849 27.315L-48.849 28.162Q-48.849 28.183-48.873 28.210Q-48.896 28.237-48.924 28.237L-49.037 28.237Q-49.064 28.237-49.090 28.212Q-49.115 28.186-49.115 28.162Q-49.115 27.926-49.221 27.762Q-49.327 27.598-49.510 27.516Q-49.693 27.434-49.925 27.434Q-50.253 27.434-50.510 27.537Q-50.766 27.639-50.766 27.916Q-50.766 28.111-50.583 28.220Q-50.400 28.330-50.171 28.371L-49.597 28.477Q-49.351 28.525-49.137 28.653Q-48.924 28.781-48.787 28.984Q-48.650 29.188-48.650 29.437Q-48.650 29.950-49.016 30.189Q-49.382 30.428-49.918 30.428Q-50.414 30.428-50.746 30.134L-51.012 30.408Q-51.033 30.428-51.060 30.428L-51.108 30.428Q-51.132 30.428-51.159 30.401Q-51.187 30.374-51.187 30.353\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(23.45 -87.876)\">\u003Cpath d=\"M-66.755 30.360L-68.358 30.360L-68.358 30.080Q-68.132 30.080-67.983 30.046Q-67.835 30.011-67.835 29.871L-67.835 26.252Q-67.835 25.982-67.942 25.920Q-68.050 25.859-68.358 25.859L-68.358 25.578L-67.281 25.503L-67.281 29.871Q-67.281 30.008-67.131 30.044Q-66.980 30.080-66.755 30.080L-66.755 30.360M-66.102 29.632Q-66.102 29.300-65.878 29.073Q-65.654 28.846-65.310 28.718Q-64.967 28.589-64.594 28.537Q-64.222 28.484-63.918 28.484L-63.918 28.231Q-63.918 28.026-64.025 27.846Q-64.133 27.667-64.314 27.564Q-64.495 27.462-64.704 27.462Q-65.111 27.462-65.346 27.554Q-65.258 27.591-65.211 27.675Q-65.165 27.759-65.165 27.861Q-65.165 27.957-65.211 28.036Q-65.258 28.114-65.338 28.159Q-65.418 28.203-65.507 28.203Q-65.657 28.203-65.758 28.106Q-65.859 28.008-65.859 27.861Q-65.859 27.239-64.704 27.239Q-64.492 27.239-64.242 27.303Q-63.993 27.366-63.791 27.485Q-63.590 27.605-63.463 27.790Q-63.337 27.974-63.337 28.217L-63.337 29.793Q-63.337 29.909-63.275 30.005Q-63.214 30.100-63.101 30.100Q-62.991 30.100-62.926 30.006Q-62.862 29.912-62.862 29.793L-62.862 29.345L-62.595 29.345L-62.595 29.793Q-62.595 30.063-62.822 30.228Q-63.049 30.394-63.330 30.394Q-63.538 30.394-63.675 30.240Q-63.812 30.087-63.836 29.871Q-63.983 30.138-64.265 30.283Q-64.547 30.428-64.871 30.428Q-65.148 30.428-65.432 30.353Q-65.716 30.278-65.909 30.099Q-66.102 29.919-66.102 29.632M-65.487 29.632Q-65.487 29.806-65.386 29.936Q-65.285 30.066-65.129 30.136Q-64.974 30.206-64.810 30.206Q-64.591 30.206-64.383 30.109Q-64.174 30.011-64.046 29.830Q-63.918 29.649-63.918 29.423L-63.918 28.695Q-64.242 28.695-64.608 28.786Q-64.974 28.877-65.230 29.089Q-65.487 29.300-65.487 29.632M-60.428 30.360L-62.164 30.360L-62.164 30.080Q-61.935 30.080-61.787 30.046Q-61.638 30.011-61.638 29.871L-61.638 28.022Q-61.638 27.752-61.746 27.691Q-61.853 27.629-62.164 27.629L-62.164 27.349L-61.135 27.274L-61.135 27.981Q-61.006 27.673-60.763 27.474Q-60.520 27.274-60.202 27.274Q-59.984 27.274-59.813 27.398Q-59.642 27.523-59.642 27.735Q-59.642 27.872-59.741 27.971Q-59.840 28.070-59.973 28.070Q-60.110 28.070-60.209 27.971Q-60.308 27.872-60.308 27.735Q-60.308 27.595-60.209 27.496Q-60.500 27.496-60.700 27.692Q-60.900 27.889-60.992 28.183Q-61.084 28.477-61.084 28.757L-61.084 29.871Q-61.084 30.080-60.428 30.080L-60.428 30.360M-59.098 30.893Q-59.098 30.647-58.902 30.463Q-58.705 30.278-58.449 30.199Q-58.586 30.087-58.657 29.926Q-58.729 29.765-58.729 29.584Q-58.729 29.263-58.517 29.017Q-58.852 28.719-58.852 28.309Q-58.852 27.848-58.463 27.561Q-58.073 27.274-57.594 27.274Q-57.123 27.274-56.788 27.520Q-56.613 27.366-56.403 27.284Q-56.193 27.202-55.964 27.202Q-55.800 27.202-55.679 27.309Q-55.557 27.417-55.557 27.581Q-55.557 27.677-55.629 27.749Q-55.701 27.820-55.793 27.820Q-55.892 27.820-55.962 27.747Q-56.032 27.673-56.032 27.574Q-56.032 27.520-56.019 27.489L-56.012 27.475Q-56.005 27.455-55.997 27.444Q-55.988 27.434-55.985 27.427Q-56.340 27.427-56.627 27.650Q-56.340 27.943-56.340 28.309Q-56.340 28.624-56.525 28.856Q-56.709 29.089-56.998 29.217Q-57.287 29.345-57.594 29.345Q-57.796 29.345-57.987 29.295Q-58.179 29.246-58.357 29.136Q-58.449 29.263-58.449 29.406Q-58.449 29.588-58.321 29.723Q-58.193 29.858-58.008 29.858L-57.376 29.858Q-56.928 29.858-56.559 29.929Q-56.190 30.001-55.930 30.230Q-55.670 30.459-55.670 30.893Q-55.670 31.214-55.966 31.416Q-56.261 31.618-56.665 31.707Q-57.068 31.796-57.383 31.796Q-57.700 31.796-58.104 31.707Q-58.507 31.618-58.803 31.416Q-59.098 31.214-59.098 30.893M-58.644 30.893Q-58.644 31.122-58.425 31.271Q-58.206 31.420-57.914 31.488Q-57.622 31.556-57.383 31.556Q-57.218 31.556-57.010 31.520Q-56.801 31.485-56.595 31.404Q-56.388 31.324-56.256 31.196Q-56.125 31.068-56.125 30.893Q-56.125 30.541-56.506 30.447Q-56.887 30.353-57.389 30.353L-58.008 30.353Q-58.247 30.353-58.445 30.504Q-58.644 30.654-58.644 30.893M-57.594 29.106Q-56.928 29.106-56.928 28.309Q-56.928 27.509-57.594 27.509Q-58.264 27.509-58.264 28.309Q-58.264 29.106-57.594 29.106M-55.116 28.825Q-55.116 28.504-54.992 28.215Q-54.867 27.926-54.641 27.703Q-54.416 27.479-54.120 27.359Q-53.824 27.239-53.507 27.239Q-53.178 27.239-52.917 27.339Q-52.655 27.438-52.479 27.620Q-52.303 27.803-52.209 28.061Q-52.115 28.319-52.115 28.651Q-52.115 28.743-52.197 28.764L-54.453 28.764L-54.453 28.825Q-54.453 29.413-54.170 29.796Q-53.886 30.179-53.319 30.179Q-52.997 30.179-52.729 29.986Q-52.461 29.793-52.372 29.478Q-52.365 29.437-52.290 29.423L-52.197 29.423Q-52.115 29.447-52.115 29.519Q-52.115 29.526-52.122 29.553Q-52.235 29.950-52.606 30.189Q-52.977 30.428-53.401 30.428Q-53.838 30.428-54.238 30.220Q-54.638 30.011-54.877 29.644Q-55.116 29.277-55.116 28.825M-54.446 28.555L-52.632 28.555Q-52.632 28.278-52.729 28.026Q-52.826 27.773-53.025 27.617Q-53.223 27.462-53.507 27.462Q-53.783 27.462-53.997 27.620Q-54.211 27.779-54.329 28.034Q-54.446 28.289-54.446 28.555M-51.128 29.940Q-51.128 29.772-51.005 29.649Q-50.882 29.526-50.707 29.526Q-50.540 29.526-50.417 29.649Q-50.294 29.772-50.294 29.940Q-50.294 30.114-50.417 30.237Q-50.540 30.360-50.707 30.360Q-50.882 30.360-51.005 30.237Q-51.128 30.114-51.128 29.940M-51.128 27.756Q-51.128 27.588-51.005 27.465Q-50.882 27.342-50.707 27.342Q-50.540 27.342-50.417 27.465Q-50.294 27.588-50.294 27.756Q-50.294 27.930-50.417 28.053Q-50.540 28.176-50.707 28.176Q-50.882 28.176-51.005 28.053Q-51.128 27.930-51.128 27.756\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(23.45 -87.876)\">\u003Cpath d=\"M-45.727 28.825Q-45.727 28.504-45.602 28.215Q-45.477 27.926-45.251 27.703Q-45.026 27.479-44.730 27.359Q-44.435 27.239-44.117 27.239Q-43.789 27.239-43.527 27.339Q-43.266 27.438-43.090 27.620Q-42.914 27.803-42.820 28.061Q-42.726 28.319-42.726 28.651Q-42.726 28.743-42.808 28.764L-45.063 28.764L-45.063 28.825Q-45.063 29.413-44.780 29.796Q-44.496 30.179-43.929 30.179Q-43.607 30.179-43.339 29.986Q-43.071 29.793-42.982 29.478Q-42.975 29.437-42.900 29.423L-42.808 29.423Q-42.726 29.447-42.726 29.519Q-42.726 29.526-42.732 29.553Q-42.845 29.950-43.216 30.189Q-43.587 30.428-44.011 30.428Q-44.448 30.428-44.848 30.220Q-45.248 30.011-45.487 29.644Q-45.727 29.277-45.727 28.825M-45.057 28.555L-43.242 28.555Q-43.242 28.278-43.339 28.026Q-43.437 27.773-43.635 27.617Q-43.833 27.462-44.117 27.462Q-44.394 27.462-44.607 27.620Q-44.821 27.779-44.939 28.034Q-45.057 28.289-45.057 28.555M-40.955 30.360L-42.278 30.360L-42.278 30.080Q-41.717 30.080-41.338 29.680L-40.624 28.883L-41.536 27.834Q-41.673 27.687-41.822 27.655Q-41.970 27.622-42.237 27.622L-42.237 27.342L-40.736 27.342L-40.736 27.622Q-40.928 27.622-40.928 27.756Q-40.928 27.786-40.897 27.834L-40.302 28.518L-39.861 28.022Q-39.749 27.892-39.749 27.776Q-39.749 27.714-39.786 27.668Q-39.824 27.622-39.882 27.622L-39.882 27.342L-38.566 27.342L-38.566 27.622Q-39.126 27.622-39.506 28.022L-40.128 28.723L-39.133 29.871Q-39.034 29.970-38.933 30.015Q-38.833 30.059-38.721 30.069Q-38.610 30.080-38.433 30.080L-38.433 30.360L-39.926 30.360L-39.926 30.080Q-39.861 30.080-39.802 30.046Q-39.742 30.011-39.742 29.946Q-39.742 29.899-39.772 29.871L-40.449 29.085L-40.982 29.680Q-41.095 29.810-41.095 29.926Q-41.095 29.991-41.054 30.035Q-41.013 30.080-40.955 30.080L-40.955 30.360M-36.293 31.717L-37.923 31.717L-37.923 31.437Q-37.694 31.437-37.546 31.402Q-37.397 31.368-37.397 31.228L-37.397 27.882Q-37.397 27.711-37.534 27.670Q-37.670 27.629-37.923 27.629L-37.923 27.349L-36.843 27.274L-36.843 27.680Q-36.621 27.479-36.334 27.376Q-36.047 27.274-35.739 27.274Q-35.312 27.274-34.948 27.487Q-34.584 27.701-34.370 28.065Q-34.157 28.429-34.157 28.849Q-34.157 29.294-34.396 29.658Q-34.635 30.022-35.028 30.225Q-35.421 30.428-35.866 30.428Q-36.132 30.428-36.380 30.328Q-36.628 30.227-36.816 30.046L-36.816 31.228Q-36.816 31.365-36.667 31.401Q-36.519 31.437-36.293 31.437L-36.293 31.717M-36.816 28.029L-36.816 29.639Q-36.683 29.892-36.440 30.049Q-36.197 30.206-35.920 30.206Q-35.592 30.206-35.339 30.005Q-35.086 29.803-34.953 29.485Q-34.820 29.167-34.820 28.849Q-34.820 28.620-34.885 28.391Q-34.950 28.162-35.078 27.964Q-35.206 27.766-35.401 27.646Q-35.596 27.527-35.828 27.527Q-36.122 27.527-36.390 27.656Q-36.659 27.786-36.816 28.029M-31.853 30.360L-33.456 30.360L-33.456 30.080Q-33.230 30.080-33.082 30.046Q-32.933 30.011-32.933 29.871L-32.933 26.252Q-32.933 25.982-33.041 25.920Q-33.148 25.859-33.456 25.859L-33.456 25.578L-32.379 25.503L-32.379 29.871Q-32.379 30.008-32.229 30.044Q-32.079 30.080-31.853 30.080L-31.853 30.360M-31.299 28.877Q-31.299 28.535-31.164 28.236Q-31.029 27.937-30.790 27.713Q-30.551 27.489-30.233 27.364Q-29.915 27.239-29.583 27.239Q-29.139 27.239-28.739 27.455Q-28.339 27.670-28.105 28.048Q-27.871 28.425-27.871 28.877Q-27.871 29.218-28.013 29.502Q-28.155 29.786-28.399 29.993Q-28.644 30.199-28.953 30.314Q-29.262 30.428-29.583 30.428Q-30.014 30.428-30.416 30.227Q-30.817 30.025-31.058 29.673Q-31.299 29.321-31.299 28.877M-29.583 30.179Q-28.982 30.179-28.758 29.801Q-28.534 29.423-28.534 28.791Q-28.534 28.179-28.768 27.820Q-29.002 27.462-29.583 27.462Q-30.636 27.462-30.636 28.791Q-30.636 29.423-30.411 29.801Q-30.185 30.179-29.583 30.179M-25.526 30.360L-27.263 30.360L-27.263 30.080Q-27.034 30.080-26.885 30.046Q-26.736 30.011-26.736 29.871L-26.736 28.022Q-26.736 27.752-26.844 27.691Q-26.952 27.629-27.263 27.629L-27.263 27.349L-26.234 27.274L-26.234 27.981Q-26.104 27.673-25.861 27.474Q-25.619 27.274-25.301 27.274Q-25.082 27.274-24.911 27.398Q-24.740 27.523-24.740 27.735Q-24.740 27.872-24.839 27.971Q-24.938 28.070-25.072 28.070Q-25.208 28.070-25.308 27.971Q-25.407 27.872-25.407 27.735Q-25.407 27.595-25.308 27.496Q-25.598 27.496-25.798 27.692Q-25.998 27.889-26.090 28.183Q-26.183 28.477-26.183 28.757L-26.183 29.871Q-26.183 30.080-25.526 30.080L-25.526 30.360M-24.197 28.825Q-24.197 28.504-24.072 28.215Q-23.947 27.926-23.722 27.703Q-23.496 27.479-23.200 27.359Q-22.905 27.239-22.587 27.239Q-22.259 27.239-21.997 27.339Q-21.736 27.438-21.560 27.620Q-21.384 27.803-21.290 28.061Q-21.196 28.319-21.196 28.651Q-21.196 28.743-21.278 28.764L-23.534 28.764L-23.534 28.825Q-23.534 29.413-23.250 29.796Q-22.966 30.179-22.399 30.179Q-22.078 30.179-21.809 29.986Q-21.541 29.793-21.452 29.478Q-21.445 29.437-21.370 29.423L-21.278 29.423Q-21.196 29.447-21.196 29.519Q-21.196 29.526-21.203 29.553Q-21.315 29.950-21.686 30.189Q-22.057 30.428-22.481 30.428Q-22.918 30.428-23.318 30.220Q-23.718 30.011-23.958 29.644Q-24.197 29.277-24.197 28.825M-23.527 28.555L-21.712 28.555Q-21.712 28.278-21.809 28.026Q-21.907 27.773-22.105 27.617Q-22.303 27.462-22.587 27.462Q-22.864 27.462-23.077 27.620Q-23.291 27.779-23.409 28.034Q-23.527 28.289-23.527 28.555\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(105.963 -25.38)\">\u003Cpath d=\"M-68.423 30.353L-68.423 29.290Q-68.423 29.266-68.395 29.239Q-68.368 29.212-68.344 29.212L-68.235 29.212Q-68.170 29.212-68.156 29.270Q-68.060 29.704-67.814 29.955Q-67.568 30.206-67.154 30.206Q-66.813 30.206-66.560 30.073Q-66.307 29.940-66.307 29.632Q-66.307 29.475-66.401 29.360Q-66.495 29.246-66.633 29.177Q-66.772 29.109-66.939 29.071L-67.520 28.972Q-67.876 28.904-68.149 28.683Q-68.423 28.463-68.423 28.121Q-68.423 27.872-68.311 27.697Q-68.200 27.523-68.014 27.424Q-67.828 27.325-67.612 27.282Q-67.397 27.239-67.154 27.239Q-66.741 27.239-66.461 27.421L-66.245 27.246Q-66.235 27.243-66.228 27.241Q-66.221 27.239-66.211 27.239L-66.160 27.239Q-66.133 27.239-66.109 27.263Q-66.085 27.287-66.085 27.315L-66.085 28.162Q-66.085 28.183-66.109 28.210Q-66.133 28.237-66.160 28.237L-66.273 28.237Q-66.300 28.237-66.326 28.212Q-66.351 28.186-66.351 28.162Q-66.351 27.926-66.457 27.762Q-66.563 27.598-66.746 27.516Q-66.929 27.434-67.161 27.434Q-67.489 27.434-67.746 27.537Q-68.002 27.639-68.002 27.916Q-68.002 28.111-67.819 28.220Q-67.636 28.330-67.407 28.371L-66.833 28.477Q-66.587 28.525-66.373 28.653Q-66.160 28.781-66.023 28.984Q-65.886 29.188-65.886 29.437Q-65.886 29.950-66.252 30.189Q-66.618 30.428-67.154 30.428Q-67.650 30.428-67.982 30.134L-68.248 30.408Q-68.269 30.428-68.296 30.428L-68.344 30.428Q-68.368 30.428-68.395 30.401Q-68.423 30.374-68.423 30.353M-63.576 30.360L-65.210 30.360L-65.210 30.080Q-64.981 30.080-64.832 30.046Q-64.683 30.011-64.683 29.871L-64.683 28.022Q-64.683 27.752-64.791 27.691Q-64.899 27.629-65.210 27.629L-65.210 27.349L-64.150 27.274L-64.150 27.923Q-63.979 27.615-63.675 27.444Q-63.371 27.274-63.026 27.274Q-62.626 27.274-62.349 27.414Q-62.072 27.554-61.987 27.902Q-61.819 27.609-61.520 27.441Q-61.221 27.274-60.876 27.274Q-60.370 27.274-60.086 27.497Q-59.802 27.721-59.802 28.217L-59.802 29.871Q-59.802 30.008-59.654 30.044Q-59.505 30.080-59.279 30.080L-59.279 30.360L-60.910 30.360L-60.910 30.080Q-60.684 30.080-60.534 30.044Q-60.383 30.008-60.383 29.871L-60.383 28.231Q-60.383 27.896-60.503 27.696Q-60.623 27.496-60.937 27.496Q-61.207 27.496-61.441 27.632Q-61.675 27.769-61.814 28.003Q-61.952 28.237-61.952 28.511L-61.952 29.871Q-61.952 30.008-61.804 30.044Q-61.655 30.080-61.429 30.080L-61.429 30.360L-63.060 30.360L-63.060 30.080Q-62.831 30.080-62.682 30.046Q-62.533 30.011-62.533 29.871L-62.533 28.231Q-62.533 27.896-62.653 27.696Q-62.773 27.496-63.087 27.496Q-63.357 27.496-63.591 27.632Q-63.825 27.769-63.964 28.003Q-64.102 28.237-64.102 28.511L-64.102 29.871Q-64.102 30.008-63.952 30.044Q-63.801 30.080-63.576 30.080L-63.576 30.360M-58.633 29.632Q-58.633 29.300-58.410 29.073Q-58.186 28.846-57.842 28.718Q-57.499 28.589-57.126 28.537Q-56.754 28.484-56.449 28.484L-56.449 28.231Q-56.449 28.026-56.557 27.846Q-56.665 27.667-56.846 27.564Q-57.027 27.462-57.236 27.462Q-57.642 27.462-57.878 27.554Q-57.789 27.591-57.743 27.675Q-57.697 27.759-57.697 27.861Q-57.697 27.957-57.743 28.036Q-57.789 28.114-57.870 28.159Q-57.950 28.203-58.039 28.203Q-58.189 28.203-58.290 28.106Q-58.391 28.008-58.391 27.861Q-58.391 27.239-57.236 27.239Q-57.024 27.239-56.774 27.303Q-56.525 27.366-56.323 27.485Q-56.121 27.605-55.995 27.790Q-55.868 27.974-55.868 28.217L-55.868 29.793Q-55.868 29.909-55.807 30.005Q-55.745 30.100-55.633 30.100Q-55.523 30.100-55.458 30.006Q-55.393 29.912-55.393 29.793L-55.393 29.345L-55.127 29.345L-55.127 29.793Q-55.127 30.063-55.354 30.228Q-55.581 30.394-55.862 30.394Q-56.070 30.394-56.207 30.240Q-56.343 30.087-56.367 29.871Q-56.514 30.138-56.796 30.283Q-57.078 30.428-57.403 30.428Q-57.680 30.428-57.964 30.353Q-58.247 30.278-58.440 30.099Q-58.633 29.919-58.633 29.632M-58.018 29.632Q-58.018 29.806-57.917 29.936Q-57.817 30.066-57.661 30.136Q-57.506 30.206-57.341 30.206Q-57.123 30.206-56.914 30.109Q-56.706 30.011-56.578 29.830Q-56.449 29.649-56.449 29.423L-56.449 28.695Q-56.774 28.695-57.140 28.786Q-57.506 28.877-57.762 29.089Q-58.018 29.300-58.018 29.632M-53.042 30.360L-54.645 30.360L-54.645 30.080Q-54.419 30.080-54.270 30.046Q-54.122 30.011-54.122 29.871L-54.122 26.252Q-54.122 25.982-54.229 25.920Q-54.337 25.859-54.645 25.859L-54.645 25.578L-53.568 25.503L-53.568 29.871Q-53.568 30.008-53.418 30.044Q-53.267 30.080-53.042 30.080L-53.042 30.360M-50.779 30.360L-52.382 30.360L-52.382 30.080Q-52.156 30.080-52.008 30.046Q-51.859 30.011-51.859 29.871L-51.859 26.252Q-51.859 25.982-51.967 25.920Q-52.074 25.859-52.382 25.859L-52.382 25.578L-51.305 25.503L-51.305 29.871Q-51.305 30.008-51.155 30.044Q-51.005 30.080-50.779 30.080L-50.779 30.360M-49.784 29.940Q-49.784 29.772-49.661 29.649Q-49.538 29.526-49.364 29.526Q-49.196 29.526-49.073 29.649Q-48.950 29.772-48.950 29.940Q-48.950 30.114-49.073 30.237Q-49.196 30.360-49.364 30.360Q-49.538 30.360-49.661 30.237Q-49.784 30.114-49.784 29.940M-49.784 27.756Q-49.784 27.588-49.661 27.465Q-49.538 27.342-49.364 27.342Q-49.196 27.342-49.073 27.465Q-48.950 27.588-48.950 27.756Q-48.950 27.930-49.073 28.053Q-49.196 28.176-49.364 28.176Q-49.538 28.176-49.661 28.053Q-49.784 27.930-49.784 27.756\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -25.38)\">\u003Cpath d=\"M-44.393 28.825Q-44.393 28.504-44.268 28.215Q-44.143 27.926-43.917 27.703Q-43.692 27.479-43.396 27.359Q-43.101 27.239-42.783 27.239Q-42.455 27.239-42.193 27.339Q-41.932 27.438-41.756 27.620Q-41.580 27.803-41.486 28.061Q-41.392 28.319-41.392 28.651Q-41.392 28.743-41.474 28.764L-43.729 28.764L-43.729 28.825Q-43.729 29.413-43.446 29.796Q-43.162 30.179-42.595 30.179Q-42.273 30.179-42.005 29.986Q-41.737 29.793-41.648 29.478Q-41.641 29.437-41.566 29.423L-41.474 29.423Q-41.392 29.447-41.392 29.519Q-41.392 29.526-41.398 29.553Q-41.511 29.950-41.882 30.189Q-42.253 30.428-42.677 30.428Q-43.114 30.428-43.514 30.220Q-43.914 30.011-44.153 29.644Q-44.393 29.277-44.393 28.825M-43.723 28.555L-41.908 28.555Q-41.908 28.278-42.005 28.026Q-42.103 27.773-42.301 27.617Q-42.499 27.462-42.783 27.462Q-43.060 27.462-43.273 27.620Q-43.487 27.779-43.605 28.034Q-43.723 28.289-43.723 28.555M-39.621 30.360L-40.944 30.360L-40.944 30.080Q-40.383 30.080-40.004 29.680L-39.290 28.883L-40.202 27.834Q-40.339 27.687-40.488 27.655Q-40.636 27.622-40.903 27.622L-40.903 27.342L-39.402 27.342L-39.402 27.622Q-39.594 27.622-39.594 27.756Q-39.594 27.786-39.563 27.834L-38.968 28.518L-38.527 28.022Q-38.415 27.892-38.415 27.776Q-38.415 27.714-38.452 27.668Q-38.490 27.622-38.548 27.622L-38.548 27.342L-37.232 27.342L-37.232 27.622Q-37.792 27.622-38.172 28.022L-38.794 28.723L-37.799 29.871Q-37.700 29.970-37.599 30.015Q-37.499 30.059-37.387 30.069Q-37.276 30.080-37.099 30.080L-37.099 30.360L-38.592 30.360L-38.592 30.080Q-38.527 30.080-38.468 30.046Q-38.408 30.011-38.408 29.946Q-38.408 29.899-38.438 29.871L-39.115 29.085L-39.648 29.680Q-39.761 29.810-39.761 29.926Q-39.761 29.991-39.720 30.035Q-39.679 30.080-39.621 30.080L-39.621 30.360M-34.959 31.717L-36.589 31.717L-36.589 31.437Q-36.360 31.437-36.212 31.402Q-36.063 31.368-36.063 31.228L-36.063 27.882Q-36.063 27.711-36.200 27.670Q-36.336 27.629-36.589 27.629L-36.589 27.349L-35.509 27.274L-35.509 27.680Q-35.287 27.479-35 27.376Q-34.713 27.274-34.405 27.274Q-33.978 27.274-33.614 27.487Q-33.250 27.701-33.036 28.065Q-32.823 28.429-32.823 28.849Q-32.823 29.294-33.062 29.658Q-33.301 30.022-33.694 30.225Q-34.087 30.428-34.532 30.428Q-34.798 30.428-35.046 30.328Q-35.294 30.227-35.482 30.046L-35.482 31.228Q-35.482 31.365-35.333 31.401Q-35.185 31.437-34.959 31.437L-34.959 31.717M-35.482 28.029L-35.482 29.639Q-35.349 29.892-35.106 30.049Q-34.863 30.206-34.586 30.206Q-34.258 30.206-34.005 30.005Q-33.752 29.803-33.619 29.485Q-33.486 29.167-33.486 28.849Q-33.486 28.620-33.551 28.391Q-33.616 28.162-33.744 27.964Q-33.872 27.766-34.067 27.646Q-34.262 27.527-34.494 27.527Q-34.788 27.527-35.056 27.656Q-35.325 27.786-35.482 28.029M-30.519 30.360L-32.122 30.360L-32.122 30.080Q-31.896 30.080-31.748 30.046Q-31.599 30.011-31.599 29.871L-31.599 26.252Q-31.599 25.982-31.707 25.920Q-31.814 25.859-32.122 25.859L-32.122 25.578L-31.045 25.503L-31.045 29.871Q-31.045 30.008-30.895 30.044Q-30.745 30.080-30.519 30.080L-30.519 30.360M-29.965 28.877Q-29.965 28.535-29.830 28.236Q-29.695 27.937-29.456 27.713Q-29.217 27.489-28.899 27.364Q-28.581 27.239-28.249 27.239Q-27.805 27.239-27.405 27.455Q-27.005 27.670-26.771 28.048Q-26.537 28.425-26.537 28.877Q-26.537 29.218-26.679 29.502Q-26.821 29.786-27.065 29.993Q-27.310 30.199-27.619 30.314Q-27.928 30.428-28.249 30.428Q-28.680 30.428-29.082 30.227Q-29.483 30.025-29.724 29.673Q-29.965 29.321-29.965 28.877M-28.249 30.179Q-27.648 30.179-27.424 29.801Q-27.200 29.423-27.200 28.791Q-27.200 28.179-27.434 27.820Q-27.668 27.462-28.249 27.462Q-29.302 27.462-29.302 28.791Q-29.302 29.423-29.077 29.801Q-28.851 30.179-28.249 30.179M-24.326 30.360L-25.877 30.360L-25.877 30.080Q-25.652 30.080-25.503 30.046Q-25.354 30.011-25.354 29.871L-25.354 28.022Q-25.354 27.834-25.402 27.750Q-25.450 27.667-25.548 27.648Q-25.645 27.629-25.857 27.629L-25.857 27.349L-24.801 27.274L-24.801 29.871Q-24.801 30.011-24.669 30.046Q-24.538 30.080-24.326 30.080L-24.326 30.360M-25.597 26.053Q-25.597 25.882-25.474 25.763Q-25.351 25.643-25.180 25.643Q-25.013 25.643-24.890 25.763Q-24.767 25.882-24.767 26.053Q-24.767 26.228-24.890 26.351Q-25.013 26.474-25.180 26.474Q-25.351 26.474-25.474 26.351Q-25.597 26.228-25.597 26.053M-23.153 29.519L-23.153 27.622L-23.792 27.622L-23.792 27.400Q-23.475 27.400-23.258 27.190Q-23.041 26.980-22.940 26.670Q-22.839 26.361-22.839 26.053L-22.572 26.053L-22.572 27.342L-21.496 27.342L-21.496 27.622L-22.572 27.622L-22.572 29.506Q-22.572 29.782-22.468 29.981Q-22.364 30.179-22.104 30.179Q-21.947 30.179-21.841 30.075Q-21.735 29.970-21.685 29.817Q-21.636 29.663-21.636 29.506L-21.636 29.092L-21.369 29.092L-21.369 29.519Q-21.369 29.745-21.468 29.955Q-21.567 30.165-21.752 30.297Q-21.937 30.428-22.166 30.428Q-22.603 30.428-22.878 30.191Q-23.153 29.953-23.153 29.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -25.38)\">\u003Cpath d=\"M-15.647 30.500Q-16.067 30.500-16.438 30.363Q-16.809 30.227-17.084 29.975Q-17.359 29.724-17.515 29.369Q-17.670 29.013-17.670 28.583Q-17.670 27.988-17.388 27.412Q-17.106 26.836-16.629 26.395Q-16.153 25.954-15.563 25.696Q-14.973 25.438-14.379 25.438Q-13.955 25.438-13.581 25.578Q-13.206 25.718-12.936 25.973Q-12.666 26.228-12.514 26.588Q-12.362 26.949-12.362 27.380Q-12.362 27.855-12.538 28.311Q-12.714 28.767-13.022 29.157Q-13.329 29.547-13.740 29.842Q-14.150 30.138-14.591 30.305Q-14.543 30.500-14.490 30.637Q-14.437 30.774-14.333 30.864Q-14.228 30.955-14.057 30.955Q-13.863 30.955-13.680 30.874Q-13.497 30.794-13.362 30.645Q-13.227 30.497-13.182 30.319Q-13.152 30.261-13.090 30.261Q-13.049 30.261-13.022 30.290Q-12.994 30.319-12.994 30.360Q-12.994 30.367-13.001 30.401Q-13.080 30.715-13.249 31.016Q-13.418 31.317-13.675 31.517Q-13.931 31.717-14.245 31.717Q-14.533 31.717-14.680 31.565Q-14.826 31.413-14.869 31.187Q-14.912 30.962-14.912 30.674L-14.912 30.401Q-15.281 30.500-15.647 30.500M-15.934 29.998Q-15.934 30.247-15.582 30.247Q-15.240 30.247-14.912 30.121Q-14.912 29.854-15.018 29.683Q-15.124 29.512-15.373 29.512Q-15.575 29.512-15.754 29.656Q-15.934 29.799-15.934 29.998M-16.156 30.005Q-16.156 29.806-16.042 29.644Q-15.927 29.482-15.742 29.386Q-15.558 29.290-15.367 29.290Q-15.066 29.290-14.903 29.487Q-14.741 29.683-14.659 30.018Q-14.184 29.776-13.818 29.314Q-13.452 28.853-13.261 28.299Q-13.070 27.745-13.070 27.195Q-13.070 26.877-13.159 26.600Q-13.247 26.323-13.422 26.122Q-13.596 25.920-13.856 25.806Q-14.116 25.691-14.444 25.691Q-15.155 25.691-15.734 26.161Q-16.313 26.631-16.638 27.350Q-16.963 28.070-16.963 28.764Q-16.963 29.235-16.754 29.611Q-16.546 29.987-16.136 30.152L-16.149 30.107Q-16.156 30.073-16.156 30.005\" 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\">The UCT exploration bonus \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1.24em;vertical-align:-0.305em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">c\u003C\u002Fspan>\u003Cspan class=\"mord sqrt\">\u003Cspan class=\"vlist-t vlist-t2\">\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.935em;\">\u003Cspan class=\"svg-align\" style=\"top:-3.2em;\">\u003Cspan class=\"pstrut\" style=\"height:3.2em;\">\u003C\u002Fspan>\u003Cspan class=\"mord\" style=\"padding-left:1em;\">\u003Cspan class=\"mop\">\u003Cspan class=\"mord mathrm\">ln\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">s\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003Cspan class=\"mord\">\u002F\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">s\u003C\u002Fspan>\u003Cspan class=\"mpunct\">,\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">a\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan style=\"top:-2.895em;\">\u003Cspan class=\"pstrut\" style=\"height:3.2em;\">\u003C\u002Fspan>\u003Cspan class=\"hide-tail\" style=\"min-width:1.02em;height:1.28em;\">\u003Csvg xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" width=\"400em\" height=\"1.28em\" viewBox=\"0 0 400000 1296\" preserveAspectRatio=\"xMinYMin slice\">\u003Cpath d=\"M263,681c0.7,0,18,39.7,52,119c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120c340,-704.7,510.7,-1060.3,512,-1067l0 -0c4.7,-7.3,11,-11,19,-11H40000v40H1012.3s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60zM1001 80h400000v40h-400000z\"\u002F>\u003C\u002Fsvg>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-s\">​\u003C\u002Fspan>\u003C\u002Fspan>\u003Cspan class=\"vlist-r\">\u003Cspan class=\"vlist\" style=\"height:0.305em;\">\u003Cspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> against the number of times an action has been tried, \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.109em;\">N\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">s\u003C\u002Fspan>\u003Cspan class=\"mpunct\">,\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">a\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>, at a fixed parent count. It falls steeply at first and flattens: seldom-tried actions get a large boost, and as an action accrues visits its selection is governed by its value estimate \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:1em;vertical-align:-0.25em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">Q\u003C\u002Fspan>\u003Cspan class=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">s\u003C\u002Fspan>\u003Cspan class=\"mpunct\">,\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">a\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:294.419px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 220.814 144.053\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-50.484 52.984h176.407\"\u002F>\u003Cg transform=\"translate(-11.787 2.256)\">\u003Cpath d=\"M-48.495 53.124Q-49.130 53.124-49.494 52.779Q-49.859 52.434-49.994 51.909Q-50.129 51.384-50.129 50.759Q-50.129 49.734-49.773 49.035Q-49.418 48.336-48.495 48.336Q-47.568 48.336-47.216 49.035Q-46.864 49.734-46.864 50.759Q-46.864 51.384-46.999 51.909Q-47.134 52.434-47.497 52.779Q-47.859 53.124-48.495 53.124M-48.495 52.899Q-48.057 52.899-47.844 52.524Q-47.630 52.150-47.580 51.683Q-47.531 51.217-47.531 50.639Q-47.531 50.086-47.580 49.658Q-47.630 49.231-47.842 48.896Q-48.054 48.561-48.495 48.561Q-48.837 48.561-49.040 48.768Q-49.243 48.975-49.330 49.287Q-49.418 49.600-49.440 49.916Q-49.462 50.233-49.462 50.639Q-49.462 51.056-49.440 51.398Q-49.418 51.740-49.329 52.088Q-49.240 52.437-49.035 52.668Q-48.830 52.899-48.495 52.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" d=\"M-39.103 52.984V15.426h19.918v37.558Zm19.918-37.558\"\u002F>\u003Cpath fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" d=\"M-39.103 15.426v-25.892h19.918v25.892Zm19.918-25.892\"\u002F>\u003Cg transform=\"translate(17.353 9.467)\">\u003Cpath d=\"M-50.111 52.256Q-50.111 51.924-49.888 51.697Q-49.664 51.470-49.320 51.342Q-48.977 51.213-48.604 51.161Q-48.232 51.108-47.927 51.108L-47.927 50.855Q-47.927 50.650-48.035 50.470Q-48.143 50.291-48.324 50.188Q-48.505 50.086-48.713 50.086Q-49.120 50.086-49.356 50.178Q-49.267 50.215-49.221 50.299Q-49.175 50.383-49.175 50.485Q-49.175 50.581-49.221 50.660Q-49.267 50.738-49.348 50.783Q-49.428 50.827-49.517 50.827Q-49.667 50.827-49.768 50.730Q-49.869 50.632-49.869 50.485Q-49.869 49.863-48.713 49.863Q-48.502 49.863-48.252 49.927Q-48.003 49.990-47.801 50.109Q-47.599 50.229-47.473 50.414Q-47.346 50.598-47.346 50.841L-47.346 52.417Q-47.346 52.533-47.285 52.629Q-47.223 52.724-47.110 52.724Q-47.001 52.724-46.936 52.630Q-46.871 52.536-46.871 52.417L-46.871 51.969L-46.605 51.969L-46.605 52.417Q-46.605 52.687-46.832 52.852Q-47.059 53.018-47.339 53.018Q-47.548 53.018-47.685 52.864Q-47.821 52.711-47.845 52.495Q-47.992 52.762-48.274 52.907Q-48.556 53.052-48.881 53.052Q-49.158 53.052-49.442 52.977Q-49.725 52.902-49.918 52.723Q-50.111 52.543-50.111 52.256M-49.496 52.256Q-49.496 52.430-49.395 52.560Q-49.295 52.690-49.139 52.760Q-48.984 52.830-48.819 52.830Q-48.601 52.830-48.392 52.733Q-48.184 52.635-48.056 52.454Q-47.927 52.273-47.927 52.047L-47.927 51.319Q-48.252 51.319-48.618 51.410Q-48.984 51.501-49.240 51.713Q-49.496 51.924-49.496 52.256M-43.176 52.984L-45.706 52.984L-45.706 52.704Q-44.738 52.704-44.738 52.495L-44.738 48.876Q-45.131 49.064-45.754 49.064L-45.754 48.783Q-45.337 48.783-44.973 48.682Q-44.609 48.582-44.352 48.336L-44.226 48.336Q-44.161 48.353-44.144 48.421L-44.144 52.495Q-44.144 52.704-43.176 52.704\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" d=\"M17.803 52.984V9.167H37.72v43.817ZM37.72 9.167\"\u002F>\u003Cpath fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" d=\"M17.803 9.167v-40.688H37.72V9.167ZM37.72-31.521\"\u002F>\u003Cg transform=\"translate(74.259 9.467)\">\u003Cpath d=\"M-50.111 52.256Q-50.111 51.924-49.888 51.697Q-49.664 51.470-49.320 51.342Q-48.977 51.213-48.604 51.161Q-48.232 51.108-47.927 51.108L-47.927 50.855Q-47.927 50.650-48.035 50.470Q-48.143 50.291-48.324 50.188Q-48.505 50.086-48.713 50.086Q-49.120 50.086-49.356 50.178Q-49.267 50.215-49.221 50.299Q-49.175 50.383-49.175 50.485Q-49.175 50.581-49.221 50.660Q-49.267 50.738-49.348 50.783Q-49.428 50.827-49.517 50.827Q-49.667 50.827-49.768 50.730Q-49.869 50.632-49.869 50.485Q-49.869 49.863-48.713 49.863Q-48.502 49.863-48.252 49.927Q-48.003 49.990-47.801 50.109Q-47.599 50.229-47.473 50.414Q-47.346 50.598-47.346 50.841L-47.346 52.417Q-47.346 52.533-47.285 52.629Q-47.223 52.724-47.110 52.724Q-47.001 52.724-46.936 52.630Q-46.871 52.536-46.871 52.417L-46.871 51.969L-46.605 51.969L-46.605 52.417Q-46.605 52.687-46.832 52.852Q-47.059 53.018-47.339 53.018Q-47.548 53.018-47.685 52.864Q-47.821 52.711-47.845 52.495Q-47.992 52.762-48.274 52.907Q-48.556 53.052-48.881 53.052Q-49.158 53.052-49.442 52.977Q-49.725 52.902-49.918 52.723Q-50.111 52.543-50.111 52.256M-49.496 52.256Q-49.496 52.430-49.395 52.560Q-49.295 52.690-49.139 52.760Q-48.984 52.830-48.819 52.830Q-48.601 52.830-48.392 52.733Q-48.184 52.635-48.056 52.454Q-47.927 52.273-47.927 52.047L-47.927 51.319Q-48.252 51.319-48.618 51.410Q-48.984 51.501-49.240 51.713Q-49.496 51.924-49.496 52.256M-43.176 52.984L-46.061 52.984L-46.061 52.782Q-46.061 52.752-46.034 52.724L-44.786 51.507Q-44.714 51.432-44.672 51.390Q-44.629 51.347-44.550 51.268Q-44.137 50.855-43.906 50.497Q-43.675 50.140-43.675 49.716Q-43.675 49.484-43.754 49.281Q-43.833 49.077-43.974 48.927Q-44.116 48.776-44.311 48.696Q-44.506 48.616-44.738 48.616Q-45.049 48.616-45.307 48.775Q-45.566 48.934-45.695 49.211L-45.675 49.211Q-45.507 49.211-45.400 49.322Q-45.292 49.433-45.292 49.597Q-45.292 49.754-45.401 49.867Q-45.511 49.980-45.675 49.980Q-45.836 49.980-45.948 49.867Q-46.061 49.754-46.061 49.597Q-46.061 49.221-45.853 48.934Q-45.644 48.647-45.309 48.491Q-44.974 48.336-44.619 48.336Q-44.195 48.336-43.816 48.494Q-43.436 48.653-43.202 48.970Q-42.968 49.286-42.968 49.716Q-42.968 50.027-43.108 50.296Q-43.248 50.564-43.453 50.769Q-43.658 50.974-44.021 51.256Q-44.383 51.538-44.492 51.634L-45.347 52.362L-44.704 52.362Q-44.441 52.362-44.152 52.360Q-43.863 52.359-43.645 52.350Q-43.426 52.341-43.409 52.324Q-43.347 52.259-43.310 52.092Q-43.272 51.924-43.234 51.682L-42.968 51.682\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-soft-warn)\" stroke=\"var(--tk-warn)\" d=\"M74.708 52.984V21.685h19.918v31.299Zm19.918-31.299\" style=\"stroke-width:.8\"\u002F>\u003Cpath fill=\"var(--tk-soft-warn)\" stroke=\"var(--tk-warn)\" d=\"M74.708 21.685v-81.659h19.918v81.66Zm19.918-81.659\" style=\"stroke-width:.8\"\u002F>\u003Cg transform=\"translate(131.164 9.467)\">\u003Cpath d=\"M-50.111 52.256Q-50.111 51.924-49.888 51.697Q-49.664 51.470-49.320 51.342Q-48.977 51.213-48.604 51.161Q-48.232 51.108-47.927 51.108L-47.927 50.855Q-47.927 50.650-48.035 50.470Q-48.143 50.291-48.324 50.188Q-48.505 50.086-48.713 50.086Q-49.120 50.086-49.356 50.178Q-49.267 50.215-49.221 50.299Q-49.175 50.383-49.175 50.485Q-49.175 50.581-49.221 50.660Q-49.267 50.738-49.348 50.783Q-49.428 50.827-49.517 50.827Q-49.667 50.827-49.768 50.730Q-49.869 50.632-49.869 50.485Q-49.869 49.863-48.713 49.863Q-48.502 49.863-48.252 49.927Q-48.003 49.990-47.801 50.109Q-47.599 50.229-47.473 50.414Q-47.346 50.598-47.346 50.841L-47.346 52.417Q-47.346 52.533-47.285 52.629Q-47.223 52.724-47.110 52.724Q-47.001 52.724-46.936 52.630Q-46.871 52.536-46.871 52.417L-46.871 51.969L-46.605 51.969L-46.605 52.417Q-46.605 52.687-46.832 52.852Q-47.059 53.018-47.339 53.018Q-47.548 53.018-47.685 52.864Q-47.821 52.711-47.845 52.495Q-47.992 52.762-48.274 52.907Q-48.556 53.052-48.881 53.052Q-49.158 53.052-49.442 52.977Q-49.725 52.902-49.918 52.723Q-50.111 52.543-50.111 52.256M-49.496 52.256Q-49.496 52.430-49.395 52.560Q-49.295 52.690-49.139 52.760Q-48.984 52.830-48.819 52.830Q-48.601 52.830-48.392 52.733Q-48.184 52.635-48.056 52.454Q-47.927 52.273-47.927 52.047L-47.927 51.319Q-48.252 51.319-48.618 51.410Q-48.984 51.501-49.240 51.713Q-49.496 51.924-49.496 52.256M-45.706 52.437Q-45.586 52.594-45.395 52.693Q-45.203 52.793-44.988 52.832Q-44.773 52.871-44.550 52.871Q-44.253 52.871-44.058 52.716Q-43.863 52.560-43.773 52.306Q-43.682 52.051-43.682 51.767Q-43.682 51.473-43.775 51.222Q-43.867 50.971-44.065 50.815Q-44.263 50.660-44.557 50.660L-45.073 50.660Q-45.101 50.660-45.126 50.634Q-45.152 50.609-45.152 50.585L-45.152 50.513Q-45.152 50.482-45.126 50.460Q-45.101 50.438-45.073 50.438L-44.632 50.407Q-44.270 50.407-44.050 50.050Q-43.829 49.692-43.829 49.303Q-43.829 48.975-44.024 48.771Q-44.219 48.568-44.550 48.568Q-44.838 48.568-45.090 48.652Q-45.343 48.735-45.507 48.923Q-45.360 48.923-45.260 49.038Q-45.159 49.152-45.159 49.303Q-45.159 49.453-45.265 49.563Q-45.371 49.672-45.528 49.672Q-45.689 49.672-45.798 49.563Q-45.907 49.453-45.907 49.303Q-45.907 48.978-45.699 48.759Q-45.490 48.541-45.174 48.438Q-44.858 48.336-44.550 48.336Q-44.233 48.336-43.904 48.440Q-43.576 48.544-43.349 48.766Q-43.122 48.988-43.122 49.303Q-43.122 49.737-43.409 50.062Q-43.696 50.386-44.130 50.533Q-43.819 50.598-43.539 50.764Q-43.258 50.930-43.081 51.188Q-42.903 51.446-42.903 51.767Q-42.903 52.177-43.147 52.487Q-43.392 52.796-43.773 52.960Q-44.154 53.124-44.550 53.124Q-44.920 53.124-45.277 53.011Q-45.634 52.899-45.878 52.649Q-46.123 52.400-46.123 52.030Q-46.123 51.859-46.006 51.747Q-45.890 51.634-45.719 51.634Q-45.610 51.634-45.519 51.685Q-45.429 51.736-45.374 51.829Q-45.319 51.921-45.319 52.030Q-45.319 52.198-45.432 52.317Q-45.545 52.437-45.706 52.437\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\">\u003Cg transform=\"translate(121.553 -117.06)\">\u003Cpath d=\"M-50.170 52.977L-50.170 51.914Q-50.170 51.890-50.142 51.863Q-50.115 51.836-50.091 51.836L-49.982 51.836Q-49.917 51.836-49.903 51.894Q-49.807 52.328-49.561 52.579Q-49.315 52.830-48.901 52.830Q-48.560 52.830-48.307 52.697Q-48.054 52.564-48.054 52.256Q-48.054 52.099-48.148 51.984Q-48.242 51.870-48.380 51.801Q-48.519 51.733-48.686 51.695L-49.267 51.596Q-49.623 51.528-49.896 51.307Q-50.170 51.087-50.170 50.745Q-50.170 50.496-50.058 50.321Q-49.947 50.147-49.761 50.048Q-49.575 49.949-49.359 49.906Q-49.144 49.863-48.901 49.863Q-48.488 49.863-48.208 50.045L-47.992 49.870Q-47.982 49.867-47.975 49.865Q-47.968 49.863-47.958 49.863L-47.907 49.863Q-47.880 49.863-47.856 49.887Q-47.832 49.911-47.832 49.939L-47.832 50.786Q-47.832 50.807-47.856 50.834Q-47.880 50.861-47.907 50.861L-48.020 50.861Q-48.047 50.861-48.073 50.836Q-48.098 50.810-48.098 50.786Q-48.098 50.550-48.204 50.386Q-48.310 50.222-48.493 50.140Q-48.676 50.058-48.908 50.058Q-49.236 50.058-49.493 50.161Q-49.749 50.263-49.749 50.540Q-49.749 50.735-49.566 50.844Q-49.383 50.954-49.154 50.995L-48.580 51.101Q-48.334 51.149-48.120 51.277Q-47.907 51.405-47.770 51.608Q-47.633 51.812-47.633 52.061Q-47.633 52.574-47.999 52.813Q-48.365 53.052-48.901 53.052Q-49.397 53.052-49.729 52.758L-49.995 53.032Q-50.016 53.052-50.043 53.052L-50.091 53.052Q-50.115 53.052-50.142 53.025Q-50.170 52.998-50.170 52.977M-47.046 51.449Q-47.046 51.128-46.921 50.839Q-46.796 50.550-46.570 50.327Q-46.345 50.103-46.049 49.983Q-45.754 49.863-45.436 49.863Q-45.108 49.863-44.846 49.963Q-44.585 50.062-44.409 50.244Q-44.233 50.427-44.139 50.685Q-44.045 50.943-44.045 51.275Q-44.045 51.367-44.127 51.388L-46.382 51.388L-46.382 51.449Q-46.382 52.037-46.099 52.420Q-45.815 52.803-45.248 52.803Q-44.926 52.803-44.658 52.610Q-44.390 52.417-44.301 52.102Q-44.294 52.061-44.219 52.047L-44.127 52.047Q-44.045 52.071-44.045 52.143Q-44.045 52.150-44.051 52.177Q-44.164 52.574-44.535 52.813Q-44.906 53.052-45.330 53.052Q-45.767 53.052-46.167 52.844Q-46.567 52.635-46.806 52.268Q-47.046 51.901-47.046 51.449M-46.376 51.179L-44.561 51.179Q-44.561 50.902-44.658 50.650Q-44.755 50.397-44.954 50.241Q-45.152 50.086-45.436 50.086Q-45.713 50.086-45.926 50.244Q-46.140 50.403-46.258 50.658Q-46.376 50.913-46.376 51.179M-41.789 52.984L-43.392 52.984L-43.392 52.704Q-43.166 52.704-43.017 52.670Q-42.869 52.635-42.869 52.495L-42.869 48.876Q-42.869 48.606-42.976 48.544Q-43.084 48.483-43.392 48.483L-43.392 48.202L-42.315 48.127L-42.315 52.495Q-42.315 52.632-42.165 52.668Q-42.014 52.704-41.789 52.704L-41.789 52.984M-41.235 51.449Q-41.235 51.128-41.110 50.839Q-40.985 50.550-40.760 50.327Q-40.534 50.103-40.239 49.983Q-39.943 49.863-39.625 49.863Q-39.297 49.863-39.036 49.963Q-38.774 50.062-38.598 50.244Q-38.422 50.427-38.328 50.685Q-38.234 50.943-38.234 51.275Q-38.234 51.367-38.316 51.388L-40.572 51.388L-40.572 51.449Q-40.572 52.037-40.288 52.420Q-40.005 52.803-39.437 52.803Q-39.116 52.803-38.848 52.610Q-38.579 52.417-38.490 52.102Q-38.484 52.061-38.408 52.047L-38.316 52.047Q-38.234 52.071-38.234 52.143Q-38.234 52.150-38.241 52.177Q-38.354 52.574-38.724 52.813Q-39.095 53.052-39.519 53.052Q-39.957 53.052-40.357 52.844Q-40.756 52.635-40.996 52.268Q-41.235 51.901-41.235 51.449M-40.565 51.179L-38.750 51.179Q-38.750 50.902-38.848 50.650Q-38.945 50.397-39.143 50.241Q-39.341 50.086-39.625 50.086Q-39.902 50.086-40.116 50.244Q-40.329 50.403-40.447 50.658Q-40.565 50.913-40.565 51.179M-37.646 51.473Q-37.646 51.145-37.511 50.844Q-37.376 50.544-37.140 50.323Q-36.904 50.103-36.600 49.983Q-36.296 49.863-35.971 49.863Q-35.465 49.863-35.117 49.966Q-34.768 50.068-34.768 50.444Q-34.768 50.591-34.866 50.692Q-34.963 50.793-35.110 50.793Q-35.264 50.793-35.363 50.694Q-35.462 50.595-35.462 50.444Q-35.462 50.256-35.322 50.164Q-35.524 50.113-35.964 50.113Q-36.320 50.113-36.549 50.309Q-36.778 50.506-36.879 50.815Q-36.980 51.125-36.980 51.473Q-36.980 51.822-36.853 52.128Q-36.727 52.434-36.472 52.618Q-36.217 52.803-35.862 52.803Q-35.640 52.803-35.455 52.719Q-35.271 52.635-35.136 52.480Q-35.001 52.324-34.942 52.116Q-34.929 52.061-34.874 52.061L-34.761 52.061Q-34.731 52.061-34.708 52.085Q-34.686 52.109-34.686 52.143L-34.686 52.164Q-34.772 52.451-34.960 52.649Q-35.148 52.847-35.412 52.950Q-35.677 53.052-35.971 53.052Q-36.402 53.052-36.790 52.846Q-37.178 52.639-37.412 52.276Q-37.646 51.914-37.646 51.473M-33.572 52.143L-33.572 50.246L-34.211 50.246L-34.211 50.024Q-33.893 50.024-33.676 49.814Q-33.459 49.604-33.358 49.294Q-33.257 48.985-33.257 48.677L-32.991 48.677L-32.991 49.966L-31.914 49.966L-31.914 50.246L-32.991 50.246L-32.991 52.130Q-32.991 52.406-32.887 52.605Q-32.782 52.803-32.523 52.803Q-32.365 52.803-32.259 52.699Q-32.153 52.594-32.104 52.441Q-32.054 52.287-32.054 52.130L-32.054 51.716L-31.788 51.716L-31.788 52.143Q-31.788 52.369-31.887 52.579Q-31.986 52.789-32.171 52.921Q-32.355 53.052-32.584 53.052Q-33.022 53.052-33.297 52.815Q-33.572 52.577-33.572 52.143M-31.019 51.449Q-31.019 51.128-30.894 50.839Q-30.769 50.550-30.544 50.327Q-30.318 50.103-30.022 49.983Q-29.727 49.863-29.409 49.863Q-29.081 49.863-28.819 49.963Q-28.558 50.062-28.382 50.244Q-28.206 50.427-28.112 50.685Q-28.018 50.943-28.018 51.275Q-28.018 51.367-28.100 51.388L-30.356 51.388L-30.356 51.449Q-30.356 52.037-30.072 52.420Q-29.788 52.803-29.221 52.803Q-28.900 52.803-28.631 52.610Q-28.363 52.417-28.274 52.102Q-28.267 52.061-28.192 52.047L-28.100 52.047Q-28.018 52.071-28.018 52.143Q-28.018 52.150-28.025 52.177Q-28.137 52.574-28.508 52.813Q-28.879 53.052-29.303 53.052Q-29.740 53.052-30.140 52.844Q-30.540 52.635-30.779 52.268Q-31.019 51.901-31.019 51.449M-30.349 51.179L-28.534 51.179Q-28.534 50.902-28.631 50.650Q-28.729 50.397-28.927 50.241Q-29.125 50.086-29.409 50.086Q-29.686 50.086-29.899 50.244Q-30.113 50.403-30.231 50.658Q-30.349 50.913-30.349 51.179M-27.430 51.473Q-27.430 51.135-27.290 50.844Q-27.150 50.554-26.905 50.340Q-26.661 50.127-26.357 50.012Q-26.052 49.898-25.728 49.898Q-25.458 49.898-25.194 49.997Q-24.931 50.096-24.740 50.274L-24.740 48.876Q-24.740 48.606-24.848 48.544Q-24.955 48.483-25.266 48.483L-25.266 48.202L-24.190 48.127L-24.190 52.311Q-24.190 52.499-24.135 52.582Q-24.080 52.666-23.979 52.685Q-23.879 52.704-23.663 52.704L-23.663 52.984L-24.771 53.052L-24.771 52.635Q-25.188 53.052-25.813 53.052Q-26.244 53.052-26.616 52.840Q-26.989 52.629-27.209 52.268Q-27.430 51.907-27.430 51.473M-25.755 52.830Q-25.547 52.830-25.360 52.758Q-25.174 52.687-25.020 52.550Q-24.866 52.413-24.771 52.235L-24.771 50.626Q-24.856 50.479-25.001 50.359Q-25.147 50.239-25.316 50.180Q-25.485 50.120-25.666 50.120Q-26.227 50.120-26.495 50.509Q-26.763 50.899-26.763 51.480Q-26.763 52.051-26.529 52.441Q-26.295 52.830-25.755 52.830\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(162.869 -60.165)\">\u003Cpath d=\"M-49.363 52.984L-49.630 52.984L-49.630 48.876Q-49.630 48.606-49.737 48.544Q-49.845 48.483-50.156 48.483L-50.156 48.202L-49.076 48.127L-49.076 50.297Q-48.867 50.106-48.582 50.002Q-48.297 49.898-47.999 49.898Q-47.681 49.898-47.384 50.019Q-47.087 50.140-46.864 50.356Q-46.642 50.571-46.516 50.856Q-46.389 51.142-46.389 51.473Q-46.389 51.918-46.629 52.282Q-46.868 52.646-47.261 52.849Q-47.654 53.052-48.098 53.052Q-48.293 53.052-48.483 52.996Q-48.672 52.940-48.833 52.835Q-48.994 52.731-49.134 52.570L-49.363 52.984M-49.048 50.639L-49.048 52.256Q-48.912 52.516-48.671 52.673Q-48.430 52.830-48.153 52.830Q-47.859 52.830-47.647 52.723Q-47.435 52.615-47.302 52.423Q-47.169 52.232-47.110 51.993Q-47.052 51.754-47.052 51.473Q-47.052 51.114-47.146 50.810Q-47.240 50.506-47.468 50.313Q-47.695 50.120-48.061 50.120Q-48.361 50.120-48.628 50.256Q-48.895 50.393-49.048 50.639\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.869 -60.165)\">\u003Cpath d=\"M-45.579 51.501Q-45.579 51.159-45.444 50.860Q-45.309 50.561-45.069 50.337Q-44.830 50.113-44.512 49.988Q-44.194 49.863-43.863 49.863Q-43.418 49.863-43.019 50.079Q-42.619 50.294-42.384 50.672Q-42.150 51.049-42.150 51.501Q-42.150 51.842-42.292 52.126Q-42.434 52.410-42.678 52.617Q-42.923 52.823-43.232 52.938Q-43.541 53.052-43.863 53.052Q-44.293 53.052-44.695 52.851Q-45.097 52.649-45.338 52.297Q-45.579 51.945-45.579 51.501M-43.863 52.803Q-43.261 52.803-43.037 52.425Q-42.813 52.047-42.813 51.415Q-42.813 50.803-43.048 50.444Q-43.282 50.086-43.863 50.086Q-44.915 50.086-44.915 51.415Q-44.915 52.047-44.690 52.425Q-44.464 52.803-43.863 52.803M-39.874 52.984L-41.508 52.984L-41.508 52.704Q-41.279 52.704-41.130 52.670Q-40.981 52.635-40.981 52.495L-40.981 50.646Q-40.981 50.376-41.089 50.315Q-41.197 50.253-41.508 50.253L-41.508 49.973L-40.448 49.898L-40.448 50.547Q-40.277 50.239-39.973 50.068Q-39.669 49.898-39.324 49.898Q-38.818 49.898-38.534 50.121Q-38.250 50.345-38.250 50.841L-38.250 52.495Q-38.250 52.632-38.102 52.668Q-37.953 52.704-37.727 52.704L-37.727 52.984L-39.358 52.984L-39.358 52.704Q-39.129 52.704-38.980 52.670Q-38.831 52.635-38.831 52.495L-38.831 50.855Q-38.831 50.520-38.951 50.320Q-39.071 50.120-39.385 50.120Q-39.655 50.120-39.889 50.256Q-40.123 50.393-40.262 50.627Q-40.400 50.861-40.400 51.135L-40.400 52.495Q-40.400 52.632-40.250 52.668Q-40.100 52.704-39.874 52.704\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.869 -60.165)\">\u003Cpath d=\"M-36.775 52.150L-36.775 50.646Q-36.775 50.376-36.883 50.315Q-36.991 50.253-37.302 50.253L-37.302 49.973L-36.194 49.898L-36.194 52.130L-36.194 52.150Q-36.194 52.430-36.143 52.574Q-36.092 52.717-35.950 52.774Q-35.808 52.830-35.521 52.830Q-35.268 52.830-35.063 52.690Q-34.858 52.550-34.742 52.324Q-34.625 52.099-34.625 51.849L-34.625 50.646Q-34.625 50.376-34.733 50.315Q-34.841 50.253-35.152 50.253L-35.152 49.973L-34.044 49.898L-34.044 52.311Q-34.044 52.502-33.991 52.584Q-33.938 52.666-33.838 52.685Q-33.737 52.704-33.521 52.704L-33.521 52.984L-34.598 53.052L-34.598 52.488Q-34.707 52.670-34.853 52.793Q-34.998 52.916-35.184 52.984Q-35.371 53.052-35.572 53.052Q-36.775 53.052-36.775 52.150M-32.934 52.977L-32.934 51.914Q-32.934 51.890-32.906 51.863Q-32.879 51.836-32.855 51.836L-32.746 51.836Q-32.681 51.836-32.667 51.894Q-32.571 52.328-32.325 52.579Q-32.079 52.830-31.665 52.830Q-31.324 52.830-31.071 52.697Q-30.818 52.564-30.818 52.256Q-30.818 52.099-30.912 51.984Q-31.006 51.870-31.144 51.801Q-31.283 51.733-31.450 51.695L-32.031 51.596Q-32.387 51.528-32.660 51.307Q-32.934 51.087-32.934 50.745Q-32.934 50.496-32.822 50.321Q-32.711 50.147-32.525 50.048Q-32.339 49.949-32.123 49.906Q-31.908 49.863-31.665 49.863Q-31.252 49.863-30.972 50.045L-30.756 49.870Q-30.746 49.867-30.739 49.865Q-30.732 49.863-30.722 49.863L-30.671 49.863Q-30.643 49.863-30.620 49.887Q-30.596 49.911-30.596 49.939L-30.596 50.786Q-30.596 50.807-30.620 50.834Q-30.643 50.861-30.671 50.861L-30.784 50.861Q-30.811 50.861-30.837 50.836Q-30.862 50.810-30.862 50.786Q-30.862 50.550-30.968 50.386Q-31.074 50.222-31.257 50.140Q-31.440 50.058-31.672 50.058Q-32 50.058-32.257 50.161Q-32.513 50.263-32.513 50.540Q-32.513 50.735-32.330 50.844Q-32.147 50.954-31.918 50.995L-31.344 51.101Q-31.098 51.149-30.884 51.277Q-30.671 51.405-30.534 51.608Q-30.397 51.812-30.397 52.061Q-30.397 52.574-30.763 52.813Q-31.129 53.052-31.665 53.052Q-32.161 53.052-32.493 52.758L-32.759 53.032Q-32.780 53.052-32.807 53.052L-32.855 53.052Q-32.879 53.052-32.906 53.025Q-32.934 52.998-32.934 52.977\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(162.869 -18.167)\">\u003Cpath d=\"M-48.580 52.957L-49.708 50.458Q-49.780 50.311-49.910 50.279Q-50.040 50.246-50.269 50.246L-50.269 49.966L-48.755 49.966L-48.755 50.246Q-49.107 50.246-49.107 50.393Q-49.107 50.438-49.096 50.458L-48.232 52.376L-47.452 50.646Q-47.418 50.578-47.418 50.499Q-47.418 50.386-47.502 50.316Q-47.586 50.246-47.705 50.246L-47.705 49.966L-46.509 49.966L-46.509 50.246Q-46.728 50.246-46.899 50.349Q-47.069 50.451-47.158 50.646L-48.194 52.957Q-48.242 53.052-48.348 53.052L-48.426 53.052Q-48.532 53.052-48.580 52.957\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.869 -18.167)\">\u003Cpath d=\"M-46.340 52.256Q-46.340 51.924-46.117 51.697Q-45.893 51.470-45.549 51.342Q-45.206 51.213-44.833 51.161Q-44.461 51.108-44.156 51.108L-44.156 50.855Q-44.156 50.650-44.264 50.470Q-44.372 50.291-44.553 50.188Q-44.734 50.086-44.942 50.086Q-45.349 50.086-45.585 50.178Q-45.496 50.215-45.450 50.299Q-45.404 50.383-45.404 50.485Q-45.404 50.581-45.450 50.660Q-45.496 50.738-45.577 50.783Q-45.657 50.827-45.746 50.827Q-45.896 50.827-45.997 50.730Q-46.098 50.632-46.098 50.485Q-46.098 49.863-44.942 49.863Q-44.731 49.863-44.481 49.927Q-44.232 49.990-44.030 50.109Q-43.828 50.229-43.702 50.414Q-43.575 50.598-43.575 50.841L-43.575 52.417Q-43.575 52.533-43.514 52.629Q-43.452 52.724-43.339 52.724Q-43.230 52.724-43.165 52.630Q-43.100 52.536-43.100 52.417L-43.100 51.969L-42.834 51.969L-42.834 52.417Q-42.834 52.687-43.061 52.852Q-43.288 53.018-43.568 53.018Q-43.777 53.018-43.914 52.864Q-44.050 52.711-44.074 52.495Q-44.221 52.762-44.503 52.907Q-44.785 53.052-45.110 53.052Q-45.387 53.052-45.671 52.977Q-45.954 52.902-46.147 52.723Q-46.340 52.543-46.340 52.256M-45.725 52.256Q-45.725 52.430-45.624 52.560Q-45.524 52.690-45.368 52.760Q-45.213 52.830-45.048 52.830Q-44.830 52.830-44.621 52.733Q-44.413 52.635-44.285 52.454Q-44.156 52.273-44.156 52.047L-44.156 51.319Q-44.481 51.319-44.847 51.410Q-45.213 51.501-45.469 51.713Q-45.725 51.924-45.725 52.256M-40.749 52.984L-42.352 52.984L-42.352 52.704Q-42.126 52.704-41.977 52.670Q-41.829 52.635-41.829 52.495L-41.829 48.876Q-41.829 48.606-41.936 48.544Q-42.044 48.483-42.352 48.483L-42.352 48.202L-41.275 48.127L-41.275 52.495Q-41.275 52.632-41.125 52.668Q-40.974 52.704-40.749 52.704L-40.749 52.984M-39.580 52.150L-39.580 50.646Q-39.580 50.376-39.687 50.315Q-39.795 50.253-40.106 50.253L-40.106 49.973L-38.999 49.898L-38.999 52.130L-38.999 52.150Q-38.999 52.430-38.947 52.574Q-38.896 52.717-38.754 52.774Q-38.612 52.830-38.325 52.830Q-38.072 52.830-37.867 52.690Q-37.662 52.550-37.546 52.324Q-37.430 52.099-37.430 51.849L-37.430 50.646Q-37.430 50.376-37.537 50.315Q-37.645 50.253-37.956 50.253L-37.956 49.973L-36.849 49.898L-36.849 52.311Q-36.849 52.502-36.796 52.584Q-36.743 52.666-36.642 52.685Q-36.541 52.704-36.326 52.704L-36.326 52.984L-37.402 53.052L-37.402 52.488Q-37.512 52.670-37.657 52.793Q-37.802 52.916-37.989 52.984Q-38.175 53.052-38.377 53.052Q-39.580 53.052-39.580 52.150M-35.779 51.449Q-35.779 51.128-35.654 50.839Q-35.529 50.550-35.304 50.327Q-35.078 50.103-34.783 49.983Q-34.487 49.863-34.169 49.863Q-33.841 49.863-33.579 49.963Q-33.318 50.062-33.142 50.244Q-32.966 50.427-32.872 50.685Q-32.778 50.943-32.778 51.275Q-32.778 51.367-32.860 51.388L-35.116 51.388L-35.116 51.449Q-35.116 52.037-34.832 52.420Q-34.548 52.803-33.981 52.803Q-33.660 52.803-33.391 52.610Q-33.123 52.417-33.034 52.102Q-33.027 52.061-32.952 52.047L-32.860 52.047Q-32.778 52.071-32.778 52.143Q-32.778 52.150-32.785 52.177Q-32.898 52.574-33.268 52.813Q-33.639 53.052-34.063 53.052Q-34.501 53.052-34.901 52.844Q-35.300 52.635-35.540 52.268Q-35.779 51.901-35.779 51.449M-35.109 51.179L-33.294 51.179Q-33.294 50.902-33.391 50.650Q-33.489 50.397-33.687 50.241Q-33.885 50.086-34.169 50.086Q-34.446 50.086-34.660 50.244Q-34.873 50.403-34.991 50.658Q-35.109 50.913-35.109 51.179\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(162.869 -18.167)\">\u003Cpath d=\"M-26.730 53.124Q-27.243 53.124-27.711 52.931Q-28.179 52.738-28.538 52.396Q-28.897 52.054-29.102 51.593Q-29.307 51.131-29.307 50.619Q-29.307 49.932-28.959 49.342Q-28.610 48.753-28.015 48.407Q-27.421 48.062-26.730 48.062Q-26.040 48.062-25.445 48.407Q-24.850 48.753-24.502 49.342Q-24.153 49.932-24.153 50.619Q-24.153 50.984-24.264 51.337Q-24.375 51.689-24.584 51.998Q-24.792 52.307-25.076 52.540Q-25.359 52.772-25.715 52.922Q-25.629 53.097-25.532 53.240Q-25.435 53.384-25.305 53.474Q-25.175 53.565-25.001 53.565Q-24.731 53.565-24.519 53.398Q-24.307 53.230-24.307 52.970Q-24.283 52.885-24.211 52.885Q-24.163 52.885-24.138 52.916Q-24.112 52.946-24.112 52.998Q-24.112 53.305-24.209 53.615Q-24.307 53.924-24.517 54.132Q-24.727 54.341-25.048 54.341Q-25.448 54.341-25.636 54.067Q-25.824 53.794-25.947 53.312L-26.016 53.025Q-26.371 53.124-26.730 53.124M-27.157 52.509Q-27.157 52.676-27.031 52.774Q-26.904 52.871-26.730 52.871Q-26.392 52.871-26.094 52.745Q-26.187 52.461-26.327 52.299Q-26.467 52.136-26.730 52.136Q-26.898 52.136-27.027 52.242Q-27.157 52.348-27.157 52.509M-27.379 52.509Q-27.379 52.256-27.183 52.085Q-26.986 51.914-26.730 51.914Q-26.422 51.914-26.223 52.106Q-26.023 52.297-25.855 52.629Q-25.517 52.423-25.306 52.111Q-25.096 51.798-24.999 51.417Q-24.901 51.036-24.901 50.619Q-24.901 50.181-25.011 49.773Q-25.120 49.364-25.349 49.033Q-25.578 48.701-25.925 48.508Q-26.272 48.315-26.730 48.315Q-27.185 48.315-27.533 48.510Q-27.882 48.705-28.108 49.033Q-28.333 49.361-28.446 49.771Q-28.559 50.181-28.559 50.619Q-28.559 51.084-28.432 51.514Q-28.306 51.945-28.025 52.276Q-27.745 52.608-27.318 52.769Q-27.379 52.652-27.379 52.509\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">A UCT selection at a root visited 30 times, c = 1. Each bar is an action&#39;s UCT score, split into its value Q(s,a) (solid) and its exploration bonus (light). Action a3 has the lowest value but by far the largest bonus (only 2 visits), so UCT picks it: exploration wins when a promising action is under-sampled.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:575.212px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 431.409 32.407\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-61.87-46.263h89.847V-71.87H-61.87Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M17.085-68.649L17.085-71.356Q17.085-71.567 16.363-71.567L16.363-71.848L18.496-71.848L18.496-71.567Q17.775-71.567 17.775-71.356L17.775-68.669Q17.775-68.252 17.912-67.924Q18.048-67.596 18.330-67.401Q18.612-67.206 19.036-67.206Q19.340-67.206 19.609-67.316Q19.877-67.425 20.077-67.625Q20.277-67.825 20.388-68.091Q20.499-68.358 20.499-68.669L20.499-71.168Q20.499-71.567 19.778-71.567L19.778-71.848L21.501-71.848L21.501-71.567Q20.779-71.567 20.779-71.168L20.779-68.649Q20.779-68.187 20.542-67.787Q20.304-67.387 19.901-67.157Q19.498-66.926 19.036-66.926Q18.551-66.926 18.098-67.145Q17.645-67.363 17.365-67.758Q17.085-68.153 17.085-68.649M22.372-69.459Q22.372-69.985 22.589-70.453Q22.806-70.921 23.189-71.267Q23.572-71.612 24.056-71.800Q24.539-71.988 25.069-71.988Q25.472-71.988 25.836-71.831Q26.200-71.673 26.484-71.379L26.908-71.961Q26.942-71.988 26.966-71.988L27.014-71.988Q27.045-71.988 27.068-71.964Q27.092-71.940 27.092-71.909L27.092-70.046Q27.092-70.023 27.067-69.997Q27.041-69.971 27.014-69.971L26.887-69.971Q26.826-69.971 26.812-70.046Q26.781-70.361 26.646-70.665Q26.511-70.969 26.296-71.203Q26.081-71.438 25.792-71.573Q25.503-71.708 25.175-71.708Q24.532-71.708 24.074-71.414Q23.616-71.120 23.384-70.607Q23.151-70.094 23.151-69.459Q23.151-68.987 23.281-68.578Q23.411-68.170 23.671-67.857Q23.931-67.545 24.310-67.375Q24.690-67.206 25.182-67.206Q25.510-67.206 25.804-67.322Q26.098-67.439 26.332-67.654Q26.566-67.869 26.696-68.158Q26.826-68.447 26.826-68.775Q26.826-68.802 26.853-68.826Q26.880-68.850 26.901-68.850L27.014-68.850Q27.051-68.850 27.072-68.825Q27.092-68.799 27.092-68.761Q27.092-68.365 26.927-68.028Q26.761-67.691 26.474-67.444Q26.187-67.196 25.817-67.061Q25.448-66.926 25.069-66.926Q24.549-66.926 24.057-67.116Q23.565-67.305 23.186-67.649Q22.806-67.992 22.589-68.461Q22.372-68.929 22.372-69.459M31.809-67.066L29.071-67.066L29.071-67.346Q29.420-67.346 29.757-67.382Q30.093-67.418 30.093-67.555L30.093-71.356Q30.093-71.499 30.005-71.533Q29.916-71.567 29.731-71.567L29.372-71.567Q29.071-71.567 28.856-71.520Q28.641-71.472 28.484-71.315Q28.347-71.181 28.287-70.903Q28.227-70.624 28.190-70.211L27.923-70.211L28.070-71.848L32.804-71.848L32.951-70.211L32.684-70.211Q32.647-70.624 32.590-70.901Q32.534-71.178 32.390-71.315Q32.230-71.475 32.018-71.521Q31.806-71.567 31.502-71.567L31.150-71.567Q30.965-71.567 30.876-71.533Q30.787-71.499 30.787-71.356L30.787-67.555Q30.787-67.418 31.124-67.382Q31.461-67.346 31.809-67.346\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M-14.503-57.316Q-15.053-57.716-15.424-58.271Q-15.795-58.827-15.976-59.473Q-16.157-60.119-16.157-60.816Q-16.157-61.329-16.057-61.824Q-15.956-62.320-15.751-62.771Q-15.546-63.222-15.233-63.614Q-14.920-64.005-14.503-64.309Q-14.493-64.313-14.486-64.314Q-14.479-64.316-14.469-64.316L-14.401-64.316Q-14.366-64.316-14.344-64.292Q-14.322-64.268-14.322-64.231Q-14.322-64.186-14.349-64.169Q-14.698-63.868-14.951-63.484Q-15.204-63.099-15.356-62.658Q-15.508-62.217-15.580-61.761Q-15.652-61.305-15.652-60.816Q-15.652-59.815-15.342-58.928Q-15.033-58.041-14.349-57.456Q-14.322-57.439-14.322-57.395Q-14.322-57.357-14.344-57.333Q-14.366-57.309-14.401-57.309L-14.469-57.309Q-14.476-57.313-14.484-57.314Q-14.493-57.316-14.503-57.316M-13.512-60.577Q-13.512-60.905-13.377-61.206Q-13.242-61.506-13.006-61.727Q-12.770-61.947-12.466-62.067Q-12.162-62.187-11.837-62.187Q-11.331-62.187-10.983-62.084Q-10.634-61.982-10.634-61.606Q-10.634-61.459-10.731-61.358Q-10.829-61.257-10.976-61.257Q-11.130-61.257-11.229-61.356Q-11.328-61.455-11.328-61.606Q-11.328-61.794-11.188-61.886Q-11.389-61.937-11.830-61.937Q-12.186-61.937-12.415-61.741Q-12.644-61.544-12.745-61.235Q-12.845-60.925-12.845-60.577Q-12.845-60.228-12.719-59.922Q-12.593-59.616-12.338-59.432Q-12.083-59.247-11.728-59.247Q-11.506-59.247-11.321-59.331Q-11.136-59.415-11.001-59.570Q-10.866-59.726-10.808-59.934Q-10.795-59.989-10.740-59.989L-10.627-59.989Q-10.596-59.989-10.574-59.965Q-10.552-59.941-10.552-59.907L-10.552-59.886Q-10.637-59.599-10.825-59.401Q-11.013-59.203-11.278-59.100Q-11.543-58.998-11.837-58.998Q-12.268-58.998-12.656-59.204Q-13.044-59.411-13.278-59.774Q-13.512-60.136-13.512-60.577M-10.005-60.549Q-10.005-60.891-9.870-61.190Q-9.735-61.489-9.496-61.713Q-9.257-61.937-8.939-62.062Q-8.621-62.187-8.289-62.187Q-7.845-62.187-7.445-61.971Q-7.045-61.756-6.811-61.378Q-6.577-61.001-6.577-60.549Q-6.577-60.208-6.719-59.924Q-6.861-59.640-7.105-59.433Q-7.349-59.227-7.659-59.112Q-7.968-58.998-8.289-58.998Q-8.720-58.998-9.122-59.199Q-9.523-59.401-9.764-59.753Q-10.005-60.105-10.005-60.549M-8.289-59.247Q-7.688-59.247-7.464-59.625Q-7.240-60.003-7.240-60.635Q-7.240-61.247-7.474-61.606Q-7.708-61.964-8.289-61.964Q-9.342-61.964-9.342-60.635Q-9.342-60.003-9.116-59.625Q-8.891-59.247-8.289-59.247M-4.301-59.066L-5.934-59.066L-5.934-59.346Q-5.705-59.346-5.557-59.380Q-5.408-59.415-5.408-59.555L-5.408-61.404Q-5.408-61.674-5.516-61.735Q-5.623-61.797-5.934-61.797L-5.934-62.077L-4.875-62.152L-4.875-61.503Q-4.704-61.811-4.400-61.982Q-4.095-62.152-3.750-62.152Q-3.244-62.152-2.961-61.929Q-2.677-61.705-2.677-61.209L-2.677-59.555Q-2.677-59.418-2.528-59.382Q-2.380-59.346-2.154-59.346L-2.154-59.066L-3.784-59.066L-3.784-59.346Q-3.555-59.346-3.407-59.380Q-3.258-59.415-3.258-59.555L-3.258-61.195Q-3.258-61.530-3.378-61.730Q-3.497-61.930-3.812-61.930Q-4.082-61.930-4.316-61.794Q-4.550-61.657-4.688-61.423Q-4.827-61.189-4.827-60.915L-4.827-59.555Q-4.827-59.418-4.676-59.382Q-4.526-59.346-4.301-59.346\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M-0.174-59.093L-1.302-61.592Q-1.374-61.739-1.504-61.771Q-1.634-61.804-1.863-61.804L-1.863-62.084L-0.349-62.084L-0.349-61.804Q-0.701-61.804-0.701-61.657Q-0.701-61.612-0.690-61.592L0.174-59.674L0.954-61.404Q0.988-61.472 0.988-61.551Q0.988-61.664 0.904-61.734Q0.820-61.804 0.701-61.804L0.701-62.084L1.897-62.084L1.897-61.804Q1.678-61.804 1.507-61.701Q1.337-61.599 1.248-61.404L0.212-59.093Q0.164-58.998 0.058-58.998L-0.020-58.998Q-0.126-58.998-0.174-59.093\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M2.181-60.601Q2.181-60.922 2.306-61.211Q2.431-61.500 2.657-61.723Q2.882-61.947 3.178-62.067Q3.473-62.187 3.791-62.187Q4.119-62.187 4.381-62.087Q4.642-61.988 4.818-61.806Q4.994-61.623 5.088-61.365Q5.182-61.107 5.182-60.775Q5.182-60.683 5.100-60.662L2.845-60.662L2.845-60.601Q2.845-60.013 3.128-59.630Q3.412-59.247 3.979-59.247Q4.301-59.247 4.569-59.440Q4.837-59.633 4.926-59.948Q4.933-59.989 5.008-60.003L5.100-60.003Q5.182-59.979 5.182-59.907Q5.182-59.900 5.176-59.873Q5.063-59.476 4.692-59.237Q4.321-58.998 3.897-58.998Q3.460-58.998 3.060-59.206Q2.660-59.415 2.421-59.782Q2.181-60.149 2.181-60.601M2.851-60.871L4.666-60.871Q4.666-61.148 4.569-61.400Q4.471-61.653 4.273-61.809Q4.075-61.964 3.791-61.964Q3.514-61.964 3.301-61.806Q3.087-61.647 2.969-61.392Q2.851-61.137 2.851-60.871M7.520-59.066L5.784-59.066L5.784-59.346Q6.013-59.346 6.162-59.380Q6.310-59.415 6.310-59.555L6.310-61.404Q6.310-61.674 6.203-61.735Q6.095-61.797 5.784-61.797L5.784-62.077L6.813-62.152L6.813-61.445Q6.943-61.753 7.185-61.952Q7.428-62.152 7.746-62.152Q7.965-62.152 8.136-62.028Q8.306-61.903 8.306-61.691Q8.306-61.554 8.207-61.455Q8.108-61.356 7.975-61.356Q7.838-61.356 7.739-61.455Q7.640-61.554 7.640-61.691Q7.640-61.831 7.739-61.930Q7.449-61.930 7.249-61.734Q7.049-61.537 6.956-61.243Q6.864-60.949 6.864-60.669L6.864-59.555Q6.864-59.346 7.520-59.346L7.520-59.066M8.850-58.533Q8.850-58.779 9.046-58.963Q9.243-59.148 9.499-59.227Q9.363-59.339 9.291-59.500Q9.219-59.661 9.219-59.842Q9.219-60.163 9.431-60.409Q9.096-60.707 9.096-61.117Q9.096-61.578 9.486-61.865Q9.875-62.152 10.354-62.152Q10.825-62.152 11.160-61.906Q11.335-62.060 11.545-62.142Q11.755-62.224 11.984-62.224Q12.148-62.224 12.270-62.117Q12.391-62.009 12.391-61.845Q12.391-61.749 12.319-61.677Q12.247-61.606 12.155-61.606Q12.056-61.606 11.986-61.679Q11.916-61.753 11.916-61.852Q11.916-61.906 11.929-61.937L11.936-61.951Q11.943-61.971 11.952-61.982Q11.960-61.992 11.964-61.999Q11.608-61.999 11.321-61.776Q11.608-61.483 11.608-61.117Q11.608-60.802 11.424-60.570Q11.239-60.337 10.950-60.209Q10.661-60.081 10.354-60.081Q10.152-60.081 9.961-60.131Q9.769-60.180 9.592-60.290Q9.499-60.163 9.499-60.020Q9.499-59.838 9.627-59.703Q9.756-59.568 9.940-59.568L10.573-59.568Q11.020-59.568 11.389-59.497Q11.759-59.425 12.018-59.196Q12.278-58.967 12.278-58.533Q12.278-58.212 11.982-58.010Q11.687-57.808 11.283-57.719Q10.880-57.630 10.566-57.630Q10.248-57.630 9.845-57.719Q9.441-57.808 9.146-58.010Q8.850-58.212 8.850-58.533M9.304-58.533Q9.304-58.304 9.523-58.155Q9.742-58.006 10.034-57.938Q10.326-57.870 10.566-57.870Q10.730-57.870 10.938-57.906Q11.147-57.941 11.354-58.022Q11.560-58.102 11.692-58.230Q11.824-58.358 11.824-58.533Q11.824-58.885 11.442-58.979Q11.061-59.073 10.559-59.073L9.940-59.073Q9.701-59.073 9.503-58.922Q9.304-58.772 9.304-58.533M10.354-60.320Q11.020-60.320 11.020-61.117Q11.020-61.917 10.354-61.917Q9.684-61.917 9.684-61.117Q9.684-60.320 10.354-60.320M12.832-60.601Q12.832-60.922 12.957-61.211Q13.081-61.500 13.307-61.723Q13.533-61.947 13.828-62.067Q14.124-62.187 14.442-62.187Q14.770-62.187 15.031-62.087Q15.293-61.988 15.469-61.806Q15.645-61.623 15.739-61.365Q15.833-61.107 15.833-60.775Q15.833-60.683 15.751-60.662L13.495-60.662L13.495-60.601Q13.495-60.013 13.779-59.630Q14.062-59.247 14.630-59.247Q14.951-59.247 15.219-59.440Q15.488-59.633 15.576-59.948Q15.583-59.989 15.658-60.003L15.751-60.003Q15.833-59.979 15.833-59.907Q15.833-59.900 15.826-59.873Q15.713-59.476 15.342-59.237Q14.971-58.998 14.548-58.998Q14.110-58.998 13.710-59.206Q13.310-59.415 13.071-59.782Q12.832-60.149 12.832-60.601M13.502-60.871L15.317-60.871Q15.317-61.148 15.219-61.400Q15.122-61.653 14.924-61.809Q14.725-61.964 14.442-61.964Q14.165-61.964 13.951-61.806Q13.738-61.647 13.620-61.392Q13.502-61.137 13.502-60.871M18.102-59.066L16.469-59.066L16.469-59.346Q16.698-59.346 16.846-59.380Q16.995-59.415 16.995-59.555L16.995-61.404Q16.995-61.674 16.887-61.735Q16.780-61.797 16.469-61.797L16.469-62.077L17.528-62.152L17.528-61.503Q17.699-61.811 18.003-61.982Q18.307-62.152 18.653-62.152Q19.158-62.152 19.442-61.929Q19.726-61.705 19.726-61.209L19.726-59.555Q19.726-59.418 19.875-59.382Q20.023-59.346 20.249-59.346L20.249-59.066L18.618-59.066L18.618-59.346Q18.847-59.346 18.996-59.380Q19.145-59.415 19.145-59.555L19.145-61.195Q19.145-61.530 19.025-61.730Q18.906-61.930 18.591-61.930Q18.321-61.930 18.087-61.794Q17.853-61.657 17.714-61.423Q17.576-61.189 17.576-60.915L17.576-59.555Q17.576-59.418 17.726-59.382Q17.877-59.346 18.102-59.346\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M21.172-59.907L21.172-61.804L20.533-61.804L20.533-62.026Q20.851-62.026 21.068-62.236Q21.285-62.446 21.385-62.756Q21.486-63.065 21.486-63.373L21.753-63.373L21.753-62.084L22.830-62.084L22.830-61.804L21.753-61.804L21.753-59.920Q21.753-59.644 21.857-59.445Q21.961-59.247 22.221-59.247Q22.378-59.247 22.484-59.351Q22.590-59.456 22.640-59.609Q22.689-59.763 22.689-59.920L22.689-60.334L22.956-60.334L22.956-59.907Q22.956-59.681 22.857-59.471Q22.758-59.261 22.573-59.129Q22.389-58.998 22.160-58.998Q21.722-58.998 21.447-59.235Q21.172-59.473 21.172-59.907\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M26.992-59.907L26.992-61.804L26.353-61.804L26.353-62.026Q26.671-62.026 26.888-62.236Q27.105-62.446 27.205-62.756Q27.306-63.065 27.306-63.373L27.573-63.373L27.573-62.084L28.650-62.084L28.650-61.804L27.573-61.804L27.573-59.920Q27.573-59.644 27.677-59.445Q27.781-59.247 28.041-59.247Q28.198-59.247 28.304-59.351Q28.410-59.456 28.460-59.609Q28.509-59.763 28.509-59.920L28.509-60.334L28.776-60.334L28.776-59.907Q28.776-59.681 28.677-59.471Q28.578-59.261 28.393-59.129Q28.209-58.998 27.980-58.998Q27.542-58.998 27.267-59.235Q26.992-59.473 26.992-59.907M31.336-59.066L29.600-59.066L29.600-59.346Q29.829-59.346 29.977-59.380Q30.126-59.415 30.126-59.555L30.126-61.404Q30.126-61.674 30.018-61.735Q29.911-61.797 29.600-61.797L29.600-62.077L30.629-62.152L30.629-61.445Q30.758-61.753 31.001-61.952Q31.244-62.152 31.562-62.152Q31.780-62.152 31.951-62.028Q32.122-61.903 32.122-61.691Q32.122-61.554 32.023-61.455Q31.924-61.356 31.791-61.356Q31.654-61.356 31.555-61.455Q31.456-61.554 31.456-61.691Q31.456-61.831 31.555-61.930Q31.264-61.930 31.064-61.734Q30.864-61.537 30.772-61.243Q30.680-60.949 30.680-60.669L30.680-59.555Q30.680-59.346 31.336-59.346L31.336-59.066M32.666-60.601Q32.666-60.922 32.790-61.211Q32.915-61.500 33.141-61.723Q33.366-61.947 33.662-62.067Q33.958-62.187 34.276-62.187Q34.604-62.187 34.865-62.087Q35.127-61.988 35.303-61.806Q35.479-61.623 35.573-61.365Q35.667-61.107 35.667-60.775Q35.667-60.683 35.585-60.662L33.329-60.662L33.329-60.601Q33.329-60.013 33.612-59.630Q33.896-59.247 34.463-59.247Q34.785-59.247 35.053-59.440Q35.321-59.633 35.410-59.948Q35.417-59.989 35.492-60.003L35.585-60.003Q35.667-59.979 35.667-59.907Q35.667-59.900 35.660-59.873Q35.547-59.476 35.176-59.237Q34.805-58.998 34.381-58.998Q33.944-58.998 33.544-59.206Q33.144-59.415 32.905-59.782Q32.666-60.149 32.666-60.601M33.336-60.871L35.151-60.871Q35.151-61.148 35.053-61.400Q34.956-61.653 34.757-61.809Q34.559-61.964 34.276-61.964Q33.999-61.964 33.785-61.806Q33.571-61.647 33.453-61.392Q33.336-61.137 33.336-60.871M36.213-60.601Q36.213-60.922 36.338-61.211Q36.463-61.500 36.689-61.723Q36.914-61.947 37.210-62.067Q37.505-62.187 37.823-62.187Q38.151-62.187 38.413-62.087Q38.674-61.988 38.850-61.806Q39.026-61.623 39.120-61.365Q39.214-61.107 39.214-60.775Q39.214-60.683 39.132-60.662L36.877-60.662L36.877-60.601Q36.877-60.013 37.160-59.630Q37.444-59.247 38.011-59.247Q38.333-59.247 38.601-59.440Q38.869-59.633 38.958-59.948Q38.965-59.989 39.040-60.003L39.132-60.003Q39.214-59.979 39.214-59.907Q39.214-59.900 39.208-59.873Q39.095-59.476 38.724-59.237Q38.353-58.998 37.929-58.998Q37.492-58.998 37.092-59.206Q36.692-59.415 36.453-59.782Q36.213-60.149 36.213-60.601M36.883-60.871L38.698-60.871Q38.698-61.148 38.601-61.400Q38.504-61.653 38.305-61.809Q38.107-61.964 37.823-61.964Q37.547-61.964 37.333-61.806Q37.119-61.647 37.001-61.392Q36.883-61.137 36.883-60.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M44.165-57.709L42.535-57.709L42.535-57.989Q42.764-57.989 42.913-58.024Q43.061-58.058 43.061-58.198L43.061-61.544Q43.061-61.715 42.925-61.756Q42.788-61.797 42.535-61.797L42.535-62.077L43.615-62.152L43.615-61.746Q43.837-61.947 44.124-62.050Q44.412-62.152 44.719-62.152Q45.146-62.152 45.510-61.939Q45.874-61.725 46.088-61.361Q46.302-60.997 46.302-60.577Q46.302-60.132 46.062-59.768Q45.823-59.404 45.430-59.201Q45.037-58.998 44.593-58.998Q44.326-58.998 44.078-59.098Q43.831-59.199 43.643-59.380L43.643-58.198Q43.643-58.061 43.791-58.025Q43.940-57.989 44.165-57.989L44.165-57.709M43.643-61.397L43.643-59.787Q43.776-59.534 44.019-59.377Q44.261-59.220 44.538-59.220Q44.866-59.220 45.119-59.421Q45.372-59.623 45.505-59.941Q45.639-60.259 45.639-60.577Q45.639-60.806 45.574-61.035Q45.509-61.264 45.381-61.462Q45.252-61.660 45.058-61.780Q44.863-61.899 44.630-61.899Q44.336-61.899 44.068-61.770Q43.800-61.640 43.643-61.397\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.59 5.517)\">\u003Cpath d=\"M47.111-60.549Q47.111-60.891 47.246-61.190Q47.381-61.489 47.621-61.713Q47.860-61.937 48.178-62.062Q48.496-62.187 48.827-62.187Q49.272-62.187 49.671-61.971Q50.071-61.756 50.306-61.378Q50.540-61.001 50.540-60.549Q50.540-60.208 50.398-59.924Q50.256-59.640 50.012-59.433Q49.767-59.227 49.458-59.112Q49.149-58.998 48.827-58.998Q48.397-58.998 47.995-59.199Q47.593-59.401 47.352-59.753Q47.111-60.105 47.111-60.549M48.827-59.247Q49.429-59.247 49.653-59.625Q49.877-60.003 49.877-60.635Q49.877-61.247 49.642-61.606Q49.408-61.964 48.827-61.964Q47.775-61.964 47.775-60.635Q47.775-60.003 48-59.625Q48.226-59.247 48.827-59.247M52.802-59.066L51.199-59.066L51.199-59.346Q51.425-59.346 51.574-59.380Q51.722-59.415 51.722-59.555L51.722-63.174Q51.722-63.444 51.615-63.506Q51.507-63.567 51.199-63.567L51.199-63.848L52.276-63.923L52.276-59.555Q52.276-59.418 52.426-59.382Q52.577-59.346 52.802-59.346L52.802-59.066M55.014-59.066L53.462-59.066L53.462-59.346Q53.688-59.346 53.836-59.380Q53.985-59.415 53.985-59.555L53.985-61.404Q53.985-61.592 53.937-61.676Q53.889-61.759 53.792-61.778Q53.694-61.797 53.483-61.797L53.483-62.077L54.539-62.152L54.539-59.555Q54.539-59.415 54.670-59.380Q54.802-59.346 55.014-59.346L55.014-59.066M53.742-63.373Q53.742-63.544 53.865-63.663Q53.988-63.783 54.159-63.783Q54.327-63.783 54.450-63.663Q54.573-63.544 54.573-63.373Q54.573-63.198 54.450-63.075Q54.327-62.952 54.159-62.952Q53.988-62.952 53.865-63.075Q53.742-63.198 53.742-63.373M55.660-60.577Q55.660-60.905 55.795-61.206Q55.930-61.506 56.166-61.727Q56.401-61.947 56.706-62.067Q57.010-62.187 57.335-62.187Q57.840-62.187 58.189-62.084Q58.538-61.982 58.538-61.606Q58.538-61.459 58.440-61.358Q58.343-61.257 58.196-61.257Q58.042-61.257 57.943-61.356Q57.844-61.455 57.844-61.606Q57.844-61.794 57.984-61.886Q57.782-61.937 57.341-61.937Q56.986-61.937 56.757-61.741Q56.528-61.544 56.427-61.235Q56.326-60.925 56.326-60.577Q56.326-60.228 56.453-59.922Q56.579-59.616 56.834-59.432Q57.088-59.247 57.444-59.247Q57.666-59.247 57.851-59.331Q58.035-59.415 58.170-59.570Q58.305-59.726 58.363-59.934Q58.377-59.989 58.432-59.989L58.545-59.989Q58.575-59.989 58.598-59.965Q58.620-59.941 58.620-59.907L58.620-59.886Q58.534-59.599 58.346-59.401Q58.158-59.203 57.893-59.100Q57.629-58.998 57.335-58.998Q56.904-58.998 56.516-59.204Q56.128-59.411 55.894-59.774Q55.660-60.136 55.660-60.577M59.543-57.931Q59.672-57.863 59.809-57.863Q59.980-57.863 60.130-57.952Q60.281-58.041 60.392-58.186Q60.503-58.331 60.582-58.499L60.845-59.066L59.676-61.592Q59.601-61.739 59.471-61.771Q59.341-61.804 59.109-61.804L59.109-62.084L60.630-62.084L60.630-61.804Q60.281-61.804 60.281-61.657Q60.284-61.636 60.286-61.619Q60.288-61.602 60.288-61.592L61.146-59.733L61.918-61.404Q61.952-61.472 61.952-61.551Q61.952-61.664 61.869-61.734Q61.785-61.804 61.672-61.804L61.672-62.084L62.868-62.084L62.868-61.804Q62.650-61.804 62.477-61.700Q62.304-61.595 62.212-61.404L60.876-58.499Q60.705-58.129 60.435-57.883Q60.165-57.637 59.809-57.637Q59.539-57.637 59.320-57.803Q59.102-57.969 59.102-58.232Q59.102-58.369 59.194-58.458Q59.286-58.546 59.426-58.546Q59.563-58.546 59.652-58.458Q59.741-58.369 59.741-58.232Q59.741-58.129 59.688-58.051Q59.635-57.972 59.543-57.931M63.730-57.309L63.661-57.309Q63.627-57.309 63.605-57.335Q63.583-57.360 63.583-57.395Q63.583-57.439 63.613-57.456Q63.969-57.760 64.218-58.150Q64.468-58.540 64.620-58.972Q64.772-59.404 64.842-59.873Q64.912-60.341 64.912-60.816Q64.912-61.295 64.842-61.761Q64.772-62.228 64.618-62.663Q64.464-63.099 64.213-63.487Q63.962-63.875 63.613-64.169Q63.583-64.186 63.583-64.231Q63.583-64.265 63.605-64.290Q63.627-64.316 63.661-64.316L63.730-64.316Q63.740-64.316 63.748-64.314Q63.757-64.313 63.767-64.309Q64.311-63.909 64.683-63.356Q65.056-62.802 65.237-62.156Q65.418-61.510 65.418-60.816Q65.418-60.115 65.237-59.468Q65.056-58.820 64.682-58.266Q64.307-57.712 63.767-57.316Q63.757-57.316 63.748-57.314Q63.740-57.313 63.730-57.309\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M53.87-46.263h80.299V-71.87h-80.3Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M6.194-67.066L4.604-67.066L4.604-67.346Q5.247-67.346 5.404-67.746L7.048-71.961Q7.082-72.056 7.195-72.056L7.277-72.056Q7.387-72.056 7.428-71.961L9.147-67.555Q9.215-67.415 9.405-67.380Q9.595-67.346 9.868-67.346L9.868-67.066L7.869-67.066L7.869-67.346Q8.433-67.346 8.433-67.521Q8.433-67.538 8.431-67.545Q8.429-67.551 8.426-67.555L8.005-68.621L6.047-68.621L5.705-67.746Q5.691-67.746 5.691-67.668Q5.691-67.507 5.854-67.427Q6.016-67.346 6.194-67.346L6.194-67.066M7.028-71.140L6.160-68.901L7.903-68.901L7.028-71.140M12.172-67.066L10.569-67.066L10.569-67.346Q10.794-67.346 10.943-67.380Q11.092-67.415 11.092-67.555L11.092-71.174Q11.092-71.444 10.984-71.506Q10.876-71.567 10.569-71.567L10.569-71.848L11.645-71.923L11.645-67.555Q11.645-67.418 11.796-67.382Q11.946-67.346 12.172-67.346L12.172-67.066M14.411-65.709L12.780-65.709L12.780-65.989Q13.009-65.989 13.158-66.024Q13.307-66.058 13.307-66.198L13.307-69.544Q13.307-69.715 13.170-69.756Q13.033-69.797 12.780-69.797L12.780-70.077L13.860-70.152L13.860-69.746Q14.082-69.947 14.370-70.050Q14.657-70.152 14.964-70.152Q15.392-70.152 15.756-69.939Q16.120-69.725 16.333-69.361Q16.547-68.997 16.547-68.577Q16.547-68.132 16.308-67.768Q16.068-67.404 15.675-67.201Q15.282-66.998 14.838-66.998Q14.571-66.998 14.323-67.098Q14.076-67.199 13.888-67.380L13.888-66.198Q13.888-66.061 14.036-66.025Q14.185-65.989 14.411-65.989L14.411-65.709M13.888-69.397L13.888-67.787Q14.021-67.534 14.264-67.377Q14.506-67.220 14.783-67.220Q15.111-67.220 15.364-67.421Q15.617-67.623 15.750-67.941Q15.884-68.259 15.884-68.577Q15.884-68.806 15.819-69.035Q15.754-69.264 15.626-69.462Q15.498-69.660 15.303-69.780Q15.108-69.899 14.875-69.899Q14.582-69.899 14.313-69.770Q14.045-69.640 13.888-69.397M18.864-67.066L17.230-67.066L17.230-67.346Q17.459-67.346 17.608-67.380Q17.757-67.415 17.757-67.555L17.757-71.174Q17.757-71.444 17.649-71.506Q17.541-71.567 17.230-71.567L17.230-71.848L18.311-71.923L18.311-69.537Q18.416-69.722 18.594-69.864Q18.772-70.005 18.980-70.079Q19.189-70.152 19.415-70.152Q19.920-70.152 20.204-69.929Q20.488-69.705 20.488-69.209L20.488-67.555Q20.488-67.418 20.636-67.382Q20.785-67.346 21.011-67.346L21.011-67.066L19.380-67.066L19.380-67.346Q19.609-67.346 19.758-67.380Q19.907-67.415 19.907-67.555L19.907-69.195Q19.907-69.530 19.787-69.730Q19.667-69.930 19.353-69.930Q19.083-69.930 18.849-69.794Q18.615-69.657 18.476-69.423Q18.338-69.189 18.338-68.915L18.338-67.555Q18.338-67.418 18.488-67.382Q18.639-67.346 18.864-67.346L18.864-67.066M21.657-67.794Q21.657-68.126 21.881-68.353Q22.104-68.580 22.448-68.708Q22.791-68.837 23.164-68.889Q23.537-68.942 23.841-68.942L23.841-69.195Q23.841-69.400 23.733-69.580Q23.625-69.759 23.444-69.862Q23.263-69.964 23.055-69.964Q22.648-69.964 22.412-69.872Q22.501-69.835 22.547-69.751Q22.593-69.667 22.593-69.565Q22.593-69.469 22.547-69.390Q22.501-69.312 22.421-69.267Q22.340-69.223 22.251-69.223Q22.101-69.223 22-69.320Q21.899-69.418 21.899-69.565Q21.899-70.187 23.055-70.187Q23.267-70.187 23.516-70.123Q23.766-70.060 23.967-69.941Q24.169-69.821 24.295-69.636Q24.422-69.452 24.422-69.209L24.422-67.633Q24.422-67.517 24.483-67.421Q24.545-67.326 24.658-67.326Q24.767-67.326 24.832-67.420Q24.897-67.514 24.897-67.633L24.897-68.081L25.164-68.081L25.164-67.633Q25.164-67.363 24.936-67.198Q24.709-67.032 24.429-67.032Q24.220-67.032 24.083-67.186Q23.947-67.339 23.923-67.555Q23.776-67.288 23.494-67.143Q23.212-66.998 22.887-66.998Q22.610-66.998 22.327-67.073Q22.043-67.148 21.850-67.327Q21.657-67.507 21.657-67.794M22.272-67.794Q22.272-67.620 22.373-67.490Q22.474-67.360 22.629-67.290Q22.785-67.220 22.949-67.220Q23.167-67.220 23.376-67.317Q23.584-67.415 23.713-67.596Q23.841-67.777 23.841-68.003L23.841-68.731Q23.516-68.731 23.150-68.640Q22.785-68.549 22.528-68.337Q22.272-68.126 22.272-67.794M25.755-69.459Q25.755-69.985 25.972-70.453Q26.189-70.921 26.572-71.267Q26.955-71.612 27.438-71.800Q27.922-71.988 28.452-71.988Q28.722-71.988 28.978-71.916Q29.234-71.844 29.463-71.704Q29.692-71.564 29.873-71.379L30.301-71.961Q30.328-71.988 30.355-71.988L30.403-71.988Q30.434-71.988 30.458-71.964Q30.482-71.940 30.482-71.909L30.482-70.046Q30.482-70.023 30.456-69.997Q30.431-69.971 30.403-69.971L30.277-69.971Q30.215-69.971 30.202-70.046Q30.171-70.361 30.036-70.665Q29.901-70.969 29.686-71.203Q29.470-71.438 29.181-71.573Q28.893-71.708 28.564-71.708Q27.918-71.708 27.459-71.412Q26.999-71.116 26.767-70.605Q26.534-70.094 26.534-69.459Q26.534-68.809 26.780-68.296Q27.026-67.784 27.500-67.495Q27.973-67.206 28.626-67.206Q28.886-67.206 29.152-67.273Q29.419-67.339 29.603-67.500Q29.788-67.661 29.788-67.920L29.788-68.508Q29.788-68.717 28.821-68.717L28.821-68.997L31.019-68.997L31.019-68.717Q30.790-68.717 30.636-68.681Q30.482-68.645 30.482-68.508L30.482-67.145Q30.482-67.110 30.453-67.088Q30.424-67.066 30.396-67.066Q30.335-67.066 30.164-67.227Q29.993-67.387 29.935-67.473Q29.733-67.172 29.327-67.049Q28.920-66.926 28.452-66.926Q27.932-66.926 27.440-67.116Q26.948-67.305 26.568-67.649Q26.189-67.992 25.972-68.461Q25.755-68.929 25.755-69.459M31.719-68.549Q31.719-68.891 31.854-69.190Q31.989-69.489 32.228-69.713Q32.468-69.937 32.786-70.062Q33.103-70.187 33.435-70.187Q33.879-70.187 34.279-69.971Q34.679-69.756 34.913-69.378Q35.147-69.001 35.147-68.549Q35.147-68.208 35.006-67.924Q34.864-67.640 34.619-67.433Q34.375-67.227 34.066-67.112Q33.756-66.998 33.435-66.998Q33.004-66.998 32.603-67.199Q32.201-67.401 31.960-67.753Q31.719-68.105 31.719-68.549M33.435-67.247Q34.037-67.247 34.260-67.625Q34.484-68.003 34.484-68.635Q34.484-69.247 34.250-69.606Q34.016-69.964 33.435-69.964Q32.382-69.964 32.382-68.635Q32.382-68.003 32.608-67.625Q32.833-67.247 33.435-67.247\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M-14.503-57.316Q-15.053-57.716-15.424-58.271Q-15.795-58.827-15.976-59.473Q-16.157-60.119-16.157-60.816Q-16.157-61.329-16.057-61.824Q-15.956-62.320-15.751-62.771Q-15.546-63.222-15.233-63.614Q-14.920-64.005-14.503-64.309Q-14.493-64.313-14.486-64.314Q-14.479-64.316-14.469-64.316L-14.401-64.316Q-14.366-64.316-14.344-64.292Q-14.322-64.268-14.322-64.231Q-14.322-64.186-14.349-64.169Q-14.698-63.868-14.951-63.484Q-15.204-63.099-15.356-62.658Q-15.508-62.217-15.580-61.761Q-15.652-61.305-15.652-60.816Q-15.652-59.815-15.342-58.928Q-15.033-58.041-14.349-57.456Q-14.322-57.439-14.322-57.395Q-14.322-57.357-14.344-57.333Q-14.366-57.309-14.401-57.309L-14.469-57.309Q-14.476-57.313-14.484-57.314Q-14.493-57.316-14.503-57.316M-11.923-59.093L-13.051-61.592Q-13.122-61.739-13.252-61.771Q-13.382-61.804-13.611-61.804L-13.611-62.084L-12.097-62.084L-12.097-61.804Q-12.449-61.804-12.449-61.657Q-12.449-61.612-12.439-61.592L-11.574-59.674L-10.795-61.404Q-10.760-61.472-10.760-61.551Q-10.760-61.664-10.844-61.734Q-10.928-61.804-11.048-61.804L-11.048-62.084L-9.851-62.084L-9.851-61.804Q-10.070-61.804-10.241-61.701Q-10.412-61.599-10.501-61.404L-11.536-59.093Q-11.584-58.998-11.690-58.998L-11.769-58.998Q-11.875-58.998-11.923-59.093\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M-9.678-59.794Q-9.678-60.126-9.455-60.353Q-9.231-60.580-8.887-60.708Q-8.544-60.837-8.171-60.889Q-7.799-60.942-7.494-60.942L-7.494-61.195Q-7.494-61.400-7.602-61.580Q-7.710-61.759-7.891-61.862Q-8.072-61.964-8.280-61.964Q-8.687-61.964-8.923-61.872Q-8.834-61.835-8.788-61.751Q-8.742-61.667-8.742-61.565Q-8.742-61.469-8.788-61.390Q-8.834-61.312-8.915-61.267Q-8.995-61.223-9.084-61.223Q-9.234-61.223-9.335-61.320Q-9.436-61.418-9.436-61.565Q-9.436-62.187-8.280-62.187Q-8.069-62.187-7.819-62.123Q-7.570-62.060-7.368-61.941Q-7.166-61.821-7.040-61.636Q-6.913-61.452-6.913-61.209L-6.913-59.633Q-6.913-59.517-6.852-59.421Q-6.790-59.326-6.677-59.326Q-6.568-59.326-6.503-59.420Q-6.438-59.514-6.438-59.633L-6.438-60.081L-6.172-60.081L-6.172-59.633Q-6.172-59.363-6.399-59.198Q-6.626-59.032-6.906-59.032Q-7.115-59.032-7.252-59.186Q-7.388-59.339-7.412-59.555Q-7.559-59.288-7.841-59.143Q-8.123-58.998-8.448-58.998Q-8.725-58.998-9.009-59.073Q-9.292-59.148-9.485-59.327Q-9.678-59.507-9.678-59.794M-9.063-59.794Q-9.063-59.620-8.962-59.490Q-8.862-59.360-8.706-59.290Q-8.551-59.220-8.386-59.220Q-8.168-59.220-7.959-59.317Q-7.751-59.415-7.623-59.596Q-7.494-59.777-7.494-60.003L-7.494-60.731Q-7.819-60.731-8.185-60.640Q-8.551-60.549-8.807-60.337Q-9.063-60.126-9.063-59.794M-4.087-59.066L-5.690-59.066L-5.690-59.346Q-5.464-59.346-5.315-59.380Q-5.167-59.415-5.167-59.555L-5.167-63.174Q-5.167-63.444-5.274-63.506Q-5.382-63.567-5.690-63.567L-5.690-63.848L-4.613-63.923L-4.613-59.555Q-4.613-59.418-4.463-59.382Q-4.312-59.346-4.087-59.346L-4.087-59.066M-2.918-59.900L-2.918-61.404Q-2.918-61.674-3.025-61.735Q-3.133-61.797-3.444-61.797L-3.444-62.077L-2.337-62.152L-2.337-59.920L-2.337-59.900Q-2.337-59.620-2.285-59.476Q-2.234-59.333-2.092-59.276Q-1.950-59.220-1.663-59.220Q-1.410-59.220-1.205-59.360Q-1-59.500-0.884-59.726Q-0.768-59.951-0.768-60.201L-0.768-61.404Q-0.768-61.674-0.875-61.735Q-0.983-61.797-1.294-61.797L-1.294-62.077L-0.187-62.152L-0.187-59.739Q-0.187-59.548-0.134-59.466Q-0.081-59.384 0.020-59.365Q0.121-59.346 0.336-59.346L0.336-59.066L-0.740-58.998L-0.740-59.562Q-0.850-59.380-0.995-59.257Q-1.140-59.134-1.327-59.066Q-1.513-58.998-1.715-58.998Q-2.918-58.998-2.918-59.900M0.883-60.601Q0.883-60.922 1.008-61.211Q1.133-61.500 1.358-61.723Q1.584-61.947 1.879-62.067Q2.175-62.187 2.493-62.187Q2.821-62.187 3.083-62.087Q3.344-61.988 3.520-61.806Q3.696-61.623 3.790-61.365Q3.884-61.107 3.884-60.775Q3.884-60.683 3.802-60.662L1.546-60.662L1.546-60.601Q1.546-60.013 1.830-59.630Q2.114-59.247 2.681-59.247Q3.002-59.247 3.271-59.440Q3.539-59.633 3.628-59.948Q3.635-59.989 3.710-60.003L3.802-60.003Q3.884-59.979 3.884-59.907Q3.884-59.900 3.877-59.873Q3.764-59.476 3.394-59.237Q3.023-58.998 2.599-58.998Q2.161-58.998 1.761-59.206Q1.362-59.415 1.122-59.782Q0.883-60.149 0.883-60.601M1.553-60.871L3.368-60.871Q3.368-61.148 3.271-61.400Q3.173-61.653 2.975-61.809Q2.777-61.964 2.493-61.964Q2.216-61.964 2.002-61.806Q1.789-61.647 1.671-61.392Q1.553-61.137 1.553-60.871\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M9.764-58.386L9.764-60.642L7.515-60.642Q7.447-60.652 7.401-60.698Q7.355-60.744 7.355-60.816Q7.355-60.960 7.515-60.983L9.764-60.983L9.764-63.239Q9.775-63.308 9.821-63.354Q9.867-63.400 9.939-63.400Q10.082-63.400 10.106-63.239L10.106-60.983L12.348-60.983Q12.509-60.960 12.509-60.816Q12.509-60.744 12.463-60.698Q12.417-60.652 12.348-60.642L10.106-60.642L10.106-58.386Q10.082-58.225 9.939-58.225Q9.867-58.225 9.821-58.271Q9.775-58.317 9.764-58.386\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M17.657-57.709L16.027-57.709L16.027-57.989Q16.256-57.989 16.405-58.024Q16.553-58.058 16.553-58.198L16.553-61.544Q16.553-61.715 16.417-61.756Q16.280-61.797 16.027-61.797L16.027-62.077L17.107-62.152L17.107-61.746Q17.329-61.947 17.616-62.050Q17.904-62.152 18.211-62.152Q18.638-62.152 19.002-61.939Q19.366-61.725 19.580-61.361Q19.794-60.997 19.794-60.577Q19.794-60.132 19.554-59.768Q19.315-59.404 18.922-59.201Q18.529-58.998 18.085-58.998Q17.818-58.998 17.570-59.098Q17.323-59.199 17.135-59.380L17.135-58.198Q17.135-58.061 17.283-58.025Q17.432-57.989 17.657-57.989L17.657-57.709M17.135-61.397L17.135-59.787Q17.268-59.534 17.511-59.377Q17.753-59.220 18.030-59.220Q18.358-59.220 18.611-59.421Q18.864-59.623 18.997-59.941Q19.131-60.259 19.131-60.577Q19.131-60.806 19.066-61.035Q19.001-61.264 18.873-61.462Q18.744-61.660 18.550-61.780Q18.355-61.899 18.122-61.899Q17.828-61.899 17.560-61.770Q17.292-61.640 17.135-61.397\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M20.604-60.549Q20.604-60.891 20.739-61.190Q20.874-61.489 21.114-61.713Q21.353-61.937 21.671-62.062Q21.989-62.187 22.320-62.187Q22.765-62.187 23.164-61.971Q23.564-61.756 23.799-61.378Q24.033-61.001 24.033-60.549Q24.033-60.208 23.891-59.924Q23.749-59.640 23.505-59.433Q23.260-59.227 22.951-59.112Q22.642-58.998 22.320-58.998Q21.890-58.998 21.488-59.199Q21.086-59.401 20.845-59.753Q20.604-60.105 20.604-60.549M22.320-59.247Q22.922-59.247 23.146-59.625Q23.370-60.003 23.370-60.635Q23.370-61.247 23.135-61.606Q22.901-61.964 22.320-61.964Q21.268-61.964 21.268-60.635Q21.268-60.003 21.493-59.625Q21.719-59.247 22.320-59.247M26.295-59.066L24.692-59.066L24.692-59.346Q24.918-59.346 25.067-59.380Q25.215-59.415 25.215-59.555L25.215-63.174Q25.215-63.444 25.108-63.506Q25-63.567 24.692-63.567L24.692-63.848L25.769-63.923L25.769-59.555Q25.769-59.418 25.919-59.382Q26.070-59.346 26.295-59.346L26.295-59.066M28.507-59.066L26.955-59.066L26.955-59.346Q27.181-59.346 27.329-59.380Q27.478-59.415 27.478-59.555L27.478-61.404Q27.478-61.592 27.430-61.676Q27.382-61.759 27.285-61.778Q27.187-61.797 26.976-61.797L26.976-62.077L28.032-62.152L28.032-59.555Q28.032-59.415 28.163-59.380Q28.295-59.346 28.507-59.346L28.507-59.066M27.235-63.373Q27.235-63.544 27.358-63.663Q27.481-63.783 27.652-63.783Q27.820-63.783 27.943-63.663Q28.066-63.544 28.066-63.373Q28.066-63.198 27.943-63.075Q27.820-62.952 27.652-62.952Q27.481-62.952 27.358-63.075Q27.235-63.198 27.235-63.373M29.153-60.577Q29.153-60.905 29.288-61.206Q29.423-61.506 29.659-61.727Q29.894-61.947 30.199-62.067Q30.503-62.187 30.828-62.187Q31.333-62.187 31.682-62.084Q32.031-61.982 32.031-61.606Q32.031-61.459 31.933-61.358Q31.836-61.257 31.689-61.257Q31.535-61.257 31.436-61.356Q31.337-61.455 31.337-61.606Q31.337-61.794 31.477-61.886Q31.275-61.937 30.834-61.937Q30.479-61.937 30.250-61.741Q30.021-61.544 29.920-61.235Q29.819-60.925 29.819-60.577Q29.819-60.228 29.946-59.922Q30.072-59.616 30.327-59.432Q30.581-59.247 30.937-59.247Q31.159-59.247 31.344-59.331Q31.528-59.415 31.663-59.570Q31.798-59.726 31.856-59.934Q31.870-59.989 31.925-59.989L32.038-59.989Q32.068-59.989 32.091-59.965Q32.113-59.941 32.113-59.907L32.113-59.886Q32.027-59.599 31.839-59.401Q31.651-59.203 31.386-59.100Q31.122-58.998 30.828-58.998Q30.397-58.998 30.009-59.204Q29.621-59.411 29.387-59.774Q29.153-60.136 29.153-60.577M33.036-57.931Q33.165-57.863 33.302-57.863Q33.473-57.863 33.623-57.952Q33.774-58.041 33.885-58.186Q33.996-58.331 34.075-58.499L34.338-59.066L33.169-61.592Q33.094-61.739 32.964-61.771Q32.834-61.804 32.602-61.804L32.602-62.084L34.123-62.084L34.123-61.804Q33.774-61.804 33.774-61.657Q33.777-61.636 33.779-61.619Q33.781-61.602 33.781-61.592L34.639-59.733L35.411-61.404Q35.445-61.472 35.445-61.551Q35.445-61.664 35.362-61.734Q35.278-61.804 35.165-61.804L35.165-62.084L36.361-62.084L36.361-61.804Q36.143-61.804 35.970-61.700Q35.797-61.595 35.705-61.404L34.369-58.499Q34.198-58.129 33.928-57.883Q33.658-57.637 33.302-57.637Q33.032-57.637 32.813-57.803Q32.595-57.969 32.595-58.232Q32.595-58.369 32.687-58.458Q32.779-58.546 32.919-58.546Q33.056-58.546 33.145-58.458Q33.234-58.369 33.234-58.232Q33.234-58.129 33.181-58.051Q33.128-57.972 33.036-57.931\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.149 5.556)\">\u003Cpath d=\"M41.293-59.066L39.659-59.066L39.659-59.346Q39.888-59.346 40.037-59.380Q40.186-59.415 40.186-59.555L40.186-61.404Q40.186-61.674 40.078-61.735Q39.970-61.797 39.659-61.797L39.659-62.077L40.719-62.152L40.719-61.503Q40.890-61.811 41.194-61.982Q41.498-62.152 41.843-62.152Q42.349-62.152 42.633-61.929Q42.917-61.705 42.917-61.209L42.917-59.555Q42.917-59.418 43.065-59.382Q43.214-59.346 43.440-59.346L43.440-59.066L41.809-59.066L41.809-59.346Q42.038-59.346 42.187-59.380Q42.336-59.415 42.336-59.555L42.336-61.195Q42.336-61.530 42.216-61.730Q42.096-61.930 41.782-61.930Q41.512-61.930 41.278-61.794Q41.044-61.657 40.905-61.423Q40.767-61.189 40.767-60.915L40.767-59.555Q40.767-59.418 40.917-59.382Q41.068-59.346 41.293-59.346L41.293-59.066M43.986-60.601Q43.986-60.922 44.111-61.211Q44.236-61.500 44.462-61.723Q44.687-61.947 44.983-62.067Q45.278-62.187 45.596-62.187Q45.924-62.187 46.186-62.087Q46.447-61.988 46.623-61.806Q46.799-61.623 46.893-61.365Q46.987-61.107 46.987-60.775Q46.987-60.683 46.905-60.662L44.650-60.662L44.650-60.601Q44.650-60.013 44.933-59.630Q45.217-59.247 45.784-59.247Q46.106-59.247 46.374-59.440Q46.642-59.633 46.731-59.948Q46.738-59.989 46.813-60.003L46.905-60.003Q46.987-59.979 46.987-59.907Q46.987-59.900 46.981-59.873Q46.868-59.476 46.497-59.237Q46.126-58.998 45.702-58.998Q45.265-58.998 44.865-59.206Q44.465-59.415 44.226-59.782Q43.986-60.149 43.986-60.601M44.656-60.871L46.471-60.871Q46.471-61.148 46.374-61.400Q46.276-61.653 46.078-61.809Q45.880-61.964 45.596-61.964Q45.319-61.964 45.106-61.806Q44.892-61.647 44.774-61.392Q44.656-61.137 44.656-60.871M48.102-59.907L48.102-61.804L47.463-61.804L47.463-62.026Q47.780-62.026 47.997-62.236Q48.214-62.446 48.315-62.756Q48.416-63.065 48.416-63.373L48.683-63.373L48.683-62.084L49.759-62.084L49.759-61.804L48.683-61.804L48.683-59.920Q48.683-59.644 48.787-59.445Q48.891-59.247 49.151-59.247Q49.308-59.247 49.414-59.351Q49.520-59.456 49.570-59.609Q49.619-59.763 49.619-59.920L49.619-60.334L49.886-60.334L49.886-59.907Q49.886-59.681 49.787-59.471Q49.688-59.261 49.503-59.129Q49.318-58.998 49.089-58.998Q48.652-58.998 48.377-59.235Q48.102-59.473 48.102-59.907M50.696-59.073L50.696-60.136Q50.696-60.160 50.723-60.187Q50.751-60.214 50.775-60.214L50.884-60.214Q50.949-60.214 50.963-60.156Q51.058-59.722 51.304-59.471Q51.550-59.220 51.964-59.220Q52.306-59.220 52.559-59.353Q52.812-59.486 52.812-59.794Q52.812-59.951 52.718-60.066Q52.624-60.180 52.485-60.249Q52.347-60.317 52.179-60.355L51.598-60.454Q51.243-60.522 50.969-60.743Q50.696-60.963 50.696-61.305Q50.696-61.554 50.807-61.729Q50.918-61.903 51.104-62.002Q51.291-62.101 51.506-62.144Q51.721-62.187 51.964-62.187Q52.378-62.187 52.658-62.005L52.873-62.180Q52.883-62.183 52.890-62.185Q52.897-62.187 52.907-62.187L52.959-62.187Q52.986-62.187 53.010-62.163Q53.034-62.139 53.034-62.111L53.034-61.264Q53.034-61.243 53.010-61.216Q52.986-61.189 52.959-61.189L52.846-61.189Q52.818-61.189 52.793-61.214Q52.767-61.240 52.767-61.264Q52.767-61.500 52.661-61.664Q52.555-61.828 52.372-61.910Q52.190-61.992 51.957-61.992Q51.629-61.992 51.373-61.889Q51.116-61.787 51.116-61.510Q51.116-61.315 51.299-61.206Q51.482-61.096 51.711-61.055L52.285-60.949Q52.531-60.901 52.745-60.773Q52.959-60.645 53.095-60.442Q53.232-60.238 53.232-59.989Q53.232-59.476 52.866-59.237Q52.501-58.998 51.964-58.998Q51.468-58.998 51.137-59.292L50.870-59.018Q50.850-58.998 50.822-58.998L50.775-58.998Q50.751-58.998 50.723-59.025Q50.696-59.052 50.696-59.073M54.182-57.309L54.114-57.309Q54.080-57.309 54.057-57.335Q54.035-57.360 54.035-57.395Q54.035-57.439 54.066-57.456Q54.422-57.760 54.671-58.150Q54.921-58.540 55.073-58.972Q55.225-59.404 55.295-59.873Q55.365-60.341 55.365-60.816Q55.365-61.295 55.295-61.761Q55.225-62.228 55.071-62.663Q54.917-63.099 54.666-63.487Q54.415-63.875 54.066-64.169Q54.035-64.186 54.035-64.231Q54.035-64.265 54.057-64.290Q54.080-64.316 54.114-64.316L54.182-64.316Q54.193-64.316 54.201-64.314Q54.210-64.313 54.220-64.309Q54.763-63.909 55.136-63.356Q55.508-62.802 55.690-62.156Q55.871-61.510 55.871-60.816Q55.871-60.115 55.690-59.468Q55.508-58.820 55.134-58.266Q54.760-57.712 54.220-57.316Q54.210-57.316 54.201-57.314Q54.193-57.313 54.182-57.309\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M167.996-46.263h73.977V-71.87h-73.977Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(190.896 5.556)\">\u003Cpath d=\"M-2.257-67.066L-3.847-67.066L-3.847-67.346Q-3.204-67.346-3.047-67.746L-1.403-71.961Q-1.369-72.056-1.256-72.056L-1.174-72.056Q-1.064-72.056-1.023-71.961L0.696-67.555Q0.764-67.415 0.954-67.380Q1.144-67.346 1.417-67.346L1.417-67.066L-0.582-67.066L-0.582-67.346Q-0.018-67.346-0.018-67.521Q-0.018-67.538-0.020-67.545Q-0.022-67.551-0.025-67.555L-0.446-68.621L-2.404-68.621L-2.746-67.746Q-2.760-67.746-2.760-67.668Q-2.760-67.507-2.597-67.427Q-2.435-67.346-2.257-67.346L-2.257-67.066M-1.423-71.140L-2.291-68.901L-0.548-68.901L-1.423-71.140M3.721-67.066L2.118-67.066L2.118-67.346Q2.343-67.346 2.492-67.380Q2.641-67.415 2.641-67.555L2.641-71.174Q2.641-71.444 2.533-71.506Q2.425-71.567 2.118-71.567L2.118-71.848L3.194-71.923L3.194-67.555Q3.194-67.418 3.345-67.382Q3.495-67.346 3.721-67.346L3.721-67.066M5.960-65.709L4.329-65.709L4.329-65.989Q4.558-65.989 4.707-66.024Q4.856-66.058 4.856-66.198L4.856-69.544Q4.856-69.715 4.719-69.756Q4.582-69.797 4.329-69.797L4.329-70.077L5.409-70.152L5.409-69.746Q5.631-69.947 5.919-70.050Q6.206-70.152 6.513-70.152Q6.941-70.152 7.305-69.939Q7.669-69.725 7.882-69.361Q8.096-68.997 8.096-68.577Q8.096-68.132 7.857-67.768Q7.617-67.404 7.224-67.201Q6.831-66.998 6.387-66.998Q6.120-66.998 5.872-67.098Q5.625-67.199 5.437-67.380L5.437-66.198Q5.437-66.061 5.585-66.025Q5.734-65.989 5.960-65.989L5.960-65.709M5.437-69.397L5.437-67.787Q5.570-67.534 5.813-67.377Q6.055-67.220 6.332-67.220Q6.660-67.220 6.913-67.421Q7.166-67.623 7.299-67.941Q7.433-68.259 7.433-68.577Q7.433-68.806 7.368-69.035Q7.303-69.264 7.175-69.462Q7.047-69.660 6.852-69.780Q6.657-69.899 6.424-69.899Q6.131-69.899 5.862-69.770Q5.594-69.640 5.437-69.397M10.413-67.066L8.779-67.066L8.779-67.346Q9.008-67.346 9.157-67.380Q9.306-67.415 9.306-67.555L9.306-71.174Q9.306-71.444 9.198-71.506Q9.090-71.567 8.779-71.567L8.779-71.848L9.860-71.923L9.860-69.537Q9.965-69.722 10.143-69.864Q10.321-70.005 10.529-70.079Q10.738-70.152 10.964-70.152Q11.469-70.152 11.753-69.929Q12.037-69.705 12.037-69.209L12.037-67.555Q12.037-67.418 12.185-67.382Q12.334-67.346 12.560-67.346L12.560-67.066L10.929-67.066L10.929-67.346Q11.158-67.346 11.307-67.380Q11.456-67.415 11.456-67.555L11.456-69.195Q11.456-69.530 11.336-69.730Q11.216-69.930 10.902-69.930Q10.632-69.930 10.398-69.794Q10.164-69.657 10.025-69.423Q9.887-69.189 9.887-68.915L9.887-67.555Q9.887-67.418 10.037-67.382Q10.188-67.346 10.413-67.346L10.413-67.066M13.206-67.794Q13.206-68.126 13.430-68.353Q13.653-68.580 13.997-68.708Q14.340-68.837 14.713-68.889Q15.086-68.942 15.390-68.942L15.390-69.195Q15.390-69.400 15.282-69.580Q15.174-69.759 14.993-69.862Q14.812-69.964 14.604-69.964Q14.197-69.964 13.961-69.872Q14.050-69.835 14.096-69.751Q14.142-69.667 14.142-69.565Q14.142-69.469 14.096-69.390Q14.050-69.312 13.970-69.267Q13.889-69.223 13.800-69.223Q13.650-69.223 13.549-69.320Q13.448-69.418 13.448-69.565Q13.448-70.187 14.604-70.187Q14.816-70.187 15.065-70.123Q15.315-70.060 15.516-69.941Q15.718-69.821 15.844-69.636Q15.971-69.452 15.971-69.209L15.971-67.633Q15.971-67.517 16.032-67.421Q16.094-67.326 16.207-67.326Q16.316-67.326 16.381-67.420Q16.446-67.514 16.446-67.633L16.446-68.081L16.713-68.081L16.713-67.633Q16.713-67.363 16.485-67.198Q16.258-67.032 15.978-67.032Q15.769-67.032 15.632-67.186Q15.496-67.339 15.472-67.555Q15.325-67.288 15.043-67.143Q14.761-66.998 14.436-66.998Q14.159-66.998 13.876-67.073Q13.592-67.148 13.399-67.327Q13.206-67.507 13.206-67.794M13.821-67.794Q13.821-67.620 13.922-67.490Q14.023-67.360 14.178-67.290Q14.334-67.220 14.498-67.220Q14.716-67.220 14.925-67.317Q15.133-67.415 15.262-67.596Q15.390-67.777 15.390-68.003L15.390-68.731Q15.065-68.731 14.699-68.640Q14.334-68.549 14.077-68.337Q13.821-68.126 13.821-67.794M21.084-67.066L17.403-67.066Q17.365-67.066 17.335-67.093Q17.304-67.121 17.304-67.165L17.304-67.268Q17.304-67.302 17.335-67.339L20.329-71.567L19.266-71.567Q18.852-71.567 18.568-71.511Q18.285-71.455 18.069-71.267Q17.676-70.894 17.676-70.211L17.410-70.211L17.495-71.848L21.064-71.848Q21.108-71.848 21.135-71.819Q21.163-71.790 21.163-71.749L21.163-71.656Q21.163-71.626 21.142-71.595L18.145-67.374L19.259-67.374Q19.567-67.374 19.773-67.394Q19.980-67.415 20.190-67.493Q20.401-67.572 20.561-67.726Q20.776-67.941 20.847-68.237Q20.917-68.532 20.944-69.004L21.211-69.004L21.084-67.066M21.932-68.601Q21.932-68.922 22.057-69.211Q22.181-69.500 22.407-69.723Q22.632-69.947 22.928-70.067Q23.224-70.187 23.542-70.187Q23.870-70.187 24.131-70.087Q24.393-69.988 24.569-69.806Q24.745-69.623 24.839-69.365Q24.933-69.107 24.933-68.775Q24.933-68.683 24.851-68.662L22.595-68.662L22.595-68.601Q22.595-68.013 22.879-67.630Q23.162-67.247 23.730-67.247Q24.051-67.247 24.319-67.440Q24.588-67.633 24.676-67.948Q24.683-67.989 24.758-68.003L24.851-68.003Q24.933-67.979 24.933-67.907Q24.933-67.900 24.926-67.873Q24.813-67.476 24.442-67.237Q24.071-66.998 23.648-66.998Q23.210-66.998 22.810-67.206Q22.410-67.415 22.171-67.782Q21.932-68.149 21.932-68.601M22.602-68.871L24.417-68.871Q24.417-69.148 24.319-69.400Q24.222-69.653 24.024-69.809Q23.825-69.964 23.542-69.964Q23.265-69.964 23.051-69.806Q22.838-69.647 22.720-69.392Q22.602-69.137 22.602-68.871M27.271-67.066L25.534-67.066L25.534-67.346Q25.763-67.346 25.912-67.380Q26.061-67.415 26.061-67.555L26.061-69.404Q26.061-69.674 25.953-69.735Q25.845-69.797 25.534-69.797L25.534-70.077L26.563-70.152L26.563-69.445Q26.693-69.753 26.936-69.952Q27.178-70.152 27.496-70.152Q27.715-70.152 27.886-70.028Q28.057-69.903 28.057-69.691Q28.057-69.554 27.958-69.455Q27.859-69.356 27.725-69.356Q27.589-69.356 27.489-69.455Q27.390-69.554 27.390-69.691Q27.390-69.831 27.489-69.930Q27.199-69.930 26.999-69.734Q26.799-69.537 26.707-69.243Q26.614-68.949 26.614-68.669L26.614-67.555Q26.614-67.346 27.271-67.346L27.271-67.066M28.600-68.549Q28.600-68.891 28.735-69.190Q28.870-69.489 29.110-69.713Q29.349-69.937 29.667-70.062Q29.985-70.187 30.316-70.187Q30.760-70.187 31.160-69.971Q31.560-69.756 31.794-69.378Q32.028-69.001 32.028-68.549Q32.028-68.208 31.887-67.924Q31.745-67.640 31.500-67.433Q31.256-67.227 30.947-67.112Q30.637-66.998 30.316-66.998Q29.885-66.998 29.484-67.199Q29.082-67.401 28.841-67.753Q28.600-68.105 28.600-68.549M30.316-67.247Q30.918-67.247 31.141-67.625Q31.365-68.003 31.365-68.635Q31.365-69.247 31.131-69.606Q30.897-69.964 30.316-69.964Q29.263-69.964 29.263-68.635Q29.263-68.003 29.489-67.625Q29.714-67.247 30.316-67.247\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(190.896 5.556)\">\u003Cpath d=\"M-14.503-57.316Q-15.053-57.716-15.424-58.271Q-15.795-58.827-15.976-59.473Q-16.157-60.119-16.157-60.816Q-16.157-61.329-16.057-61.824Q-15.956-62.320-15.751-62.771Q-15.546-63.222-15.233-63.614Q-14.920-64.005-14.503-64.309Q-14.493-64.313-14.486-64.314Q-14.479-64.316-14.469-64.316L-14.401-64.316Q-14.366-64.316-14.344-64.292Q-14.322-64.268-14.322-64.231Q-14.322-64.186-14.349-64.169Q-14.698-63.868-14.951-63.484Q-15.204-63.099-15.356-62.658Q-15.508-62.217-15.580-61.761Q-15.652-61.305-15.652-60.816Q-15.652-59.815-15.342-58.928Q-15.033-58.041-14.349-57.456Q-14.322-57.439-14.322-57.395Q-14.322-57.357-14.344-57.333Q-14.366-57.309-14.401-57.309L-14.469-57.309Q-14.476-57.313-14.484-57.314Q-14.493-57.316-14.503-57.316M-13.512-59.073L-13.512-60.136Q-13.512-60.160-13.485-60.187Q-13.457-60.214-13.433-60.214L-13.324-60.214Q-13.259-60.214-13.245-60.156Q-13.150-59.722-12.904-59.471Q-12.657-59.220-12.244-59.220Q-11.902-59.220-11.649-59.353Q-11.396-59.486-11.396-59.794Q-11.396-59.951-11.490-60.066Q-11.584-60.180-11.723-60.249Q-11.861-60.317-12.029-60.355L-12.610-60.454Q-12.965-60.522-13.239-60.743Q-13.512-60.963-13.512-61.305Q-13.512-61.554-13.401-61.729Q-13.290-61.903-13.103-62.002Q-12.917-62.101-12.702-62.144Q-12.487-62.187-12.244-62.187Q-11.830-62.187-11.550-62.005L-11.335-62.180Q-11.324-62.183-11.318-62.185Q-11.311-62.187-11.301-62.187L-11.249-62.187Q-11.222-62.187-11.198-62.163Q-11.174-62.139-11.174-62.111L-11.174-61.264Q-11.174-61.243-11.198-61.216Q-11.222-61.189-11.249-61.189L-11.362-61.189Q-11.389-61.189-11.415-61.214Q-11.441-61.240-11.441-61.264Q-11.441-61.500-11.547-61.664Q-11.653-61.828-11.835-61.910Q-12.018-61.992-12.251-61.992Q-12.579-61.992-12.835-61.889Q-13.092-61.787-13.092-61.510Q-13.092-61.315-12.909-61.206Q-12.726-61.096-12.497-61.055L-11.923-60.949Q-11.676-60.901-11.463-60.773Q-11.249-60.645-11.113-60.442Q-10.976-60.238-10.976-59.989Q-10.976-59.476-11.342-59.237Q-11.707-58.998-12.244-58.998Q-12.739-58.998-13.071-59.292L-13.338-59.018Q-13.358-58.998-13.385-58.998L-13.433-58.998Q-13.457-58.998-13.485-59.025Q-13.512-59.052-13.512-59.073M-10.388-60.601Q-10.388-60.922-10.263-61.211Q-10.138-61.500-9.913-61.723Q-9.687-61.947-9.392-62.067Q-9.096-62.187-8.778-62.187Q-8.450-62.187-8.188-62.087Q-7.927-61.988-7.751-61.806Q-7.575-61.623-7.481-61.365Q-7.387-61.107-7.387-60.775Q-7.387-60.683-7.469-60.662L-9.725-60.662L-9.725-60.601Q-9.725-60.013-9.441-59.630Q-9.157-59.247-8.590-59.247Q-8.269-59.247-8-59.440Q-7.732-59.633-7.643-59.948Q-7.636-59.989-7.561-60.003L-7.469-60.003Q-7.387-59.979-7.387-59.907Q-7.387-59.900-7.394-59.873Q-7.507-59.476-7.877-59.237Q-8.248-58.998-8.672-58.998Q-9.110-58.998-9.509-59.206Q-9.909-59.415-10.149-59.782Q-10.388-60.149-10.388-60.601M-9.718-60.871L-7.903-60.871Q-7.903-61.148-8-61.400Q-8.098-61.653-8.296-61.809Q-8.494-61.964-8.778-61.964Q-9.055-61.964-9.269-61.806Q-9.482-61.647-9.600-61.392Q-9.718-61.137-9.718-60.871M-5.131-59.066L-6.734-59.066L-6.734-59.346Q-6.509-59.346-6.360-59.380Q-6.211-59.415-6.211-59.555L-6.211-63.174Q-6.211-63.444-6.319-63.506Q-6.426-63.567-6.734-63.567L-6.734-63.848L-5.657-63.923L-5.657-59.555Q-5.657-59.418-5.507-59.382Q-5.357-59.346-5.131-59.346L-5.131-59.066M-2.739-59.066L-4.471-59.066L-4.471-59.346Q-4.246-59.346-4.097-59.380Q-3.948-59.415-3.948-59.555L-3.948-61.804L-4.536-61.804L-4.536-62.084L-3.948-62.084L-3.948-62.901Q-3.948-63.219-3.771-63.467Q-3.593-63.714-3.302-63.855Q-3.012-63.995-2.701-63.995Q-2.445-63.995-2.241-63.853Q-2.038-63.711-2.038-63.468Q-2.038-63.332-2.137-63.233Q-2.236-63.133-2.373-63.133Q-2.509-63.133-2.609-63.233Q-2.708-63.332-2.708-63.468Q-2.708-63.649-2.568-63.742Q-2.646-63.769-2.745-63.769Q-2.954-63.769-3.108-63.636Q-3.261-63.503-3.342-63.299Q-3.422-63.096-3.422-62.887L-3.422-62.084L-2.533-62.084L-2.533-61.804L-3.395-61.804L-3.395-59.555Q-3.395-59.346-2.739-59.346L-2.739-59.066M-0.175-60.320L-2.233-60.320L-2.233-60.823L-0.175-60.823L-0.175-60.320M2.272-57.709L0.642-57.709L0.642-57.989Q0.871-57.989 1.020-58.024Q1.168-58.058 1.168-58.198L1.168-61.544Q1.168-61.715 1.032-61.756Q0.895-61.797 0.642-61.797L0.642-62.077L1.722-62.152L1.722-61.746Q1.944-61.947 2.231-62.050Q2.518-62.152 2.826-62.152Q3.253-62.152 3.617-61.939Q3.981-61.725 4.195-61.361Q4.408-60.997 4.408-60.577Q4.408-60.132 4.169-59.768Q3.930-59.404 3.537-59.201Q3.144-58.998 2.699-58.998Q2.433-58.998 2.185-59.098Q1.937-59.199 1.749-59.380L1.749-58.198Q1.749-58.061 1.898-58.025Q2.047-57.989 2.272-57.989L2.272-57.709M1.749-61.397L1.749-59.787Q1.883-59.534 2.125-59.377Q2.368-59.220 2.645-59.220Q2.973-59.220 3.226-59.421Q3.479-59.623 3.612-59.941Q3.745-60.259 3.745-60.577Q3.745-60.806 3.680-61.035Q3.616-61.264 3.487-61.462Q3.359-61.660 3.164-61.780Q2.970-61.899 2.737-61.899Q2.443-61.899 2.175-61.770Q1.907-61.640 1.749-61.397M6.712-59.066L5.109-59.066L5.109-59.346Q5.335-59.346 5.483-59.380Q5.632-59.415 5.632-59.555L5.632-63.174Q5.632-63.444 5.524-63.506Q5.417-63.567 5.109-63.567L5.109-63.848L6.186-63.923L6.186-59.555Q6.186-59.418 6.336-59.382Q6.487-59.346 6.712-59.346L6.712-59.066M7.365-59.794Q7.365-60.126 7.589-60.353Q7.813-60.580 8.156-60.708Q8.500-60.837 8.872-60.889Q9.245-60.942 9.549-60.942L9.549-61.195Q9.549-61.400 9.441-61.580Q9.334-61.759 9.153-61.862Q8.971-61.964 8.763-61.964Q8.356-61.964 8.120-61.872Q8.209-61.835 8.255-61.751Q8.302-61.667 8.302-61.565Q8.302-61.469 8.255-61.390Q8.209-61.312 8.129-61.267Q8.049-61.223 7.960-61.223Q7.809-61.223 7.709-61.320Q7.608-61.418 7.608-61.565Q7.608-62.187 8.763-62.187Q8.975-62.187 9.224-62.123Q9.474-62.060 9.676-61.941Q9.877-61.821 10.004-61.636Q10.130-61.452 10.130-61.209L10.130-59.633Q10.130-59.517 10.192-59.421Q10.253-59.326 10.366-59.326Q10.475-59.326 10.540-59.420Q10.605-59.514 10.605-59.633L10.605-60.081L10.872-60.081L10.872-59.633Q10.872-59.363 10.645-59.198Q10.417-59.032 10.137-59.032Q9.928-59.032 9.792-59.186Q9.655-59.339 9.631-59.555Q9.484-59.288 9.202-59.143Q8.920-58.998 8.595-58.998Q8.319-58.998 8.035-59.073Q7.751-59.148 7.558-59.327Q7.365-59.507 7.365-59.794M7.980-59.794Q7.980-59.620 8.081-59.490Q8.182-59.360 8.337-59.290Q8.493-59.220 8.657-59.220Q8.876-59.220 9.084-59.317Q9.293-59.415 9.421-59.596Q9.549-59.777 9.549-60.003L9.549-60.731Q9.224-60.731 8.859-60.640Q8.493-60.549 8.237-60.337Q7.980-60.126 7.980-59.794\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(190.896 5.556)\">\u003Cpath d=\"M11.440-57.931Q11.570-57.863 11.707-57.863Q11.878-57.863 12.028-57.952Q12.179-58.041 12.290-58.186Q12.401-58.331 12.479-58.499L12.743-59.066L11.574-61.592Q11.499-61.739 11.369-61.771Q11.239-61.804 11.006-61.804L11.006-62.084L12.527-62.084L12.527-61.804Q12.179-61.804 12.179-61.657Q12.182-61.636 12.184-61.619Q12.186-61.602 12.186-61.592L13.043-59.733L13.816-61.404Q13.850-61.472 13.850-61.551Q13.850-61.664 13.766-61.734Q13.683-61.804 13.570-61.804L13.570-62.084L14.766-62.084L14.766-61.804Q14.547-61.804 14.375-61.700Q14.202-61.595 14.110-61.404L12.773-58.499Q12.603-58.129 12.333-57.883Q12.062-57.637 11.707-57.637Q11.437-57.637 11.218-57.803Q10.999-57.969 10.999-58.232Q10.999-58.369 11.092-58.458Q11.184-58.546 11.324-58.546Q11.461-58.546 11.550-58.458Q11.639-58.369 11.639-58.232Q11.639-58.129 11.586-58.051Q11.533-57.972 11.440-57.931\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(190.896 5.556)\">\u003Cpath d=\"M15.160-57.836Q15.160-57.870 15.188-57.897Q15.458-58.126 15.607-58.449Q15.755-58.772 15.755-59.128L15.755-59.165Q15.646-59.066 15.482-59.066Q15.301-59.066 15.181-59.186Q15.061-59.305 15.061-59.486Q15.061-59.661 15.181-59.780Q15.301-59.900 15.482-59.900Q15.738-59.900 15.858-59.661Q15.977-59.421 15.977-59.128Q15.977-58.728 15.808-58.357Q15.639-57.986 15.342-57.730Q15.311-57.709 15.284-57.709Q15.243-57.709 15.201-57.750Q15.160-57.791 15.160-57.836\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(190.896 5.556)\">\u003Cpath d=\"M21.831-59.066L19.698-59.066L19.698-59.346Q20.419-59.346 20.419-59.555L20.419-63.356Q20.419-63.567 19.698-63.567L19.698-63.848L22.364-63.848Q22.774-63.848 23.195-63.694Q23.615-63.540 23.899-63.236Q24.182-62.932 24.182-62.518Q24.182-62.200 24.015-61.954Q23.847-61.708 23.571-61.542Q23.294-61.377 22.972-61.293Q22.651-61.209 22.364-61.209L21.110-61.209L21.110-59.555Q21.110-59.346 21.831-59.346L21.831-59.066M21.082-63.356L21.082-61.459L22.169-61.459Q22.778-61.459 23.092-61.696Q23.407-61.934 23.407-62.518Q23.407-62.911 23.261-63.145Q23.116-63.379 22.844-63.473Q22.573-63.567 22.169-63.567L21.448-63.567Q21.260-63.567 21.171-63.533Q21.082-63.499 21.082-63.356M25.775-60.649L25.775-63.356Q25.775-63.567 25.054-63.567L25.054-63.848L27.187-63.848L27.187-63.567Q26.466-63.567 26.466-63.356L26.466-60.669Q26.466-60.252 26.602-59.924Q26.739-59.596 27.021-59.401Q27.303-59.206 27.727-59.206Q28.031-59.206 28.299-59.316Q28.568-59.425 28.768-59.625Q28.968-59.825 29.079-60.091Q29.190-60.358 29.190-60.669L29.190-63.168Q29.190-63.567 28.469-63.567L28.469-63.848L30.191-63.848L30.191-63.567Q29.470-63.567 29.470-63.168L29.470-60.649Q29.470-60.187 29.232-59.787Q28.995-59.387 28.592-59.157Q28.188-58.926 27.727-58.926Q27.242-58.926 26.789-59.145Q26.336-59.363 26.055-59.758Q25.775-60.153 25.775-60.649M31.063-61.459Q31.063-61.985 31.280-62.453Q31.497-62.921 31.880-63.267Q32.263-63.612 32.746-63.800Q33.230-63.988 33.760-63.988Q34.163-63.988 34.527-63.831Q34.891-63.673 35.175-63.379L35.598-63.961Q35.633-63.988 35.657-63.988L35.704-63.988Q35.735-63.988 35.759-63.964Q35.783-63.940 35.783-63.909L35.783-62.046Q35.783-62.023 35.757-61.997Q35.732-61.971 35.704-61.971L35.578-61.971Q35.516-61.971 35.503-62.046Q35.472-62.361 35.337-62.665Q35.202-62.969 34.987-63.203Q34.771-63.438 34.482-63.573Q34.194-63.708 33.866-63.708Q33.223-63.708 32.765-63.414Q32.307-63.120 32.075-62.607Q31.842-62.094 31.842-61.459Q31.842-60.987 31.972-60.578Q32.102-60.170 32.362-59.857Q32.621-59.545 33.001-59.375Q33.380-59.206 33.872-59.206Q34.201-59.206 34.494-59.322Q34.788-59.439 35.023-59.654Q35.257-59.869 35.387-60.158Q35.516-60.447 35.516-60.775Q35.516-60.802 35.544-60.826Q35.571-60.850 35.592-60.850L35.704-60.850Q35.742-60.850 35.763-60.825Q35.783-60.799 35.783-60.761Q35.783-60.365 35.617-60.028Q35.451-59.691 35.164-59.444Q34.877-59.196 34.508-59.061Q34.139-58.926 33.760-58.926Q33.240-58.926 32.748-59.116Q32.256-59.305 31.876-59.649Q31.497-59.992 31.280-60.461Q31.063-60.929 31.063-61.459M40.500-59.066L37.762-59.066L37.762-59.346Q38.111-59.346 38.447-59.382Q38.784-59.418 38.784-59.555L38.784-63.356Q38.784-63.499 38.695-63.533Q38.606-63.567 38.422-63.567L38.063-63.567Q37.762-63.567 37.547-63.520Q37.331-63.472 37.174-63.315Q37.037-63.181 36.978-62.903Q36.918-62.624 36.880-62.211L36.614-62.211L36.761-63.848L41.494-63.848L41.641-62.211L41.375-62.211Q41.337-62.624 41.281-62.901Q41.224-63.178 41.081-63.315Q40.920-63.475 40.708-63.521Q40.496-63.567 40.192-63.567L39.840-63.567Q39.656-63.567 39.567-63.533Q39.478-63.499 39.478-63.356L39.478-59.555Q39.478-59.418 39.815-59.382Q40.151-59.346 40.500-59.346L40.500-59.066M42.619-57.309L42.551-57.309Q42.516-57.309 42.494-57.335Q42.472-57.360 42.472-57.395Q42.472-57.439 42.503-57.456Q42.858-57.760 43.108-58.150Q43.357-58.540 43.509-58.972Q43.661-59.404 43.732-59.873Q43.802-60.341 43.802-60.816Q43.802-61.295 43.732-61.761Q43.661-62.228 43.508-62.663Q43.354-63.099 43.103-63.487Q42.851-63.875 42.503-64.169Q42.472-64.186 42.472-64.231Q42.472-64.265 42.494-64.290Q42.516-64.316 42.551-64.316L42.619-64.316Q42.629-64.316 42.638-64.314Q42.646-64.313 42.657-64.309Q43.200-63.909 43.573-63.356Q43.945-62.802 44.126-62.156Q44.307-61.510 44.307-60.816Q44.307-60.115 44.126-59.468Q43.945-58.820 43.571-58.266Q43.197-57.712 42.657-57.316Q42.646-57.316 42.638-57.314Q42.629-57.313 42.619-57.309\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-warn)\">\u003Cpath fill=\"none\" d=\"M278.962-46.263h73.977V-71.87h-73.977Z\"\u002F>\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(305.261 5.517)\">\u003Cpath d=\"M-0.717-67.066L-2.454-67.066L-2.454-67.346Q-1.732-67.346-1.732-67.746L-1.732-71.356Q-1.732-71.567-2.454-71.567L-2.454-71.848L-1.097-71.848Q-1.001-71.848-0.950-71.749L0.725-67.774L2.397-71.749Q2.444-71.848 2.543-71.848L3.894-71.848L3.894-71.567Q3.172-71.567 3.172-71.356L3.172-67.555Q3.172-67.346 3.894-67.346L3.894-67.066L1.836-67.066L1.836-67.346Q2.557-67.346 2.557-67.555L2.557-71.567L0.705-67.165Q0.657-67.066 0.547-67.066Q0.435-67.066 0.387-67.165L-1.438-71.496L-1.438-67.746Q-1.438-67.346-0.717-67.346L-0.717-67.066M5.203-67.900L5.203-69.404Q5.203-69.674 5.095-69.735Q4.987-69.797 4.676-69.797L4.676-70.077L5.784-70.152L5.784-67.920L5.784-67.900Q5.784-67.620 5.835-67.476Q5.886-67.333 6.028-67.276Q6.170-67.220 6.457-67.220Q6.710-67.220 6.915-67.360Q7.120-67.500 7.236-67.726Q7.353-67.951 7.353-68.201L7.353-69.404Q7.353-69.674 7.245-69.735Q7.137-69.797 6.826-69.797L6.826-70.077L7.934-70.152L7.934-67.739Q7.934-67.548 7.987-67.466Q8.040-67.384 8.140-67.365Q8.241-67.346 8.457-67.346L8.457-67.066L7.380-66.998L7.380-67.562Q7.271-67.380 7.125-67.257Q6.980-67.134 6.794-67.066Q6.607-66.998 6.406-66.998Q5.203-66.998 5.203-67.900M12.999-67.066L9.318-67.066Q9.280-67.066 9.250-67.093Q9.219-67.121 9.219-67.165L9.219-67.268Q9.219-67.302 9.250-67.339L12.244-71.567L11.181-71.567Q10.767-71.567 10.483-71.511Q10.200-71.455 9.984-71.267Q9.591-70.894 9.591-70.211L9.325-70.211L9.410-71.848L12.979-71.848Q13.023-71.848 13.050-71.819Q13.078-71.790 13.078-71.749L13.078-71.656Q13.078-71.626 13.057-71.595L10.060-67.374L11.174-67.374Q11.481-67.374 11.688-67.394Q11.895-67.415 12.105-67.493Q12.315-67.572 12.476-67.726Q12.691-67.941 12.761-68.237Q12.832-68.532 12.859-69.004L13.126-69.004L12.999-67.066M13.847-68.601Q13.847-68.922 13.971-69.211Q14.096-69.500 14.322-69.723Q14.547-69.947 14.843-70.067Q15.139-70.187 15.457-70.187Q15.785-70.187 16.046-70.087Q16.308-69.988 16.484-69.806Q16.660-69.623 16.754-69.365Q16.848-69.107 16.848-68.775Q16.848-68.683 16.766-68.662L14.510-68.662L14.510-68.601Q14.510-68.013 14.793-67.630Q15.077-67.247 15.645-67.247Q15.966-67.247 16.234-67.440Q16.502-67.633 16.591-67.948Q16.598-67.989 16.673-68.003L16.766-68.003Q16.848-67.979 16.848-67.907Q16.848-67.900 16.841-67.873Q16.728-67.476 16.357-67.237Q15.986-66.998 15.563-66.998Q15.125-66.998 14.725-67.206Q14.325-67.415 14.086-67.782Q13.847-68.149 13.847-68.601M14.517-68.871L16.332-68.871Q16.332-69.148 16.234-69.400Q16.137-69.653 15.938-69.809Q15.740-69.964 15.457-69.964Q15.180-69.964 14.966-69.806Q14.752-69.647 14.635-69.392Q14.517-69.137 14.517-68.871M19.186-67.066L17.449-67.066L17.449-67.346Q17.678-67.346 17.827-67.380Q17.976-67.415 17.976-67.555L17.976-69.404Q17.976-69.674 17.868-69.735Q17.760-69.797 17.449-69.797L17.449-70.077L18.478-70.152L18.478-69.445Q18.608-69.753 18.851-69.952Q19.093-70.152 19.411-70.152Q19.630-70.152 19.801-70.028Q19.972-69.903 19.972-69.691Q19.972-69.554 19.873-69.455Q19.773-69.356 19.640-69.356Q19.503-69.356 19.404-69.455Q19.305-69.554 19.305-69.691Q19.305-69.831 19.404-69.930Q19.114-69.930 18.914-69.734Q18.714-69.537 18.622-69.243Q18.529-68.949 18.529-68.669L18.529-67.555Q18.529-67.346 19.186-67.346L19.186-67.066M20.515-68.549Q20.515-68.891 20.650-69.190Q20.785-69.489 21.024-69.713Q21.264-69.937 21.582-70.062Q21.899-70.187 22.231-70.187Q22.675-70.187 23.075-69.971Q23.475-69.756 23.709-69.378Q23.943-69.001 23.943-68.549Q23.943-68.208 23.802-67.924Q23.660-67.640 23.415-67.433Q23.171-67.227 22.862-67.112Q22.552-66.998 22.231-66.998Q21.800-66.998 21.399-67.199Q20.997-67.401 20.756-67.753Q20.515-68.105 20.515-68.549M22.231-67.247Q22.833-67.247 23.056-67.625Q23.280-68.003 23.280-68.635Q23.280-69.247 23.046-69.606Q22.812-69.964 22.231-69.964Q21.178-69.964 21.178-68.635Q21.178-68.003 21.404-67.625Q21.629-67.247 22.231-67.247\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.261 5.517)\">\u003Cpath d=\"M-14.503-57.316Q-15.053-57.716-15.424-58.271Q-15.795-58.827-15.976-59.473Q-16.157-60.119-16.157-60.816Q-16.157-61.329-16.057-61.824Q-15.956-62.320-15.751-62.771Q-15.546-63.222-15.233-63.614Q-14.920-64.005-14.503-64.309Q-14.493-64.313-14.486-64.314Q-14.479-64.316-14.469-64.316L-14.401-64.316Q-14.366-64.316-14.344-64.292Q-14.322-64.268-14.322-64.231Q-14.322-64.186-14.349-64.169Q-14.698-63.868-14.951-63.484Q-15.204-63.099-15.356-62.658Q-15.508-62.217-15.580-61.761Q-15.652-61.305-15.652-60.816Q-15.652-59.815-15.342-58.928Q-15.033-58.041-14.349-57.456Q-14.322-57.439-14.322-57.395Q-14.322-57.357-14.344-57.333Q-14.366-57.309-14.401-57.309L-14.469-57.309Q-14.476-57.313-14.484-57.314Q-14.493-57.316-14.503-57.316M-11.844-59.066L-13.447-59.066L-13.447-59.346Q-13.221-59.346-13.073-59.380Q-12.924-59.415-12.924-59.555L-12.924-63.174Q-12.924-63.444-13.032-63.506Q-13.139-63.567-13.447-63.567L-13.447-63.848L-12.370-63.923L-12.370-59.555Q-12.370-59.418-12.220-59.382Q-12.070-59.346-11.844-59.346L-11.844-59.066M-11.290-60.601Q-11.290-60.922-11.166-61.211Q-11.041-61.500-10.815-61.723Q-10.590-61.947-10.294-62.067Q-9.998-62.187-9.680-62.187Q-9.352-62.187-9.091-62.087Q-8.829-61.988-8.653-61.806Q-8.477-61.623-8.383-61.365Q-8.289-61.107-8.289-60.775Q-8.289-60.683-8.371-60.662L-10.627-60.662L-10.627-60.601Q-10.627-60.013-10.343-59.630Q-10.060-59.247-9.492-59.247Q-9.171-59.247-8.903-59.440Q-8.634-59.633-8.546-59.948Q-8.539-59.989-8.464-60.003L-8.371-60.003Q-8.289-59.979-8.289-59.907Q-8.289-59.900-8.296-59.873Q-8.409-59.476-8.780-59.237Q-9.151-58.998-9.574-58.998Q-10.012-58.998-10.412-59.206Q-10.812-59.415-11.051-59.782Q-11.290-60.149-11.290-60.601M-10.620-60.871L-8.805-60.871Q-8.805-61.148-8.903-61.400Q-9-61.653-9.198-61.809Q-9.397-61.964-9.680-61.964Q-9.957-61.964-10.171-61.806Q-10.384-61.647-10.502-61.392Q-10.620-61.137-10.620-60.871M-7.643-59.794Q-7.643-60.126-7.419-60.353Q-7.196-60.580-6.852-60.708Q-6.509-60.837-6.136-60.889Q-5.763-60.942-5.459-60.942L-5.459-61.195Q-5.459-61.400-5.567-61.580Q-5.675-61.759-5.856-61.862Q-6.037-61.964-6.245-61.964Q-6.652-61.964-6.888-61.872Q-6.799-61.835-6.753-61.751Q-6.707-61.667-6.707-61.565Q-6.707-61.469-6.753-61.390Q-6.799-61.312-6.879-61.267Q-6.960-61.223-7.049-61.223Q-7.199-61.223-7.300-61.320Q-7.401-61.418-7.401-61.565Q-7.401-62.187-6.245-62.187Q-6.033-62.187-5.784-62.123Q-5.534-62.060-5.333-61.941Q-5.131-61.821-5.005-61.636Q-4.878-61.452-4.878-61.209L-4.878-59.633Q-4.878-59.517-4.817-59.421Q-4.755-59.326-4.642-59.326Q-4.533-59.326-4.468-59.420Q-4.403-59.514-4.403-59.633L-4.403-60.081L-4.136-60.081L-4.136-59.633Q-4.136-59.363-4.364-59.198Q-4.591-59.032-4.871-59.032Q-5.080-59.032-5.217-59.186Q-5.353-59.339-5.377-59.555Q-5.524-59.288-5.806-59.143Q-6.088-58.998-6.413-58.998Q-6.690-58.998-6.973-59.073Q-7.257-59.148-7.450-59.327Q-7.643-59.507-7.643-59.794M-7.028-59.794Q-7.028-59.620-6.927-59.490Q-6.826-59.360-6.671-59.290Q-6.515-59.220-6.351-59.220Q-6.133-59.220-5.924-59.317Q-5.716-59.415-5.587-59.596Q-5.459-59.777-5.459-60.003L-5.459-60.731Q-5.784-60.731-6.150-60.640Q-6.515-60.549-6.772-60.337Q-7.028-60.126-7.028-59.794M-1.969-59.066L-3.706-59.066L-3.706-59.346Q-3.477-59.346-3.328-59.380Q-3.179-59.415-3.179-59.555L-3.179-61.404Q-3.179-61.674-3.287-61.735Q-3.395-61.797-3.706-61.797L-3.706-62.077L-2.677-62.152L-2.677-61.445Q-2.547-61.753-2.304-61.952Q-2.062-62.152-1.744-62.152Q-1.525-62.152-1.354-62.028Q-1.183-61.903-1.183-61.691Q-1.183-61.554-1.282-61.455Q-1.382-61.356-1.515-61.356Q-1.652-61.356-1.751-61.455Q-1.850-61.554-1.850-61.691Q-1.850-61.831-1.751-61.930Q-2.041-61.930-2.241-61.734Q-2.441-61.537-2.533-61.243Q-2.626-60.949-2.626-60.669L-2.626-59.555Q-2.626-59.346-1.969-59.346L-1.969-59.066M1.083-59.066L-0.551-59.066L-0.551-59.346Q-0.322-59.346-0.173-59.380Q-0.025-59.415-0.025-59.555L-0.025-61.404Q-0.025-61.674-0.132-61.735Q-0.240-61.797-0.551-61.797L-0.551-62.077L0.509-62.152L0.509-61.503Q0.679-61.811 0.984-61.982Q1.288-62.152 1.633-62.152Q2.139-62.152 2.423-61.929Q2.706-61.705 2.706-61.209L2.706-59.555Q2.706-59.418 2.855-59.382Q3.004-59.346 3.229-59.346L3.229-59.066L1.599-59.066L1.599-59.346Q1.828-59.346 1.977-59.380Q2.125-59.415 2.125-59.555L2.125-61.195Q2.125-61.530 2.006-61.730Q1.886-61.930 1.572-61.930Q1.302-61.930 1.067-61.794Q0.833-61.657 0.695-61.423Q0.556-61.189 0.556-60.915L0.556-59.555Q0.556-59.418 0.707-59.382Q0.857-59.346 1.083-59.346L1.083-59.066M3.776-60.601Q3.776-60.922 3.901-61.211Q4.026-61.500 4.251-61.723Q4.477-61.947 4.772-62.067Q5.068-62.187 5.386-62.187Q5.714-62.187 5.976-62.087Q6.237-61.988 6.413-61.806Q6.589-61.623 6.683-61.365Q6.777-61.107 6.777-60.775Q6.777-60.683 6.695-60.662L4.439-60.662L4.439-60.601Q4.439-60.013 4.723-59.630Q5.007-59.247 5.574-59.247Q5.895-59.247 6.164-59.440Q6.432-59.633 6.521-59.948Q6.528-59.989 6.603-60.003L6.695-60.003Q6.777-59.979 6.777-59.907Q6.777-59.900 6.770-59.873Q6.657-59.476 6.287-59.237Q5.916-58.998 5.492-58.998Q5.054-58.998 4.655-59.206Q4.255-59.415 4.015-59.782Q3.776-60.149 3.776-60.601M4.446-60.871L6.261-60.871Q6.261-61.148 6.164-61.400Q6.066-61.653 5.868-61.809Q5.670-61.964 5.386-61.964Q5.109-61.964 4.896-61.806Q4.682-61.647 4.564-61.392Q4.446-61.137 4.446-60.871M7.365-60.577Q7.365-60.915 7.505-61.206Q7.645-61.496 7.890-61.710Q8.134-61.923 8.438-62.038Q8.742-62.152 9.067-62.152Q9.337-62.152 9.600-62.053Q9.864-61.954 10.055-61.776L10.055-63.174Q10.055-63.444 9.947-63.506Q9.840-63.567 9.529-63.567L9.529-63.848L10.605-63.923L10.605-59.739Q10.605-59.551 10.660-59.468Q10.715-59.384 10.815-59.365Q10.916-59.346 11.132-59.346L11.132-59.066L10.024-58.998L10.024-59.415Q9.607-58.998 8.982-58.998Q8.551-58.998 8.178-59.210Q7.806-59.421 7.585-59.782Q7.365-60.143 7.365-60.577M9.040-59.220Q9.248-59.220 9.435-59.292Q9.621-59.363 9.775-59.500Q9.928-59.637 10.024-59.815L10.024-61.424Q9.939-61.571 9.793-61.691Q9.648-61.811 9.479-61.870Q9.310-61.930 9.129-61.930Q8.568-61.930 8.300-61.541Q8.032-61.151 8.032-60.570Q8.032-59.999 8.266-59.609Q8.500-59.220 9.040-59.220\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.261 5.517)\">\u003Cpath d=\"M16.188-59.066L14.554-59.066L14.554-59.346Q14.783-59.346 14.932-59.380Q15.081-59.415 15.081-59.555L15.081-61.404Q15.081-61.674 14.973-61.735Q14.865-61.797 14.554-61.797L14.554-62.077L15.614-62.152L15.614-61.503Q15.785-61.811 16.089-61.982Q16.393-62.152 16.738-62.152Q17.138-62.152 17.415-62.012Q17.692-61.872 17.777-61.524Q17.945-61.817 18.244-61.985Q18.543-62.152 18.888-62.152Q19.394-62.152 19.678-61.929Q19.962-61.705 19.962-61.209L19.962-59.555Q19.962-59.418 20.110-59.382Q20.259-59.346 20.484-59.346L20.484-59.066L18.854-59.066L18.854-59.346Q19.080-59.346 19.230-59.382Q19.380-59.418 19.380-59.555L19.380-61.195Q19.380-61.530 19.261-61.730Q19.141-61.930 18.827-61.930Q18.557-61.930 18.323-61.794Q18.088-61.657 17.950-61.423Q17.812-61.189 17.812-60.915L17.812-59.555Q17.812-59.418 17.960-59.382Q18.109-59.346 18.335-59.346L18.335-59.066L16.704-59.066L16.704-59.346Q16.933-59.346 17.082-59.380Q17.231-59.415 17.231-59.555L17.231-61.195Q17.231-61.530 17.111-61.730Q16.991-61.930 16.677-61.930Q16.407-61.930 16.173-61.794Q15.939-61.657 15.800-61.423Q15.662-61.189 15.662-60.915L15.662-59.555Q15.662-59.418 15.812-59.382Q15.963-59.346 16.188-59.346L16.188-59.066M21.031-60.549Q21.031-60.891 21.166-61.190Q21.301-61.489 21.541-61.713Q21.780-61.937 22.098-62.062Q22.416-62.187 22.747-62.187Q23.192-62.187 23.591-61.971Q23.991-61.756 24.225-61.378Q24.460-61.001 24.460-60.549Q24.460-60.208 24.318-59.924Q24.176-59.640 23.932-59.433Q23.687-59.227 23.378-59.112Q23.068-58.998 22.747-58.998Q22.317-58.998 21.915-59.199Q21.513-59.401 21.272-59.753Q21.031-60.105 21.031-60.549M22.747-59.247Q23.349-59.247 23.573-59.625Q23.796-60.003 23.796-60.635Q23.796-61.247 23.562-61.606Q23.328-61.964 22.747-61.964Q21.694-61.964 21.694-60.635Q21.694-60.003 21.920-59.625Q22.146-59.247 22.747-59.247\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.261 5.517)\">\u003Cpath d=\"M25.277-60.577Q25.277-60.915 25.418-61.206Q25.558-61.496 25.802-61.710Q26.046-61.923 26.351-62.038Q26.655-62.152 26.980-62.152Q27.250-62.152 27.513-62.053Q27.776-61.954 27.967-61.776L27.967-63.174Q27.967-63.444 27.860-63.506Q27.752-63.567 27.441-63.567L27.441-63.848L28.518-63.923L28.518-59.739Q28.518-59.551 28.572-59.468Q28.627-59.384 28.728-59.365Q28.829-59.346 29.044-59.346L29.044-59.066L27.937-58.998L27.937-59.415Q27.520-58.998 26.894-58.998Q26.463-58.998 26.091-59.210Q25.718-59.421 25.498-59.782Q25.277-60.143 25.277-60.577M26.952-59.220Q27.161-59.220 27.347-59.292Q27.533-59.363 27.687-59.500Q27.841-59.637 27.937-59.815L27.937-61.424Q27.851-61.571 27.706-61.691Q27.561-61.811 27.391-61.870Q27.222-61.930 27.041-61.930Q26.481-61.930 26.212-61.541Q25.944-61.151 25.944-60.570Q25.944-59.999 26.178-59.609Q26.412-59.220 26.952-59.220M29.652-60.601Q29.652-60.922 29.777-61.211Q29.902-61.500 30.128-61.723Q30.353-61.947 30.649-62.067Q30.944-62.187 31.262-62.187Q31.590-62.187 31.852-62.087Q32.113-61.988 32.289-61.806Q32.465-61.623 32.559-61.365Q32.653-61.107 32.653-60.775Q32.653-60.683 32.571-60.662L30.316-60.662L30.316-60.601Q30.316-60.013 30.599-59.630Q30.883-59.247 31.450-59.247Q31.772-59.247 32.040-59.440Q32.308-59.633 32.397-59.948Q32.404-59.989 32.479-60.003L32.571-60.003Q32.653-59.979 32.653-59.907Q32.653-59.900 32.647-59.873Q32.534-59.476 32.163-59.237Q31.792-58.998 31.368-58.998Q30.931-58.998 30.531-59.206Q30.131-59.415 29.892-59.782Q29.652-60.149 29.652-60.601M30.322-60.871L32.137-60.871Q32.137-61.148 32.040-61.400Q31.942-61.653 31.744-61.809Q31.546-61.964 31.262-61.964Q30.985-61.964 30.772-61.806Q30.558-61.647 30.440-61.392Q30.322-61.137 30.322-60.871M34.909-59.066L33.306-59.066L33.306-59.346Q33.532-59.346 33.681-59.380Q33.829-59.415 33.829-59.555L33.829-63.174Q33.829-63.444 33.722-63.506Q33.614-63.567 33.306-63.567L33.306-63.848L34.383-63.923L34.383-59.555Q34.383-59.418 34.533-59.382Q34.684-59.346 34.909-59.346L34.909-59.066M35.825-57.309L35.757-57.309Q35.723-57.309 35.701-57.335Q35.678-57.360 35.678-57.395Q35.678-57.439 35.709-57.456Q36.065-57.760 36.314-58.150Q36.564-58.540 36.716-58.972Q36.868-59.404 36.938-59.873Q37.008-60.341 37.008-60.816Q37.008-61.295 36.938-61.761Q36.868-62.228 36.714-62.663Q36.560-63.099 36.309-63.487Q36.058-63.875 35.709-64.169Q35.678-64.186 35.678-64.231Q35.678-64.265 35.701-64.290Q35.723-64.316 35.757-64.316L35.825-64.316Q35.836-64.316 35.844-64.314Q35.853-64.313 35.863-64.309Q36.406-63.909 36.779-63.356Q37.151-62.802 37.333-62.156Q37.514-61.510 37.514-60.816Q37.514-60.115 37.333-59.468Q37.151-58.820 36.777-58.266Q36.403-57.712 35.863-57.316Q35.853-57.316 35.844-57.314Q35.836-57.313 35.825-57.309\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M28.377-59.066h22.692\"\u002F>\u003Cpath stroke=\"none\" d=\"m53.67-59.066-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M134.369-59.066h30.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m167.796-59.066-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M242.173-59.066h33.989\"\u002F>\u003Cpath stroke=\"none\" d=\"m278.762-59.066-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The MCTS lineage. UCT (Kocsis-Szepesvari 2006) supplies the convergent tree policy; AlphaGo adds value\u002Fpolicy networks in place of the rollout and leaf heuristic; AlphaZero learns from self-play with one network and a PUCT tree policy; MuZero plans the same search inside a learned latent model. Each keeps the four-step selection\u002Fexpansion\u002Fsimulation\u002Fbackup loop.\u003C\u002Ffigcaption>",1785117789052]