[{"data":1,"prerenderedAt":11531},["ShallowReactive",2],{"lesson:\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":3,"course-wordcounts":5749,"ref-card-index":6660,"nav:deep-learning":11344,"tikz:52ee85ef0bf8daf5699031d8bf57f267d87893a7c35167f531b2b7dc83d725b8":11526,"tikz:eaa0aa6a0ee3d297e85fd9671b46bb334c9c72fe4aaa9185dea6487e3d5c7d47":11527,"tikz:daac3fb2c1d268c0b044f5e360a1703d395f6152f540ec2dad460a190744d6bd":11528,"tikz:7f497cf9576ce1b348ea089bef50e05c016cbef5014d8a8e5882e26a49dd8958":11529,"tikz:c5e0779b1d6db4ff99e23bbb5f2b63ec1ed50a0e8e5e2dce113d62e385cdea5c":11530},{"id":4,"title":5,"blurb":6,"body":7,"brief":5717,"category":5718,"description":5719,"draft":5720,"extension":5721,"meta":5722,"module":5726,"navigation":5727,"path":5728,"practice":5729,"rawbody":5730,"readingTime":5731,"seo":5736,"sources":5737,"status":5744,"stem":5745,"summary":5746,"topics":5747,"__hash__":5748},"course\u002F06.deep-learning\u002F09.practical\u002F01.practical-methodology.md","Practical Methodology","",{"type":8,"value":9,"toc":5706},"minimark",[10,40,72,77,80,98,102,113,146,150,161,304,307,310,321,413,824,859,1132,1297,1464,1614,1743,2166,2201,2560,2749,2752,2756,2759,2847,2856,2872,2875,2879,2887,3303,3314,3539,3542,3545,3645,3886,4256,4363,4700,4720,4724,4727,4730,4775,4783,4802,4806,4817,5279,5381,5431,5435,5573,5581],[11,12,13,14,18,19,23,24,35,36,39],"p",{},"A practitioner who knows every optimizer and architecture in this course can still\nship a model that fails because of a wrong ",[15,16,17],"em",{},"decision"," about which equation to\nchange next. Goodfellow's central claim is that\n",[20,21,22],"strong",{},"correctly applying a commonplace algorithm usually beats sloppily applying an\nexotic one",".",[25,26,27],"sup",{},[28,29,34],"a",{"href":30,"ariaDescribedBy":31,"dataFootnoteRef":6,"id":33},"#user-content-fn-gf-method",[32],"footnote-label","user-content-fnref-gf-method","1"," The skill is methodological: pick the right metric, build an\nend-to-end system fast, instrument it, and let a ",[15,37,38],{},"diagnosis",", not a hunch, pick\nthe next move. This lesson is that decision procedure, made explicit.",[11,41,42,43,46,47,71],{},"The reason discipline matters so much is that deep-learning failures are\n",[15,44,45],{},"ambiguous",". A training run that plateaus at ",[48,49,52],"span",{"className":50},[51],"katex",[48,53,57],{"className":54,"ariaHidden":56},[55],"katex-html","true",[48,58,61,66],{"className":59},[60],"base",[48,62],{"className":63,"style":65},[64],"strut","height:0.8056em;vertical-align:-0.0556em;",[48,67,70],{"className":68},[69],"mord","40%"," error could be starved of\ncapacity, starved of data, poorly optimized, or silently corrupted by a data-loader\nbug, and the loss curve alone does not say which. Every one of those causes has a\ndifferent remedy, and applying the wrong remedy costs days. The methodology exists to\nturn that ambiguity into a sequence of cheap measurements that each rule out one\ncause.",[73,74,76],"h2",{"id":75},"the-design-process","The design process",[11,78,79],{},"The recommended workflow is a loop, not a waterfall. Each pass through it changes\nexactly one thing, chosen by what the instrumentation says is the bottleneck.\nChanging several things at once is the classic error: if error drops, you cannot\nattribute the win, and if it rises, you cannot attribute the loss, so the next\niteration starts blind.",[81,82,84],"callout",{"type":83},"definition",[11,85,86,89,90,93,94,97],{},[20,87,88],{},"Definition (Practical design loop)."," A four-step iterate-to-target cycle: (1)\nfix the goal as an ",[15,91,92],{},"error metric"," and a ",[15,95,96],{},"target value","; (2) build a working\nend-to-end pipeline as fast as possible; (3) instrument it to find the\nbottleneck (too little capacity, too little data, a bug, or bad\nhyperparameters); (4) make one change indicated by the diagnosis, and repeat.",[99,100],"tikz-figure",{"hash":101},"52ee85ef0bf8daf5699031d8bf57f267d87893a7c35167f531b2b7dc83d725b8",[11,103,104,105],{},"The single most common mistake is to skip step 2, to tune an idea in the abstract\nbefore any complete system runs. The baseline is what converts vague worry into a\nmeasured number, and the number is what makes step 3 possible.",[25,106,107],{},[28,108,112],{"href":109,"ariaDescribedBy":110,"dataFootnoteRef":6,"id":111},"#user-content-fn-chollet-workflow",[32],"user-content-fnref-chollet-workflow","2",[11,114,115,116,119,120,136,137,141,142,145],{},"Chollet frames step 1 more sharply: before you trust any learned model, it must beat\na ",[20,117,118],{},"common-sense baseline"," that uses no learning at all. For a balanced two-class\nproblem that baseline is random guessing at ",[48,121,123],{"className":122},[51],[48,124,126],{"className":125,"ariaHidden":56},[55],[48,127,129,132],{"className":128},[60],[48,130],{"className":131,"style":65},[64],[48,133,135],{"className":134},[69],"50%"," accuracy; for a temperature\nforecaster it is ",[138,139,140],"q",{},"tomorrow equals today","; for an imbalanced detector it is the\nmajority-class constant. A model that fails to clear this floor is not learning\nanything useful from its inputs, and no amount of tuning will rescue it until the\ndata pipeline or the target itself is fixed. The floor is also a sanity check on the\nwhole harness: if a model that ",[15,143,144],{},"should"," be able to beat it does not, the bug is\nusually in the plumbing, not the network.",[73,147,149],{"id":148},"performance-metrics","Performance metrics",[11,151,152,153,156,157,160],{},"Before building anything, decide what ",[138,154,155],{},"good"," means as a single number. The default\nchoice, accuracy, silently fails under ",[20,158,159],{},"class imbalance",", the regime where one\nclass dominates the data.",[81,162,163],{"type":83},[11,164,165,168,169,209,210,213,214,247,248,286,287,303],{},[20,166,167],{},"Definition (Accuracy's failure mode)."," On a dataset where a fraction\n",[48,170,172],{"className":171},[51],[48,173,175,198],{"className":174,"ariaHidden":56},[55],[48,176,178,182,185,190,195],{"className":177},[60],[48,179],{"className":180,"style":181},[64],"height:0.7278em;vertical-align:-0.0833em;",[48,183,34],{"className":184},[69],[48,186],{"className":187,"style":189},[188],"mspace","margin-right:0.2222em;",[48,191,194],{"className":192},[193],"mbin","−",[48,196],{"className":197,"style":189},[188],[48,199,201,205],{"className":200},[60],[48,202],{"className":203,"style":204},[64],"height:0.625em;vertical-align:-0.1944em;",[48,206,11],{"className":207},[69,208],"mathnormal"," of examples are negative, the constant classifier ",[138,211,212],{},"always predict negative"," attains accuracy ",[48,215,217],{"className":216},[51],[48,218,220,238],{"className":219,"ariaHidden":56},[55],[48,221,223,226,229,232,235],{"className":222},[60],[48,224],{"className":225,"style":181},[64],[48,227,34],{"className":228},[69],[48,230],{"className":231,"style":189},[188],[48,233,194],{"className":234},[193],[48,236],{"className":237,"style":189},[188],[48,239,241,244],{"className":240},[60],[48,242],{"className":243,"style":204},[64],[48,245,11],{"className":246},[69,208],". With ",[48,249,251],{"className":250},[51],[48,252,254,275],{"className":253,"ariaHidden":56},[55],[48,255,257,260,263,267,272],{"className":256},[60],[48,258],{"className":259,"style":204},[64],[48,261,11],{"className":262},[69,208],[48,264],{"className":265,"style":266},[188],"margin-right:0.2778em;",[48,268,271],{"className":269},[270],"mrel","=",[48,273],{"className":274,"style":266},[188],[48,276,278,282],{"className":277},[60],[48,279],{"className":280,"style":281},[64],"height:0.6444em;",[48,283,285],{"className":284},[69],"0.001"," (a rare disease) it scores\n",[48,288,290],{"className":289},[51],[48,291,293],{"className":292,"ariaHidden":56},[55],[48,294,296,299],{"className":295},[60],[48,297],{"className":298,"style":65},[64],[48,300,302],{"className":301},[69],"99.9%"," while detecting nothing: accuracy rewards ignoring the class that\nmatters.",[11,305,306],{},"To address this, score the two error types separately. Fix a positive class and\ncount the four outcomes of a binary decision.",[99,308],{"hash":309},"eaa0aa6a0ee3d297e85fd9671b46bb334c9c72fe4aaa9185dea6487e3d5c7d47",[11,311,312,313],{},"Using these counts, we can compute three metrics that are robust against\nimbalance:",[25,314,315],{},[28,316,320],{"href":317,"ariaDescribedBy":318,"dataFootnoteRef":6,"id":319},"#user-content-fn-gf-metrics",[32],"user-content-fnref-gf-metrics","3",[322,323,324,331,337],"ul",{},[325,326,327,330],"li",{},[20,328,329],{},"Precision",": how often are positive labels correct?",[325,332,333,336],{},[20,334,335],{},"Recall",": how many of the actual positives are correctly identified?",[325,338,339,412],{},[20,340,341],{},[48,342,344],{"className":343},[51],[48,345,347],{"className":346,"ariaHidden":56},[55],[48,348,350,354],{"className":349},[60],[48,351],{"className":352,"style":353},[64],"height:0.8333em;vertical-align:-0.15em;",[48,355,357,362],{"className":356},[69],[48,358,361],{"className":359,"style":360},[69,208],"margin-right:0.1389em;","F",[48,363,366],{"className":364},[365],"msupsub",[48,367,371,403],{"className":368},[369,370],"vlist-t","vlist-t2",[48,372,375,398],{"className":373},[374],"vlist-r",[48,376,380],{"className":377,"style":379},[378],"vlist","height:0.3011em;",[48,381,383,388],{"style":382},"top:-2.55em;margin-left:-0.1389em;margin-right:0.05em;",[48,384],{"className":385,"style":387},[386],"pstrut","height:2.7em;",[48,389,395],{"className":390},[391,392,393,394],"sizing","reset-size6","size3","mtight",[48,396,34],{"className":397},[69,394],[48,399,402],{"className":400},[401],"vlist-s","​",[48,404,406],{"className":405},[374],[48,407,410],{"className":408,"style":409},[378],"height:0.15em;",[48,411],{},": the harmonic mean of precision and recall, giving a more holistic\nmetric that punishes models that sacrifice one for the other",[48,414,417],{"className":415},[416],"katex-display",[48,418,420],{"className":419},[51],[48,421,423,447,581,730],{"className":422,"ariaHidden":56},[55],[48,424,426,430,438,441,444],{"className":425},[60],[48,427],{"className":428,"style":429},[64],"height:0.8623em;vertical-align:-0.1944em;",[48,431,434],{"className":432},[69,433],"text",[48,435,437],{"className":436},[69],"precision",[48,439],{"className":440,"style":266},[188],[48,442,271],{"className":443},[270],[48,445],{"className":446,"style":266},[188],[48,448,450,454,552,557,561,565,572,575,578],{"className":449},[60],[48,451],{"className":452,"style":453},[64],"height:2.1297em;vertical-align:-0.7693em;",[48,455,457,462,548],{"className":456},[69],[48,458],{"className":459},[460,461],"mopen","nulldelimiter",[48,463,466],{"className":464},[465],"mfrac",[48,467,469,539],{"className":468},[369,370],[48,470,472,536],{"className":471},[374],[48,473,476,510,521],{"className":474,"style":475},[378],"height:1.3603em;",[48,477,479,483],{"style":478},"top:-2.314em;",[48,480],{"className":481,"style":482},[386],"height:3em;",[48,484,486,490,494,497,501,504,507],{"className":485},[69],[48,487,489],{"className":488,"style":360},[69,208],"T",[48,491,493],{"className":492,"style":360},[69,208],"P",[48,495],{"className":496,"style":189},[188],[48,498,500],{"className":499},[193],"+",[48,502],{"className":503,"style":189},[188],[48,505,361],{"className":506,"style":360},[69,208],[48,508,493],{"className":509,"style":360},[69,208],[48,511,513,516],{"style":512},"top:-3.23em;",[48,514],{"className":515,"style":482},[386],[48,517],{"className":518,"style":520},[519],"frac-line","border-bottom-width:0.04em;",[48,522,524,527],{"style":523},"top:-3.677em;",[48,525],{"className":526,"style":482},[386],[48,528,530,533],{"className":529},[69],[48,531,489],{"className":532,"style":360},[69,208],[48,534,493],{"className":535,"style":360},[69,208],[48,537,402],{"className":538},[401],[48,540,542],{"className":541},[374],[48,543,546],{"className":544,"style":545},[378],"height:0.7693em;",[48,547],{},[48,549],{"className":550},[551,461],"mclose",[48,553,556],{"className":554},[555],"mpunct",",",[48,558],{"className":559,"style":560},[188],"margin-right:2em;",[48,562],{"className":563,"style":564},[188],"margin-right:0.1667em;",[48,566,568],{"className":567},[69,433],[48,569,571],{"className":570},[69],"recall",[48,573],{"className":574,"style":266},[188],[48,576,271],{"className":577},[270],[48,579],{"className":580,"style":266},[188],[48,582,584,587,672,675,678,681,721,724,727],{"className":583},[60],[48,585],{"className":586,"style":453},[64],[48,588,590,593,669],{"className":589},[69],[48,591],{"className":592},[460,461],[48,594,596],{"className":595},[465],[48,597,599,661],{"className":598},[369,370],[48,600,602,658],{"className":601},[374],[48,603,605,636,644],{"className":604,"style":475},[378],[48,606,607,610],{"style":478},[48,608],{"className":609,"style":482},[386],[48,611,613,616,619,622,625,628,631],{"className":612},[69],[48,614,489],{"className":615,"style":360},[69,208],[48,617,493],{"className":618,"style":360},[69,208],[48,620],{"className":621,"style":189},[188],[48,623,500],{"className":624},[193],[48,626],{"className":627,"style":189},[188],[48,629,361],{"className":630,"style":360},[69,208],[48,632,635],{"className":633,"style":634},[69,208],"margin-right:0.109em;","N",[48,637,638,641],{"style":512},[48,639],{"className":640,"style":482},[386],[48,642],{"className":643,"style":520},[519],[48,645,646,649],{"style":523},[48,647],{"className":648,"style":482},[386],[48,650,652,655],{"className":651},[69],[48,653,489],{"className":654,"style":360},[69,208],[48,656,493],{"className":657,"style":360},[69,208],[48,659,402],{"className":660},[401],[48,662,664],{"className":663},[374],[48,665,667],{"className":666,"style":545},[378],[48,668],{},[48,670],{"className":671},[551,461],[48,673,556],{"className":674},[555],[48,676],{"className":677,"style":560},[188],[48,679],{"className":680,"style":564},[188],[48,682,684,687],{"className":683},[69],[48,685,361],{"className":686,"style":360},[69,208],[48,688,690],{"className":689},[365],[48,691,693,713],{"className":692},[369,370],[48,694,696,710],{"className":695},[374],[48,697,699],{"className":698,"style":379},[378],[48,700,701,704],{"style":382},[48,702],{"className":703,"style":387},[386],[48,705,707],{"className":706},[391,392,393,394],[48,708,34],{"className":709},[69,394],[48,711,402],{"className":712},[401],[48,714,716],{"className":715},[374],[48,717,719],{"className":718,"style":409},[378],[48,720],{},[48,722],{"className":723,"style":266},[188],[48,725,271],{"className":726},[270],[48,728],{"className":729,"style":266},[188],[48,731,733,736,821],{"className":732},[60],[48,734],{"className":735,"style":453},[64],[48,737,739,742,818],{"className":738},[69],[48,740],{"className":741},[460,461],[48,743,745],{"className":744},[465],[48,746,748,810],{"className":747},[369,370],[48,749,751,807],{"className":750},[374],[48,752,754,779,787],{"className":753,"style":475},[378],[48,755,756,759],{"style":478},[48,757],{"className":758,"style":482},[386],[48,760,762,765,768,771,774],{"className":761},[69],[48,763,493],{"className":764,"style":360},[69,208],[48,766],{"className":767,"style":189},[188],[48,769,500],{"className":770},[193],[48,772],{"className":773,"style":189},[188],[48,775,778],{"className":776,"style":777},[69,208],"margin-right:0.0077em;","R",[48,780,781,784],{"style":512},[48,782],{"className":783,"style":482},[386],[48,785],{"className":786,"style":520},[519],[48,788,789,792],{"style":523},[48,790],{"className":791,"style":482},[386],[48,793,795,798,801,804],{"className":794},[69],[48,796,112],{"className":797},[69],[48,799],{"className":800,"style":564},[188],[48,802,493],{"className":803,"style":360},[69,208],[48,805,778],{"className":806,"style":777},[69,208],[48,808,402],{"className":809},[401],[48,811,813],{"className":812},[374],[48,814,816],{"className":815,"style":545},[378],[48,817],{},[48,819],{"className":820},[551,461],[48,822,23],{"className":823},[69],[11,825,826,827,843,844,556],{},"The harmonic mean is deliberate: with precision ",[48,828,830],{"className":829},[51],[48,831,833],{"className":832,"ariaHidden":56},[55],[48,834,836,840],{"className":835},[60],[48,837],{"className":838,"style":839},[64],"height:0.6833em;",[48,841,493],{"className":842,"style":360},[69,208]," and recall ",[48,845,847],{"className":846},[51],[48,848,850],{"className":849,"ariaHidden":56},[55],[48,851,853,856],{"className":852},[60],[48,854],{"className":855,"style":839},[64],[48,857,778],{"className":858,"style":777},[69,208],[48,860,862],{"className":861},[416],[48,863,865],{"className":864},[51],[48,866,868,923],{"className":867,"ariaHidden":56},[55],[48,869,871,874,914,917,920],{"className":870},[60],[48,872],{"className":873,"style":353},[64],[48,875,877,880],{"className":876},[69],[48,878,361],{"className":879,"style":360},[69,208],[48,881,883],{"className":882},[365],[48,884,886,906],{"className":885},[369,370],[48,887,889,903],{"className":888},[374],[48,890,892],{"className":891,"style":379},[378],[48,893,894,897],{"style":382},[48,895],{"className":896,"style":387},[386],[48,898,900],{"className":899},[391,392,393,394],[48,901,34],{"className":902},[69,394],[48,904,402],{"className":905},[401],[48,907,909],{"className":908},[374],[48,910,912],{"className":911,"style":409},[378],[48,913],{},[48,915],{"className":916,"style":266},[188],[48,918,271],{"className":919},[270],[48,921],{"className":922,"style":266},[188],[48,924,926,930,933,936,1126,1129],{"className":925},[60],[48,927],{"className":928,"style":929},[64],"height:2.604em;vertical-align:-0.95em;",[48,931,112],{"className":932},[69],[48,934],{"className":935,"style":564},[188],[48,937,940,1095],{"className":938},[939],"minner",[48,941,943,953,1017,1020,1023,1026,1088],{"className":942},[939],[48,944,948],{"className":945,"style":947},[460,946],"delimcenter","top:0em;",[48,949,952],{"className":950},[951,393],"delimsizing","(",[48,954,956,959,1014],{"className":955},[69],[48,957],{"className":958},[460,461],[48,960,962],{"className":961},[465],[48,963,965,1005],{"className":964},[369,370],[48,966,968,1002],{"className":967},[374],[48,969,972,983,991],{"className":970,"style":971},[378],"height:1.3214em;",[48,973,974,977],{"style":478},[48,975],{"className":976,"style":482},[386],[48,978,980],{"className":979},[69],[48,981,493],{"className":982,"style":360},[69,208],[48,984,985,988],{"style":512},[48,986],{"className":987,"style":482},[386],[48,989],{"className":990,"style":520},[519],[48,992,993,996],{"style":523},[48,994],{"className":995,"style":482},[386],[48,997,999],{"className":998},[69],[48,1000,34],{"className":1001},[69],[48,1003,402],{"className":1004},[401],[48,1006,1008],{"className":1007},[374],[48,1009,1012],{"className":1010,"style":1011},[378],"height:0.686em;",[48,1013],{},[48,1015],{"className":1016},[551,461],[48,1018],{"className":1019,"style":189},[188],[48,1021,500],{"className":1022},[193],[48,1024],{"className":1025,"style":189},[188],[48,1027,1029,1032,1085],{"className":1028},[69],[48,1030],{"className":1031},[460,461],[48,1033,1035],{"className":1034},[465],[48,1036,1038,1077],{"className":1037},[369,370],[48,1039,1041,1074],{"className":1040},[374],[48,1042,1044,1055,1063],{"className":1043,"style":971},[378],[48,1045,1046,1049],{"style":478},[48,1047],{"className":1048,"style":482},[386],[48,1050,1052],{"className":1051},[69],[48,1053,778],{"className":1054,"style":777},[69,208],[48,1056,1057,1060],{"style":512},[48,1058],{"className":1059,"style":482},[386],[48,1061],{"className":1062,"style":520},[519],[48,1064,1065,1068],{"style":523},[48,1066],{"className":1067,"style":482},[386],[48,1069,1071],{"className":1070},[69],[48,1072,34],{"className":1073},[69],[48,1075,402],{"className":1076},[401],[48,1078,1080],{"className":1079},[374],[48,1081,1083],{"className":1082,"style":1011},[378],[48,1084],{},[48,1086],{"className":1087},[551,461],[48,1089,1091],{"className":1090,"style":947},[551,946],[48,1092,1094],{"className":1093},[951,393],")",[48,1096,1098],{"className":1097},[365],[48,1099,1101],{"className":1100},[369],[48,1102,1104],{"className":1103},[374],[48,1105,1108],{"className":1106,"style":1107},[378],"height:1.654em;",[48,1109,1111,1114],{"style":1110},"top:-3.9029em;margin-right:0.05em;",[48,1112],{"className":1113,"style":387},[386],[48,1115,1117],{"className":1116},[391,392,393,394],[48,1118,1120,1123],{"className":1119},[69,394],[48,1121,194],{"className":1122},[69,394],[48,1124,34],{"className":1125},[69,394],[48,1127],{"className":1128,"style":564},[188],[48,1130,556],{"className":1131},[555],[11,1133,1134,1135,1138,1139,1206,1207,1279,1280,1296],{},"which collapses toward the ",[15,1136,1137],{},"smaller"," of the two: a model at ",[48,1140,1142],{"className":1141},[51],[48,1143,1145,1163,1196],{"className":1144,"ariaHidden":56},[55],[48,1146,1148,1151,1154,1157,1160],{"className":1147},[60],[48,1149],{"className":1150,"style":839},[64],[48,1152,493],{"className":1153,"style":360},[69,208],[48,1155],{"className":1156,"style":266},[188],[48,1158,271],{"className":1159},[270],[48,1161],{"className":1162,"style":266},[188],[48,1164,1166,1170,1174,1177,1181,1184,1187,1190,1193],{"className":1165},[60],[48,1167],{"className":1168,"style":1169},[64],"height:0.8778em;vertical-align:-0.1944em;",[48,1171,1173],{"className":1172},[69],"0.99",[48,1175,556],{"className":1176},[555],[48,1178,1180],{"className":1179},[188]," ",[48,1182],{"className":1183,"style":564},[188],[48,1185,778],{"className":1186,"style":777},[69,208],[48,1188],{"className":1189,"style":266},[188],[48,1191,271],{"className":1192},[270],[48,1194],{"className":1195,"style":266},[188],[48,1197,1199,1202],{"className":1198},[60],[48,1200],{"className":1201,"style":281},[64],[48,1203,1205],{"className":1204},[69],"0.01","\nscores ",[48,1208,1210],{"className":1209},[51],[48,1211,1213,1269],{"className":1212,"ariaHidden":56},[55],[48,1214,1216,1219,1259,1262,1266],{"className":1215},[60],[48,1217],{"className":1218,"style":353},[64],[48,1220,1222,1225],{"className":1221},[69],[48,1223,361],{"className":1224,"style":360},[69,208],[48,1226,1228],{"className":1227},[365],[48,1229,1231,1251],{"className":1230},[369,370],[48,1232,1234,1248],{"className":1233},[374],[48,1235,1237],{"className":1236,"style":379},[378],[48,1238,1239,1242],{"style":382},[48,1240],{"className":1241,"style":387},[386],[48,1243,1245],{"className":1244},[391,392,393,394],[48,1246,34],{"className":1247},[69,394],[48,1249,402],{"className":1250},[401],[48,1252,1254],{"className":1253},[374],[48,1255,1257],{"className":1256,"style":409},[378],[48,1258],{},[48,1260],{"className":1261,"style":266},[188],[48,1263,1265],{"className":1264},[270],"≈",[48,1267],{"className":1268,"style":266},[188],[48,1270,1272,1275],{"className":1271},[60],[48,1273],{"className":1274,"style":281},[64],[48,1276,1278],{"className":1277},[69],"0.02",", not the ",[48,1281,1283],{"className":1282},[51],[48,1284,1286],{"className":1285,"ariaHidden":56},[55],[48,1287,1289,1292],{"className":1288},[60],[48,1290],{"className":1291,"style":281},[64],[48,1293,1295],{"className":1294},[69],"0.50"," an arithmetic mean would award.",[11,1298,1299,1300,1345,1346,1362,1363,1397,1398,1414,1415,1431,1432,1447,1448,1463],{},"For example, take a disease screen run on\n",[48,1301,1303],{"className":1302},[51],[48,1304,1306,1324],{"className":1305,"ariaHidden":56},[55],[48,1307,1309,1312,1315,1318,1321],{"className":1308},[60],[48,1310],{"className":1311,"style":839},[64],[48,1313,635],{"className":1314,"style":634},[69,208],[48,1316],{"className":1317,"style":266},[188],[48,1319,271],{"className":1320},[270],[48,1322],{"className":1323,"style":266},[188],[48,1325,1327,1331,1335,1341],{"className":1326},[60],[48,1328],{"className":1329,"style":1330},[64],"height:0.8389em;vertical-align:-0.1944em;",[48,1332,1334],{"className":1333},[69],"10",[48,1336,1338],{"className":1337},[69],[48,1339,556],{"className":1340},[555],[48,1342,1344],{"className":1343},[69],"000"," patients of whom ",[48,1347,1349],{"className":1348},[51],[48,1350,1352],{"className":1351,"ariaHidden":56},[55],[48,1353,1355,1358],{"className":1354},[60],[48,1356],{"className":1357,"style":281},[64],[48,1359,1361],{"className":1360},[69],"50"," actually have the disease (",[48,1364,1366],{"className":1365},[51],[48,1367,1369,1387],{"className":1368,"ariaHidden":56},[55],[48,1370,1372,1375,1378,1381,1384],{"className":1371},[60],[48,1373],{"className":1374,"style":204},[64],[48,1376,11],{"className":1377},[69,208],[48,1379],{"className":1380,"style":266},[188],[48,1382,271],{"className":1383},[270],[48,1385],{"className":1386,"style":266},[188],[48,1388,1390,1393],{"className":1389},[60],[48,1391],{"className":1392,"style":281},[64],[48,1394,1396],{"className":1395},[69],"0.005","). A model\nflags ",[48,1399,1401],{"className":1400},[51],[48,1402,1404],{"className":1403,"ariaHidden":56},[55],[48,1405,1407,1410],{"className":1406},[60],[48,1408],{"className":1409,"style":281},[64],[48,1411,1413],{"className":1412},[69],"80"," patients as positive; of those, ",[48,1416,1418],{"className":1417},[51],[48,1419,1421],{"className":1420,"ariaHidden":56},[55],[48,1422,1424,1427],{"className":1423},[60],[48,1425],{"className":1426,"style":281},[64],[48,1428,1430],{"className":1429},[69],"40"," are true cases and ",[48,1433,1435],{"className":1434},[51],[48,1436,1438],{"className":1437,"ariaHidden":56},[55],[48,1439,1441,1444],{"className":1440},[60],[48,1442],{"className":1443,"style":281},[64],[48,1445,1430],{"className":1446},[69]," are false\nalarms, so it misses ",[48,1449,1451],{"className":1450},[51],[48,1452,1454],{"className":1453,"ariaHidden":56},[55],[48,1455,1457,1460],{"className":1456},[60],[48,1458],{"className":1459,"style":281},[64],[48,1461,1334],{"className":1462},[69]," real cases:",[48,1465,1467],{"className":1466},[416],[48,1468,1470],{"className":1469},[51],[48,1471,1473,1494,1528,1561,1594],{"className":1472,"ariaHidden":56},[55],[48,1474,1476,1479,1482,1485,1488,1491],{"className":1475},[60],[48,1477],{"className":1478,"style":839},[64],[48,1480,489],{"className":1481,"style":360},[69,208],[48,1483,493],{"className":1484,"style":360},[69,208],[48,1486],{"className":1487,"style":266},[188],[48,1489,271],{"className":1490},[270],[48,1492],{"className":1493,"style":266},[188],[48,1495,1497,1500,1503,1506,1510,1513,1516,1519,1522,1525],{"className":1496},[60],[48,1498],{"className":1499,"style":1169},[64],[48,1501,1430],{"className":1502},[69],[48,1504,556],{"className":1505},[555],[48,1507],{"className":1508,"style":1509},[188],"margin-right:1em;",[48,1511],{"className":1512,"style":564},[188],[48,1514,361],{"className":1515,"style":360},[69,208],[48,1517,493],{"className":1518,"style":360},[69,208],[48,1520],{"className":1521,"style":266},[188],[48,1523,271],{"className":1524},[270],[48,1526],{"className":1527,"style":266},[188],[48,1529,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558],{"className":1530},[60],[48,1532],{"className":1533,"style":1169},[64],[48,1535,1430],{"className":1536},[69],[48,1538,556],{"className":1539},[555],[48,1541],{"className":1542,"style":1509},[188],[48,1544],{"className":1545,"style":564},[188],[48,1547,361],{"className":1548,"style":360},[69,208],[48,1550,635],{"className":1551,"style":634},[69,208],[48,1553],{"className":1554,"style":266},[188],[48,1556,271],{"className":1557},[270],[48,1559],{"className":1560,"style":266},[188],[48,1562,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591],{"className":1563},[60],[48,1565],{"className":1566,"style":1169},[64],[48,1568,1334],{"className":1569},[69],[48,1571,556],{"className":1572},[555],[48,1574],{"className":1575,"style":1509},[188],[48,1577],{"className":1578,"style":564},[188],[48,1580,489],{"className":1581,"style":360},[69,208],[48,1583,635],{"className":1584,"style":634},[69,208],[48,1586],{"className":1587,"style":266},[188],[48,1589,271],{"className":1590},[270],[48,1592],{"className":1593,"style":266},[188],[48,1595,1597,1600,1604,1610],{"className":1596},[60],[48,1598],{"className":1599,"style":1330},[64],[48,1601,1603],{"className":1602},[69],"9",[48,1605,1607],{"className":1606},[69],[48,1608,556],{"className":1609},[555],[48,1611,1613],{"className":1612},[69],"910.",[11,1615,1616,1617,1726,1727,1742],{},"Its accuracy is ",[48,1618,1620],{"className":1619},[51],[48,1621,1623,1648,1679,1716],{"className":1622,"ariaHidden":56},[55],[48,1624,1626,1630,1633,1636,1639,1642,1645],{"className":1625},[60],[48,1627],{"className":1628,"style":1629},[64],"height:1em;vertical-align:-0.25em;",[48,1631,952],{"className":1632},[460],[48,1634,489],{"className":1635,"style":360},[69,208],[48,1637,493],{"className":1638,"style":360},[69,208],[48,1640],{"className":1641,"style":189},[188],[48,1643,500],{"className":1644},[193],[48,1646],{"className":1647,"style":189},[188],[48,1649,1651,1654,1657,1660,1663,1667,1670,1673,1676],{"className":1650},[60],[48,1652],{"className":1653,"style":1629},[64],[48,1655,489],{"className":1656,"style":360},[69,208],[48,1658,635],{"className":1659,"style":634},[69,208],[48,1661,1094],{"className":1662},[551],[48,1664,1666],{"className":1665},[69],"\u002F",[48,1668,635],{"className":1669,"style":634},[69,208],[48,1671],{"className":1672,"style":266},[188],[48,1674,271],{"className":1675},[270],[48,1677],{"className":1678,"style":266},[188],[48,1680,1682,1685,1688,1694,1698,1704,1707,1710,1713],{"className":1681},[60],[48,1683],{"className":1684,"style":1629},[64],[48,1686,1603],{"className":1687},[69],[48,1689,1691],{"className":1690},[69],[48,1692,556],{"className":1693},[555],[48,1695,1697],{"className":1696},[69],"950\u002F10",[48,1699,1701],{"className":1700},[69],[48,1702,556],{"className":1703},[555],[48,1705,1344],{"className":1706},[69],[48,1708],{"className":1709,"style":266},[188],[48,1711,271],{"className":1712},[270],[48,1714],{"className":1715,"style":266},[188],[48,1717,1719,1722],{"className":1718},[60],[48,1720],{"className":1721,"style":65},[64],[48,1723,1725],{"className":1724},[69],"99.5%",", which sounds excellent, yet\nthe always-negative constant classifier scores ",[48,1728,1730],{"className":1729},[51],[48,1731,1733],{"className":1732,"ariaHidden":56},[55],[48,1734,1736,1739],{"className":1735},[60],[48,1737],{"className":1738,"style":65},[64],[48,1740,1725],{"className":1741},[69]," too and catches nobody. The\nerror-type metrics show the problem:",[48,1744,1746],{"className":1745},[416],[48,1747,1749],{"className":1748},[51],[48,1750,1752,1770,1860,1890,1979,2047,2156],{"className":1751,"ariaHidden":56},[55],[48,1753,1755,1758,1761,1764,1767],{"className":1754},[60],[48,1756],{"className":1757,"style":839},[64],[48,1759,493],{"className":1760,"style":360},[69,208],[48,1762],{"className":1763,"style":266},[188],[48,1765,271],{"className":1766},[270],[48,1768],{"className":1769,"style":266},[188],[48,1771,1773,1777,1851,1854,1857],{"className":1772},[60],[48,1774],{"className":1775,"style":1776},[64],"height:2.0908em;vertical-align:-0.7693em;",[48,1778,1780,1783,1848],{"className":1779},[69],[48,1781],{"className":1782},[460,461],[48,1784,1786],{"className":1785},[465],[48,1787,1789,1840],{"className":1788},[369,370],[48,1790,1792,1837],{"className":1791},[374],[48,1793,1795,1818,1826],{"className":1794,"style":971},[378],[48,1796,1797,1800],{"style":478},[48,1798],{"className":1799,"style":482},[386],[48,1801,1803,1806,1809,1812,1815],{"className":1802},[69],[48,1804,1430],{"className":1805},[69],[48,1807],{"className":1808,"style":189},[188],[48,1810,500],{"className":1811},[193],[48,1813],{"className":1814,"style":189},[188],[48,1816,1430],{"className":1817},[69],[48,1819,1820,1823],{"style":512},[48,1821],{"className":1822,"style":482},[386],[48,1824],{"className":1825,"style":520},[519],[48,1827,1828,1831],{"style":523},[48,1829],{"className":1830,"style":482},[386],[48,1832,1834],{"className":1833},[69],[48,1835,1430],{"className":1836},[69],[48,1838,402],{"className":1839},[401],[48,1841,1843],{"className":1842},[374],[48,1844,1846],{"className":1845,"style":545},[378],[48,1847],{},[48,1849],{"className":1850},[551,461],[48,1852],{"className":1853,"style":266},[188],[48,1855,271],{"className":1856},[270],[48,1858],{"className":1859,"style":266},[188],[48,1861,1863,1866,1869,1872,1875,1878,1881,1884,1887],{"className":1862},[60],[48,1864],{"className":1865,"style":1169},[64],[48,1867,1295],{"className":1868},[69],[48,1870,556],{"className":1871},[555],[48,1873],{"className":1874,"style":560},[188],[48,1876],{"className":1877,"style":564},[188],[48,1879,778],{"className":1880,"style":777},[69,208],[48,1882],{"className":1883,"style":266},[188],[48,1885,271],{"className":1886},[270],[48,1888],{"className":1889,"style":266},[188],[48,1891,1893,1896,1970,1973,1976],{"className":1892},[60],[48,1894],{"className":1895,"style":1776},[64],[48,1897,1899,1902,1967],{"className":1898},[69],[48,1900],{"className":1901},[460,461],[48,1903,1905],{"className":1904},[465],[48,1906,1908,1959],{"className":1907},[369,370],[48,1909,1911,1956],{"className":1910},[374],[48,1912,1914,1937,1945],{"className":1913,"style":971},[378],[48,1915,1916,1919],{"style":478},[48,1917],{"className":1918,"style":482},[386],[48,1920,1922,1925,1928,1931,1934],{"className":1921},[69],[48,1923,1430],{"className":1924},[69],[48,1926],{"className":1927,"style":189},[188],[48,1929,500],{"className":1930},[193],[48,1932],{"className":1933,"style":189},[188],[48,1935,1334],{"className":1936},[69],[48,1938,1939,1942],{"style":512},[48,1940],{"className":1941,"style":482},[386],[48,1943],{"className":1944,"style":520},[519],[48,1946,1947,1950],{"style":523},[48,1948],{"className":1949,"style":482},[386],[48,1951,1953],{"className":1952},[69],[48,1954,1430],{"className":1955},[69],[48,1957,402],{"className":1958},[401],[48,1960,1962],{"className":1961},[374],[48,1963,1965],{"className":1964,"style":545},[378],[48,1966],{},[48,1968],{"className":1969},[551,461],[48,1971],{"className":1972,"style":266},[188],[48,1974,271],{"className":1975},[270],[48,1977],{"className":1978,"style":266},[188],[48,1980,1982,1985,1989,1992,1995,1998,2038,2041,2044],{"className":1981},[60],[48,1983],{"className":1984,"style":1169},[64],[48,1986,1988],{"className":1987},[69],"0.80",[48,1990,556],{"className":1991},[555],[48,1993],{"className":1994,"style":560},[188],[48,1996],{"className":1997,"style":564},[188],[48,1999,2001,2004],{"className":2000},[69],[48,2002,361],{"className":2003,"style":360},[69,208],[48,2005,2007],{"className":2006},[365],[48,2008,2010,2030],{"className":2009},[369,370],[48,2011,2013,2027],{"className":2012},[374],[48,2014,2016],{"className":2015,"style":379},[378],[48,2017,2018,2021],{"style":382},[48,2019],{"className":2020,"style":387},[386],[48,2022,2024],{"className":2023},[391,392,393,394],[48,2025,34],{"className":2026},[69,394],[48,2028,402],{"className":2029},[401],[48,2031,2033],{"className":2032},[374],[48,2034,2036],{"className":2035,"style":409},[378],[48,2037],{},[48,2039],{"className":2040,"style":266},[188],[48,2042,271],{"className":2043},[270],[48,2045],{"className":2046,"style":266},[188],[48,2048,2050,2054,2147,2150,2153],{"className":2049},[60],[48,2051],{"className":2052,"style":2053},[64],"height:2.1963em;vertical-align:-0.7693em;",[48,2055,2057,2060,2144],{"className":2056},[69],[48,2058],{"className":2059},[460,461],[48,2061,2063],{"className":2062},[465],[48,2064,2066,2136],{"className":2065},[369,370],[48,2067,2069,2133],{"className":2068},[374],[48,2070,2073,2096,2104],{"className":2071,"style":2072},[378],"height:1.427em;",[48,2074,2075,2078],{"style":478},[48,2076],{"className":2077,"style":482},[386],[48,2079,2081,2084,2087,2090,2093],{"className":2080},[69],[48,2082,1295],{"className":2083},[69],[48,2085],{"className":2086,"style":189},[188],[48,2088,500],{"className":2089},[193],[48,2091],{"className":2092,"style":189},[188],[48,2094,1988],{"className":2095},[69],[48,2097,2098,2101],{"style":512},[48,2099],{"className":2100,"style":482},[386],[48,2102],{"className":2103,"style":520},[519],[48,2105,2106,2109],{"style":523},[48,2107],{"className":2108,"style":482},[386],[48,2110,2112,2115,2118,2121,2124,2127,2130],{"className":2111},[69],[48,2113,112],{"className":2114},[69],[48,2116,952],{"className":2117},[460],[48,2119,1295],{"className":2120},[69],[48,2122,1094],{"className":2123},[551],[48,2125,952],{"className":2126},[460],[48,2128,1988],{"className":2129},[69],[48,2131,1094],{"className":2132},[551],[48,2134,402],{"className":2135},[401],[48,2137,2139],{"className":2138},[374],[48,2140,2142],{"className":2141,"style":545},[378],[48,2143],{},[48,2145],{"className":2146},[551,461],[48,2148],{"className":2149,"style":266},[188],[48,2151,1265],{"className":2152},[270],[48,2154],{"className":2155,"style":266},[188],[48,2157,2159,2162],{"className":2158},[60],[48,2160],{"className":2161,"style":281},[64],[48,2163,2165],{"className":2164},[69],"0.615.",[11,2167,2168,2169,2184,2185,2200],{},"Recall of ",[48,2170,2172],{"className":2171},[51],[48,2173,2175],{"className":2174,"ariaHidden":56},[55],[48,2176,2178,2181],{"className":2177},[60],[48,2179],{"className":2180,"style":281},[64],[48,2182,1988],{"className":2183},[69]," says the model catches four of every five true cases; precision of\n",[48,2186,2188],{"className":2187},[51],[48,2189,2191],{"className":2190,"ariaHidden":56},[55],[48,2192,2194,2197],{"className":2193},[60],[48,2195],{"className":2196,"style":281},[64],[48,2198,1295],{"className":2199},[69]," says half its alarms are false. Whether that trade is acceptable depends on the\ndownstream cost, a missed case versus a needless follow-up test, and no single scalar\ndecides it for you. The right metric is dictated by the cost structure of the goal.",[2202,2203,2204,2220],"table",{},[2205,2206,2207],"thead",{},[2208,2209,2210,2214,2217],"tr",{},[2211,2212,2213],"th",{},"Metric",[2211,2215,2216],{},"Definition",[2211,2218,2219],{},"When it is the right choice",[2221,2222,2223,2285,2348,2411,2523,2534,2545],"tbody",{},[2208,2224,2225,2229,2282],{},[2226,2227,2228],"td",{},"Accuracy",[2226,2230,2231],{},[48,2232,2234],{"className":2233},[51],[48,2235,2237,2261],{"className":2236,"ariaHidden":56},[55],[48,2238,2240,2243,2246,2249,2252,2255,2258],{"className":2239},[60],[48,2241],{"className":2242,"style":1629},[64],[48,2244,952],{"className":2245},[460],[48,2247,489],{"className":2248,"style":360},[69,208],[48,2250,493],{"className":2251,"style":360},[69,208],[48,2253],{"className":2254,"style":189},[188],[48,2256,500],{"className":2257},[193],[48,2259],{"className":2260,"style":189},[188],[48,2262,2264,2267,2270,2273,2276,2279],{"className":2263},[60],[48,2265],{"className":2266,"style":1629},[64],[48,2268,489],{"className":2269,"style":360},[69,208],[48,2271,635],{"className":2272,"style":634},[69,208],[48,2274,1094],{"className":2275},[551],[48,2277,1666],{"className":2278},[69],[48,2280,635],{"className":2281,"style":634},[69,208],[2226,2283,2284],{},"balanced classes, symmetric error costs",[2208,2286,2287,2289,2345],{},[2226,2288,329],{},[2226,2290,2291],{},[48,2292,2294],{"className":2293},[51],[48,2295,2297,2330],{"className":2296,"ariaHidden":56},[55],[48,2298,2300,2303,2306,2309,2312,2315,2318,2321,2324,2327],{"className":2299},[60],[48,2301],{"className":2302,"style":1629},[64],[48,2304,489],{"className":2305,"style":360},[69,208],[48,2307,493],{"className":2308,"style":360},[69,208],[48,2310,1666],{"className":2311},[69],[48,2313,952],{"className":2314},[460],[48,2316,489],{"className":2317,"style":360},[69,208],[48,2319,493],{"className":2320,"style":360},[69,208],[48,2322],{"className":2323,"style":189},[188],[48,2325,500],{"className":2326},[193],[48,2328],{"className":2329,"style":189},[188],[48,2331,2333,2336,2339,2342],{"className":2332},[60],[48,2334],{"className":2335,"style":1629},[64],[48,2337,361],{"className":2338,"style":360},[69,208],[48,2340,493],{"className":2341,"style":360},[69,208],[48,2343,1094],{"className":2344},[551],[2226,2346,2347],{},"false positives are expensive (spam filter flags real mail)",[2208,2349,2350,2352,2408],{},[2226,2351,335],{},[2226,2353,2354],{},[48,2355,2357],{"className":2356},[51],[48,2358,2360,2393],{"className":2359,"ariaHidden":56},[55],[48,2361,2363,2366,2369,2372,2375,2378,2381,2384,2387,2390],{"className":2362},[60],[48,2364],{"className":2365,"style":1629},[64],[48,2367,489],{"className":2368,"style":360},[69,208],[48,2370,493],{"className":2371,"style":360},[69,208],[48,2373,1666],{"className":2374},[69],[48,2376,952],{"className":2377},[460],[48,2379,489],{"className":2380,"style":360},[69,208],[48,2382,493],{"className":2383,"style":360},[69,208],[48,2385],{"className":2386,"style":189},[188],[48,2388,500],{"className":2389},[193],[48,2391],{"className":2392,"style":189},[188],[48,2394,2396,2399,2402,2405],{"className":2395},[60],[48,2397],{"className":2398,"style":1629},[64],[48,2400,361],{"className":2401,"style":360},[69,208],[48,2403,635],{"className":2404,"style":634},[69,208],[48,2406,1094],{"className":2407},[551],[2226,2409,2410],{},"false negatives are expensive (missed tumor, fraud)",[2208,2412,2413,2467,2520],{},[2226,2414,2415],{},[48,2416,2418],{"className":2417},[51],[48,2419,2421],{"className":2420,"ariaHidden":56},[55],[48,2422,2424,2427],{"className":2423},[60],[48,2425],{"className":2426,"style":353},[64],[48,2428,2430,2433],{"className":2429},[69],[48,2431,361],{"className":2432,"style":360},[69,208],[48,2434,2436],{"className":2435},[365],[48,2437,2439,2459],{"className":2438},[369,370],[48,2440,2442,2456],{"className":2441},[374],[48,2443,2445],{"className":2444,"style":379},[378],[48,2446,2447,2450],{"style":382},[48,2448],{"className":2449,"style":387},[386],[48,2451,2453],{"className":2452},[391,392,393,394],[48,2454,34],{"className":2455},[69,394],[48,2457,402],{"className":2458},[401],[48,2460,2462],{"className":2461},[374],[48,2463,2465],{"className":2464,"style":409},[378],[48,2466],{},[2226,2468,2469],{},[48,2470,2472],{"className":2471},[51],[48,2473,2475,2508],{"className":2474,"ariaHidden":56},[55],[48,2476,2478,2481,2484,2487,2490,2493,2496,2499,2502,2505],{"className":2477},[60],[48,2479],{"className":2480,"style":1629},[64],[48,2482,112],{"className":2483},[69],[48,2485,493],{"className":2486,"style":360},[69,208],[48,2488,778],{"className":2489,"style":777},[69,208],[48,2491,1666],{"className":2492},[69],[48,2494,952],{"className":2495},[460],[48,2497,493],{"className":2498,"style":360},[69,208],[48,2500],{"className":2501,"style":189},[188],[48,2503,500],{"className":2504},[193],[48,2506],{"className":2507,"style":189},[188],[48,2509,2511,2514,2517],{"className":2510},[60],[48,2512],{"className":2513,"style":1629},[64],[48,2515,778],{"className":2516,"style":777},[69,208],[48,2518,1094],{"className":2519},[551],[2226,2521,2522],{},"imbalanced data, both errors matter",[2208,2524,2525,2528,2531],{},[2226,2526,2527],{},"PR-AUC",[2226,2529,2530],{},"area under precision–recall curve",[2226,2532,2533],{},"imbalanced data, threshold not yet fixed",[2208,2535,2536,2539,2542],{},[2226,2537,2538],{},"ROC-AUC",[2226,2540,2541],{},"area under TPR–FPR curve",[2226,2543,2544],{},"ranking quality, roughly balanced classes",[2208,2546,2547,2550,2553],{},[2226,2548,2549],{},"Coverage",[2226,2551,2552],{},"fraction the model is allowed to answer",[2226,2554,2555,2556,2559],{},"a system may ",[15,2557,2558],{},"decline"," to predict when unsure",[11,2561,2562,2563,2566,2583,2584,2699,2700,2715,2716,2731,2732,2748],{},"Precision and recall trade off against each other as the decision ",[20,2564,2565],{},"threshold",[48,2567,2569],{"className":2568},[51],[48,2570,2572],{"className":2571,"ariaHidden":56},[55],[48,2573,2575,2579],{"className":2574},[60],[48,2576],{"className":2577,"style":2578},[64],"height:0.6151em;",[48,2580,2582],{"className":2581},[69,208],"t"," on the score ",[48,2585,2587],{"className":2586},[51],[48,2588,2590,2657,2686],{"className":2589,"ariaHidden":56},[55],[48,2591,2593,2597,2648,2651,2654],{"className":2592},[60],[48,2594],{"className":2595,"style":2596},[64],"height:0.8889em;vertical-align:-0.1944em;",[48,2598,2601],{"className":2599},[69,2600],"accent",[48,2602,2604,2639],{"className":2603},[369,370],[48,2605,2607,2636],{"className":2606},[374],[48,2608,2611,2622],{"className":2609,"style":2610},[378],"height:0.6944em;",[48,2612,2614,2617],{"style":2613},"top:-3em;",[48,2615],{"className":2616,"style":482},[386],[48,2618,2621],{"className":2619,"style":2620},[69,208],"margin-right:0.0359em;","y",[48,2623,2624,2627],{"style":2613},[48,2625],{"className":2626,"style":482},[386],[48,2628,2632],{"className":2629,"style":2631},[2630],"accent-body","left:-0.1944em;",[48,2633,2635],{"className":2634},[69],"^",[48,2637,402],{"className":2638},[401],[48,2640,2642],{"className":2641},[374],[48,2643,2646],{"className":2644,"style":2645},[378],"height:0.1944em;",[48,2647],{},[48,2649],{"className":2650,"style":266},[188],[48,2652,271],{"className":2653},[270],[48,2655],{"className":2656,"style":266},[188],[48,2658,2660,2663,2666,2669,2676,2679,2683],{"className":2659},[60],[48,2661],{"className":2662,"style":1629},[64],[48,2664,11],{"className":2665},[69,208],[48,2667,952],{"className":2668},[460],[48,2670,2672],{"className":2671},[69,433],[48,2673,2675],{"className":2674},[69],"positive",[48,2677],{"className":2678,"style":266},[188],[48,2680,2682],{"className":2681},[270],"∣",[48,2684],{"className":2685,"style":266},[188],[48,2687,2689,2692,2696],{"className":2688},[60],[48,2690],{"className":2691,"style":1629},[64],[48,2693,2695],{"className":2694},[69,208],"x",[48,2697,1094],{"className":2698},[551]," moves. Sweeping ",[48,2701,2703],{"className":2702},[51],[48,2704,2706],{"className":2705,"ariaHidden":56},[55],[48,2707,2709,2712],{"className":2708},[60],[48,2710],{"className":2711,"style":2578},[64],[48,2713,2582],{"className":2714},[69,208]," from ",[48,2717,2719],{"className":2718},[51],[48,2720,2722],{"className":2721,"ariaHidden":56},[55],[48,2723,2725,2728],{"className":2724},[60],[48,2726],{"className":2727,"style":281},[64],[48,2729,34],{"className":2730},[69],"\ndown to ",[48,2733,2735],{"className":2734},[51],[48,2736,2738],{"className":2737,"ariaHidden":56},[55],[48,2739,2741,2744],{"className":2740},[60],[48,2742],{"className":2743,"style":281},[64],[48,2745,2747],{"className":2746},[69],"0"," traces a curve; its summary, the area underneath, is threshold-free.",[99,2750],{"hash":2751},"daac3fb2c1d268c0b044f5e360a1703d395f6152f540ec2dad460a190744d6bd",[73,2753,2755],{"id":2754},"default-baseline-models","Default baseline models",[11,2757,2758],{},"With a metric chosen, build the simplest system that could plausibly work. A strong\nbaseline both establishes the number to beat and tells you whether the problem is\neven tractable with the data on hand. The sensible first choice is dictated by the\ninput type.",[2202,2760,2761,2774],{},[2205,2762,2763],{},[2208,2764,2765,2768,2771],{},[2211,2766,2767],{},"Data type",[2211,2769,2770],{},"Default architecture",[2211,2772,2773],{},"Default optimizer",[2221,2775,2776,2787,2797,2808,2819],{},[2208,2777,2778,2781,2784],{},[2226,2779,2780],{},"Fixed-size vectors",[2226,2782,2783],{},"feedforward MLP, fully connected",[2226,2785,2786],{},"SGD + momentum, or Adam",[2208,2788,2789,2792,2795],{},[2226,2790,2791],{},"Images \u002F grid topology",[2226,2793,2794],{},"convolutional network with residual connections",[2226,2796,2786],{},[2208,2798,2799,2802,2805],{},[2226,2800,2801],{},"Sequences \u002F time series",[2226,2803,2804],{},"gated RNN (LSTM\u002FGRU) or a Transformer",[2226,2806,2807],{},"Adam",[2208,2809,2810,2813,2816],{},[2226,2811,2812],{},"Text \u002F language",[2226,2814,2815],{},"Transformer with pretrained embeddings",[2226,2817,2818],{},"Adam with warmup",[2208,2820,2821,2841,2844],{},[2226,2822,2823,2824],{},"Tabular, small ",[48,2825,2827],{"className":2826},[51],[48,2828,2830],{"className":2829,"ariaHidden":56},[55],[48,2831,2833,2837],{"className":2832},[60],[48,2834],{"className":2835,"style":2836},[64],"height:0.4306em;",[48,2838,2840],{"className":2839},[69,208],"n",[2226,2842,2843],{},"regularized linear model or gradient-boosted trees",[2226,2845,2846],{},"closed-form \u002F coordinate descent",[81,2848,2850],{"type":2849},"remark",[11,2851,2852,2855],{},[20,2853,2854],{},"Remark (Reasonable defaults)."," Goodfellow's standing recommendations:\npiecewise-linear units (ReLU and its variants) as the activation; SGD with\nmomentum and a decaying learning rate, or Adam, as the optimizer; batch\nnormalization for convolutional nets; and mild regularization: early stopping\nalmost always, dropout where the model overfits.",[81,2857,2858],{"type":83},[11,2859,2860,2863,2864,2867,2868,2871],{},[20,2861,2862],{},"Definition (Strong baseline)."," A simple, well-understood model run with sane\ndefaults, serving as the reference the metric must beat. Its value is diagnostic:\nif even a tuned exotic model cannot improve on it, the bottleneck is the ",[15,2865,2866],{},"data","\nor the ",[15,2869,2870],{},"problem framing",", not the architecture.",[11,2873,2874],{},"Resist the urge to start exotic. If a known result exists for a similar task, copy\nits architecture and optimizer wholesale; reproducing a published baseline before\ninnovating is the fastest path to a trustworthy number.",[73,2876,2878],{"id":2877},"whether-to-gather-more-data","Whether to gather more data",[11,2880,2881,2882,2886],{},"After the baseline runs, the most consequential decision is whether to collect more\ndata (often expensive) or to change the model. The diagnosis is read directly off\ntwo numbers: training error and validation error. This is the\n",[28,2883,2885],{"href":2884},"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher","bias–variance decomposition","\napplied in practice.",[81,2888,2889],{"type":83},[11,2890,2891,2894,2895,2958,2959,3019,3020,3064,3065,3068,3069,3172,3173,3176,3177,3068,3180,3172,3299,3302],{},[20,2892,2893],{},"Definition (The gap diagnosis)."," Let ",[48,2896,2898],{"className":2897},[51],[48,2899,2901],{"className":2900,"ariaHidden":56},[55],[48,2902,2904,2907],{"className":2903},[60],[48,2905],{"className":2906,"style":353},[64],[48,2908,2910,2915],{"className":2909},[69],[48,2911,2914],{"className":2912,"style":2913},[69,208],"margin-right:0.0576em;","E",[48,2916,2918],{"className":2917},[365],[48,2919,2921,2950],{"className":2920},[369,370],[48,2922,2924,2947],{"className":2923},[374],[48,2925,2928],{"className":2926,"style":2927},[378],"height:0.3175em;",[48,2929,2931,2934],{"style":2930},"top:-2.55em;margin-left:-0.0576em;margin-right:0.05em;",[48,2932],{"className":2933,"style":387},[386],[48,2935,2937],{"className":2936},[391,392,393,394],[48,2938,2940],{"className":2939},[69,394],[48,2941,2943],{"className":2942},[69,433,394],[48,2944,2946],{"className":2945},[69,394],"train",[48,2948,402],{"className":2949},[401],[48,2951,2953],{"className":2952},[374],[48,2954,2956],{"className":2955,"style":409},[378],[48,2957],{}," and ",[48,2960,2962],{"className":2961},[51],[48,2963,2965],{"className":2964,"ariaHidden":56},[55],[48,2966,2968,2971],{"className":2967},[60],[48,2969],{"className":2970,"style":353},[64],[48,2972,2974,2977],{"className":2973},[69],[48,2975,2914],{"className":2976,"style":2913},[69,208],[48,2978,2980],{"className":2979},[365],[48,2981,2983,3011],{"className":2982},[369,370],[48,2984,2986,3008],{"className":2985},[374],[48,2987,2990],{"className":2988,"style":2989},[378],"height:0.3361em;",[48,2991,2992,2995],{"style":2930},[48,2993],{"className":2994,"style":387},[386],[48,2996,2998],{"className":2997},[391,392,393,394],[48,2999,3001],{"className":3000},[69,394],[48,3002,3004],{"className":3003},[69,433,394],[48,3005,3007],{"className":3006},[69,394],"val",[48,3009,402],{"className":3010},[401],[48,3012,3014],{"className":3013},[374],[48,3015,3017],{"className":3016,"style":409},[378],[48,3018],{},"\nbe the training and validation errors, and ",[48,3021,3023],{"className":3022},[51],[48,3024,3026],{"className":3025,"ariaHidden":56},[55],[48,3027,3029,3033],{"className":3028},[60],[48,3030],{"className":3031,"style":3032},[64],"height:0.6887em;",[48,3034,3036,3039],{"className":3035},[69],[48,3037,2914],{"className":3038,"style":2913},[69,208],[48,3040,3042],{"className":3041},[365],[48,3043,3045],{"className":3044},[369],[48,3046,3048],{"className":3047},[374],[48,3049,3051],{"className":3050,"style":3032},[378],[48,3052,3054,3057],{"style":3053},"top:-3.063em;margin-right:0.05em;",[48,3055],{"className":3056,"style":387},[386],[48,3058,3060],{"className":3059},[391,392,393,394],[48,3061,3063],{"className":3062},[193,394],"⋆"," the target. ",[20,3066,3067],{},"High training\nerror"," (",[48,3070,3072],{"className":3071},[51],[48,3073,3075,3137],{"className":3074,"ariaHidden":56},[55],[48,3076,3078,3081,3127,3130,3134],{"className":3077},[60],[48,3079],{"className":3080,"style":353},[64],[48,3082,3084,3087],{"className":3083},[69],[48,3085,2914],{"className":3086,"style":2913},[69,208],[48,3088,3090],{"className":3089},[365],[48,3091,3093,3119],{"className":3092},[369,370],[48,3094,3096,3116],{"className":3095},[374],[48,3097,3099],{"className":3098,"style":2927},[378],[48,3100,3101,3104],{"style":2930},[48,3102],{"className":3103,"style":387},[386],[48,3105,3107],{"className":3106},[391,392,393,394],[48,3108,3110],{"className":3109},[69,394],[48,3111,3113],{"className":3112},[69,433,394],[48,3114,2946],{"className":3115},[69,394],[48,3117,402],{"className":3118},[401],[48,3120,3122],{"className":3121},[374],[48,3123,3125],{"className":3124,"style":409},[378],[48,3126],{},[48,3128],{"className":3129,"style":266},[188],[48,3131,3133],{"className":3132},[270],"≫",[48,3135],{"className":3136,"style":266},[188],[48,3138,3140,3143],{"className":3139},[60],[48,3141],{"className":3142,"style":3032},[64],[48,3144,3146,3149],{"className":3145},[69],[48,3147,2914],{"className":3148,"style":2913},[69,208],[48,3150,3152],{"className":3151},[365],[48,3153,3155],{"className":3154},[369],[48,3156,3158],{"className":3157},[374],[48,3159,3161],{"className":3160,"style":3032},[378],[48,3162,3163,3166],{"style":3053},[48,3164],{"className":3165,"style":387},[386],[48,3167,3169],{"className":3168},[391,392,393,394],[48,3170,3063],{"className":3171},[193,394],") is ",[15,3174,3175],{},"underfitting",": the model lacks\ncapacity or is poorly optimized. A ",[20,3178,3179],{},"large gap",[48,3181,3183],{"className":3182},[51],[48,3184,3186,3247],{"className":3185,"ariaHidden":56},[55],[48,3187,3189,3192,3238,3241,3244],{"className":3188},[60],[48,3190],{"className":3191,"style":353},[64],[48,3193,3195,3198],{"className":3194},[69],[48,3196,2914],{"className":3197,"style":2913},[69,208],[48,3199,3201],{"className":3200},[365],[48,3202,3204,3230],{"className":3203},[369,370],[48,3205,3207,3227],{"className":3206},[374],[48,3208,3210],{"className":3209,"style":2989},[378],[48,3211,3212,3215],{"style":2930},[48,3213],{"className":3214,"style":387},[386],[48,3216,3218],{"className":3217},[391,392,393,394],[48,3219,3221],{"className":3220},[69,394],[48,3222,3224],{"className":3223},[69,433,394],[48,3225,3007],{"className":3226},[69,394],[48,3228,402],{"className":3229},[401],[48,3231,3233],{"className":3232},[374],[48,3234,3236],{"className":3235,"style":409},[378],[48,3237],{},[48,3239],{"className":3240,"style":266},[188],[48,3242,3133],{"className":3243},[270],[48,3245],{"className":3246,"style":266},[188],[48,3248,3250,3253],{"className":3249},[60],[48,3251],{"className":3252,"style":353},[64],[48,3254,3256,3259],{"className":3255},[69],[48,3257,2914],{"className":3258,"style":2913},[69,208],[48,3260,3262],{"className":3261},[365],[48,3263,3265,3291],{"className":3264},[369,370],[48,3266,3268,3288],{"className":3267},[374],[48,3269,3271],{"className":3270,"style":2927},[378],[48,3272,3273,3276],{"style":2930},[48,3274],{"className":3275,"style":387},[386],[48,3277,3279],{"className":3278},[391,392,393,394],[48,3280,3282],{"className":3281},[69,394],[48,3283,3285],{"className":3284},[69,433,394],[48,3286,2946],{"className":3287},[69,394],[48,3289,402],{"className":3290},[401],[48,3292,3294],{"className":3293},[374],[48,3295,3297],{"className":3296,"style":409},[378],[48,3298],{},[15,3300,3301],{},"overfitting",": the model memorizes and needs more data\nor stronger regularization.",[11,3304,3305,3306],{},"The two failure modes call for opposite remedies, and confusing them wastes the\nmost resources. More data cannot fix underfitting; a bigger model cannot fix\noverfitting.",[25,3307,3308],{},[28,3309,3313],{"href":3310,"ariaDescribedBy":3311,"dataFootnoteRef":6,"id":3312},"#user-content-fn-gf-gap",[32],"user-content-fnref-gf-gap","4",[2202,3315,3316,3329],{},[2205,3317,3318],{},[2208,3319,3320,3323,3326],{},[2211,3321,3322],{},"Symptom",[2211,3324,3325],{},"Diagnosis",[2211,3327,3328],{},"Remedy",[2221,3330,3331,3400,3469],{},[2208,3332,3333,3394,3397],{},[2226,3334,3335,3393],{},[48,3336,3338],{"className":3337},[51],[48,3339,3341],{"className":3340,"ariaHidden":56},[55],[48,3342,3344,3347],{"className":3343},[60],[48,3345],{"className":3346,"style":353},[64],[48,3348,3350,3353],{"className":3349},[69],[48,3351,2914],{"className":3352,"style":2913},[69,208],[48,3354,3356],{"className":3355},[365],[48,3357,3359,3385],{"className":3358},[369,370],[48,3360,3362,3382],{"className":3361},[374],[48,3363,3365],{"className":3364,"style":2927},[378],[48,3366,3367,3370],{"style":2930},[48,3368],{"className":3369,"style":387},[386],[48,3371,3373],{"className":3372},[391,392,393,394],[48,3374,3376],{"className":3375},[69,394],[48,3377,3379],{"className":3378},[69,433,394],[48,3380,2946],{"className":3381},[69,394],[48,3383,402],{"className":3384},[401],[48,3386,3388],{"className":3387},[374],[48,3389,3391],{"className":3390,"style":409},[378],[48,3392],{}," high",[2226,3395,3396],{},"underfitting (bias)",[2226,3398,3399],{},"bigger model, train longer, better optimizer, fewer constraints",[2208,3401,3402,3463,3466],{},[2226,3403,3404,3462],{},[48,3405,3407],{"className":3406},[51],[48,3408,3410],{"className":3409,"ariaHidden":56},[55],[48,3411,3413,3416],{"className":3412},[60],[48,3414],{"className":3415,"style":353},[64],[48,3417,3419,3422],{"className":3418},[69],[48,3420,2914],{"className":3421,"style":2913},[69,208],[48,3423,3425],{"className":3424},[365],[48,3426,3428,3454],{"className":3427},[369,370],[48,3429,3431,3451],{"className":3430},[374],[48,3432,3434],{"className":3433,"style":2927},[378],[48,3435,3436,3439],{"style":2930},[48,3437],{"className":3438,"style":387},[386],[48,3440,3442],{"className":3441},[391,392,393,394],[48,3443,3445],{"className":3444},[69,394],[48,3446,3448],{"className":3447},[69,433,394],[48,3449,2946],{"className":3450},[69,394],[48,3452,402],{"className":3453},[401],[48,3455,3457],{"className":3456},[374],[48,3458,3460],{"className":3459,"style":409},[378],[48,3461],{}," low, gap large",[2226,3464,3465],{},"overfitting (variance)",[2226,3467,3468],{},"more data, regularize, data augmentation, smaller model",[2208,3470,3471,3533,3536],{},[2226,3472,3473,3474,3532],{},"both acceptable, ",[48,3475,3477],{"className":3476},[51],[48,3478,3480],{"className":3479,"ariaHidden":56},[55],[48,3481,3483,3486],{"className":3482},[60],[48,3484],{"className":3485,"style":353},[64],[48,3487,3489,3492],{"className":3488},[69],[48,3490,2914],{"className":3491,"style":2913},[69,208],[48,3493,3495],{"className":3494},[365],[48,3496,3498,3524],{"className":3497},[369,370],[48,3499,3501,3521],{"className":3500},[374],[48,3502,3504],{"className":3503,"style":2989},[378],[48,3505,3506,3509],{"style":2930},[48,3507],{"className":3508,"style":387},[386],[48,3510,3512],{"className":3511},[391,392,393,394],[48,3513,3515],{"className":3514},[69,394],[48,3516,3518],{"className":3517},[69,433,394],[48,3519,3007],{"className":3520},[69,394],[48,3522,402],{"className":3523},[401],[48,3525,3527],{"className":3526},[374],[48,3528,3530],{"className":3529,"style":409},[378],[48,3531],{}," still short",[2226,3534,3535],{},"irreducible \u002F framing",[2226,3537,3538],{},"new features, new metric, reconsider the goal",[11,3540,3541],{},"Plotting error against the size of the\ntraining set separates the two regimes: high-bias curves converge high and close\ntogether; high-variance curves leave a persistent gap that more data would narrow.",[99,3543],{"hash":3544},"7f497cf9576ce1b348ea089bef50e05c016cbef5014d8a8e5882e26a49dd8958",[81,3546,3547],{"type":2849},[11,3548,3549,3552,3553,3569,3570,3598,3599,3602,3603,3644],{},[20,3550,3551],{},"Remark (Estimating the data needed)."," Generalization error typically falls as\na power law in the number of examples ",[48,3554,3556],{"className":3555},[51],[48,3557,3559],{"className":3558,"ariaHidden":56},[55],[48,3560,3562,3565],{"className":3561},[60],[48,3563],{"className":3564,"style":2836},[64],[48,3566,3568],{"className":3567},[69,208],"m",", so doubling data buys a predictable,\ndiminishing gain. Plot validation error against ",[48,3571,3573],{"className":3572},[51],[48,3574,3576],{"className":3575,"ariaHidden":56},[55],[48,3577,3579,3582,3592,3595],{"className":3578},[60],[48,3580],{"className":3581,"style":2596},[64],[48,3583,3586],{"className":3584},[3585],"mop",[48,3587,3591],{"className":3588,"style":3590},[69,3589],"mathrm","margin-right:0.0139em;","log",[48,3593],{"className":3594,"style":564},[188],[48,3596,3568],{"className":3597},[69,208]," on the data you ",[15,3600,3601],{},"have",",\nfit the trend, and extrapolate to estimate how many examples reach ",[48,3604,3606],{"className":3605},[51],[48,3607,3609],{"className":3608,"ariaHidden":56},[55],[48,3610,3612,3615],{"className":3611},[60],[48,3613],{"className":3614,"style":3032},[64],[48,3616,3618,3621],{"className":3617},[69],[48,3619,2914],{"className":3620,"style":2913},[69,208],[48,3622,3624],{"className":3623},[365],[48,3625,3627],{"className":3626},[369],[48,3628,3630],{"className":3629},[374],[48,3631,3633],{"className":3632,"style":3032},[378],[48,3634,3635,3638],{"style":3053},[48,3636],{"className":3637,"style":387},[386],[48,3639,3641],{"className":3640},[391,392,393,394],[48,3642,3063],{"className":3643},[193,394],"\nbefore committing to an expensive collection effort.",[11,3646,3647,3648,3731,3732,3766,3767,2958,3809,3766,3843,3885],{},"The extrapolation is worth doing arithmetically before spending a data-collection\nbudget. Suppose the error follows ",[48,3649,3651],{"className":3650},[51],[48,3652,3654,3681],{"className":3653,"ariaHidden":56},[55],[48,3655,3657,3660,3663,3666,3669,3672,3675,3678],{"className":3656},[60],[48,3658],{"className":3659,"style":1629},[64],[48,3661,2914],{"className":3662,"style":2913},[69,208],[48,3664,952],{"className":3665},[460],[48,3667,3568],{"className":3668},[69,208],[48,3670,1094],{"className":3671},[551],[48,3673],{"className":3674,"style":266},[188],[48,3676,271],{"className":3677},[270],[48,3679],{"className":3680,"style":266},[188],[48,3682,3684,3688,3691,3694],{"className":3683},[60],[48,3685],{"className":3686,"style":3687},[64],"height:0.7713em;",[48,3689,28],{"className":3690},[69,208],[48,3692],{"className":3693,"style":564},[188],[48,3695,3697,3700],{"className":3696},[69],[48,3698,3568],{"className":3699},[69,208],[48,3701,3703],{"className":3702},[365],[48,3704,3706],{"className":3705},[369],[48,3707,3709],{"className":3708},[374],[48,3710,3712],{"className":3711,"style":3687},[378],[48,3713,3714,3717],{"style":3053},[48,3715],{"className":3716,"style":387},[386],[48,3718,3720],{"className":3719},[391,392,393,394],[48,3721,3723,3726],{"className":3722},[69,394],[48,3724,194],{"className":3725},[69,394],[48,3727,3730],{"className":3728,"style":3729},[69,208,394],"margin-right:0.0037em;","α",", and you measure\n",[48,3733,3735],{"className":3734},[51],[48,3736,3738,3756],{"className":3737,"ariaHidden":56},[55],[48,3739,3741,3744,3747,3750,3753],{"className":3740},[60],[48,3742],{"className":3743,"style":839},[64],[48,3745,2914],{"className":3746,"style":2913},[69,208],[48,3748],{"className":3749,"style":266},[188],[48,3751,271],{"className":3752},[270],[48,3754],{"className":3755,"style":266},[188],[48,3757,3759,3762],{"className":3758},[60],[48,3760],{"className":3761,"style":281},[64],[48,3763,3765],{"className":3764},[69],"0.20"," at ",[48,3768,3770],{"className":3769},[51],[48,3771,3773,3791],{"className":3772,"ariaHidden":56},[55],[48,3774,3776,3779,3782,3785,3788],{"className":3775},[60],[48,3777],{"className":3778,"style":2836},[64],[48,3780,3568],{"className":3781},[69,208],[48,3783],{"className":3784,"style":266},[188],[48,3786,271],{"className":3787},[270],[48,3789],{"className":3790,"style":266},[188],[48,3792,3794,3797,3800,3806],{"className":3793},[60],[48,3795],{"className":3796,"style":1330},[64],[48,3798,1334],{"className":3799},[69],[48,3801,3803],{"className":3802},[69],[48,3804,556],{"className":3805},[555],[48,3807,1344],{"className":3808},[69],[48,3810,3812],{"className":3811},[51],[48,3813,3815,3833],{"className":3814,"ariaHidden":56},[55],[48,3816,3818,3821,3824,3827,3830],{"className":3817},[60],[48,3819],{"className":3820,"style":839},[64],[48,3822,2914],{"className":3823,"style":2913},[69,208],[48,3825],{"className":3826,"style":266},[188],[48,3828,271],{"className":3829},[270],[48,3831],{"className":3832,"style":266},[188],[48,3834,3836,3839],{"className":3835},[60],[48,3837],{"className":3838,"style":281},[64],[48,3840,3842],{"className":3841},[69],"0.14",[48,3844,3846],{"className":3845},[51],[48,3847,3849,3867],{"className":3848,"ariaHidden":56},[55],[48,3850,3852,3855,3858,3861,3864],{"className":3851},[60],[48,3853],{"className":3854,"style":2836},[64],[48,3856,3568],{"className":3857},[69,208],[48,3859],{"className":3860,"style":266},[188],[48,3862,271],{"className":3863},[270],[48,3865],{"className":3866,"style":266},[188],[48,3868,3870,3873,3876,3882],{"className":3869},[60],[48,3871],{"className":3872,"style":1330},[64],[48,3874,1430],{"className":3875},[69],[48,3877,3879],{"className":3878},[69],[48,3880,556],{"className":3881},[555],[48,3883,1344],{"className":3884},[69],". The exponent comes from\nthe ratio,",[48,3887,3889],{"className":3888},[416],[48,3890,3892],{"className":3891},[51],[48,3893,3895,3973,4125,4143,4246],{"className":3894,"ariaHidden":56},[55],[48,3896,3898,3902,3964,3967,3970],{"className":3897},[60],[48,3899],{"className":3900,"style":3901},[64],"height:2.0074em;vertical-align:-0.686em;",[48,3903,3905,3908,3961],{"className":3904},[69],[48,3906],{"className":3907},[460,461],[48,3909,3911],{"className":3910},[465],[48,3912,3914,3953],{"className":3913},[369,370],[48,3915,3917,3950],{"className":3916},[374],[48,3918,3920,3931,3939],{"className":3919,"style":971},[378],[48,3921,3922,3925],{"style":478},[48,3923],{"className":3924,"style":482},[386],[48,3926,3928],{"className":3927},[69],[48,3929,3765],{"className":3930},[69],[48,3932,3933,3936],{"style":512},[48,3934],{"className":3935,"style":482},[386],[48,3937],{"className":3938,"style":520},[519],[48,3940,3941,3944],{"style":523},[48,3942],{"className":3943,"style":482},[386],[48,3945,3947],{"className":3946},[69],[48,3948,3842],{"className":3949},[69],[48,3951,402],{"className":3952},[401],[48,3954,3956],{"className":3955},[374],[48,3957,3959],{"className":3958,"style":1011},[378],[48,3960],{},[48,3962],{"className":3963},[551,461],[48,3965],{"className":3966,"style":266},[188],[48,3968,271],{"className":3969},[270],[48,3971],{"className":3972,"style":266},[188],[48,3974,3976,3980,4109,4112,4115,4119,4122],{"className":3975},[60],[48,3977],{"className":3978,"style":3979},[64],"height:2.5613em;vertical-align:-0.95em;",[48,3981,3983,4079],{"className":3982},[939],[48,3984,3986,3992,4073],{"className":3985},[939],[48,3987,3989],{"className":3988,"style":947},[460,946],[48,3990,952],{"className":3991},[951,393],[48,3993,3995,3998,4070],{"className":3994},[69],[48,3996],{"className":3997},[460,461],[48,3999,4001],{"className":4000},[465],[48,4002,4004,4061],{"className":4003},[369,370],[48,4005,4007,4058],{"className":4006},[374],[48,4008,4010,4030,4038],{"className":4009,"style":971},[378],[48,4011,4012,4015],{"style":478},[48,4013],{"className":4014,"style":482},[386],[48,4016,4018,4021,4027],{"className":4017},[69],[48,4019,1334],{"className":4020},[69],[48,4022,4024],{"className":4023},[69],[48,4025,556],{"className":4026},[555],[48,4028,1344],{"className":4029},[69],[48,4031,4032,4035],{"style":512},[48,4033],{"className":4034,"style":482},[386],[48,4036],{"className":4037,"style":520},[519],[48,4039,4040,4043],{"style":523},[48,4041],{"className":4042,"style":482},[386],[48,4044,4046,4049,4055],{"className":4045},[69],[48,4047,1430],{"className":4048},[69],[48,4050,4052],{"className":4051},[69],[48,4053,556],{"className":4054},[555],[48,4056,1344],{"className":4057},[69],[48,4059,402],{"className":4060},[401],[48,4062,4064],{"className":4063},[374],[48,4065,4068],{"className":4066,"style":4067},[378],"height:0.8804em;",[48,4069],{},[48,4071],{"className":4072},[551,461],[48,4074,4076],{"className":4075,"style":947},[551,946],[48,4077,1094],{"className":4078},[951,393],[48,4080,4082],{"className":4081},[365],[48,4083,4085],{"className":4084},[369],[48,4086,4088],{"className":4087},[374],[48,4089,4092],{"className":4090,"style":4091},[378],"height:1.6112em;",[48,4093,4094,4097],{"style":1110},[48,4095],{"className":4096,"style":387},[386],[48,4098,4100],{"className":4099},[391,392,393,394],[48,4101,4103,4106],{"className":4102},[69,394],[48,4104,194],{"className":4105},[69,394],[48,4107,3730],{"className":4108,"style":3729},[69,208,394],[48,4110],{"className":4111,"style":266},[188],[48,4113],{"className":4114,"style":266},[188],[48,4116,4118],{"className":4117},[270],"⟹",[48,4120],{"className":4121,"style":266},[188],[48,4123],{"className":4124,"style":266},[188],[48,4126,4128,4131,4134,4137,4140],{"className":4127},[60],[48,4129],{"className":4130,"style":2836},[64],[48,4132,3730],{"className":4133,"style":3729},[69,208],[48,4135],{"className":4136,"style":266},[188],[48,4138,271],{"className":4139},[270],[48,4141],{"className":4142,"style":266},[188],[48,4144,4146,4150,4153,4237,4240,4243],{"className":4145},[60],[48,4147],{"className":4148,"style":4149},[64],"height:2.3074em;vertical-align:-0.8804em;",[48,4151,194],{"className":4152},[69],[48,4154,4156,4159,4234],{"className":4155},[69],[48,4157],{"className":4158},[460,461],[48,4160,4162],{"className":4161},[465],[48,4163,4165,4226],{"className":4164},[369,370],[48,4166,4168,4223],{"className":4167},[374],[48,4169,4171,4191,4199],{"className":4170,"style":2072},[378],[48,4172,4173,4176],{"style":478},[48,4174],{"className":4175,"style":482},[386],[48,4177,4179,4185,4188],{"className":4178},[69],[48,4180,4182],{"className":4181},[3585],[48,4183,3591],{"className":4184,"style":3590},[69,3589],[48,4186],{"className":4187,"style":564},[188],[48,4189,3313],{"className":4190},[69],[48,4192,4193,4196],{"style":512},[48,4194],{"className":4195,"style":482},[386],[48,4197],{"className":4198,"style":520},[519],[48,4200,4201,4204],{"style":523},[48,4202],{"className":4203,"style":482},[386],[48,4205,4207,4213,4216,4220],{"className":4206},[69],[48,4208,4210],{"className":4209},[3585],[48,4211,3591],{"className":4212,"style":3590},[69,3589],[48,4214,952],{"className":4215},[460],[48,4217,4219],{"className":4218},[69],"0.70",[48,4221,1094],{"className":4222},[551],[48,4224,402],{"className":4225},[401],[48,4227,4229],{"className":4228},[374],[48,4230,4232],{"className":4231,"style":4067},[378],[48,4233],{},[48,4235],{"className":4236},[551,461],[48,4238],{"className":4239,"style":266},[188],[48,4241,1265],{"className":4242},[270],[48,4244],{"className":4245,"style":266},[188],[48,4247,4249,4252],{"className":4248},[60],[48,4250],{"className":4251,"style":281},[64],[48,4253,4255],{"className":4254},[69],"0.257.",[11,4257,4258,4259,4319,4320,4362],{},"To hit a target ",[48,4260,4262],{"className":4261},[51],[48,4263,4265,4309],{"className":4264,"ariaHidden":56},[55],[48,4266,4268,4271,4300,4303,4306],{"className":4267},[60],[48,4269],{"className":4270,"style":3032},[64],[48,4272,4274,4277],{"className":4273},[69],[48,4275,2914],{"className":4276,"style":2913},[69,208],[48,4278,4280],{"className":4279},[365],[48,4281,4283],{"className":4282},[369],[48,4284,4286],{"className":4285},[374],[48,4287,4289],{"className":4288,"style":3032},[378],[48,4290,4291,4294],{"style":3053},[48,4292],{"className":4293,"style":387},[386],[48,4295,4297],{"className":4296},[391,392,393,394],[48,4298,3063],{"className":4299},[193,394],[48,4301],{"className":4302,"style":266},[188],[48,4304,271],{"className":4305},[270],[48,4307],{"className":4308,"style":266},[188],[48,4310,4312,4315],{"className":4311},[60],[48,4313],{"className":4314,"style":281},[64],[48,4316,4318],{"className":4317},[69],"0.10"," from the ",[48,4321,4323],{"className":4322},[51],[48,4324,4326,4344],{"className":4325,"ariaHidden":56},[55],[48,4327,4329,4332,4335,4338,4341],{"className":4328},[60],[48,4330],{"className":4331,"style":2836},[64],[48,4333,3568],{"className":4334},[69,208],[48,4336],{"className":4337,"style":266},[188],[48,4339,271],{"className":4340},[270],[48,4342],{"className":4343,"style":266},[188],[48,4345,4347,4350,4353,4359],{"className":4346},[60],[48,4348],{"className":4349,"style":1330},[64],[48,4351,1334],{"className":4352},[69],[48,4354,4356],{"className":4355},[69],[48,4357,556],{"className":4358},[555],[48,4360,1344],{"className":4361},[69]," anchor you need",[48,4364,4366],{"className":4365},[416],[48,4367,4369],{"className":4368},[51],[48,4370,4372,4418,4560,4588,4637,4657],{"className":4371,"ariaHidden":56},[55],[48,4373,4375,4379,4409,4412,4415],{"className":4374},[60],[48,4376],{"className":4377,"style":4378},[64],"height:0.7387em;",[48,4380,4382,4385],{"className":4381},[69],[48,4383,3568],{"className":4384},[69,208],[48,4386,4388],{"className":4387},[365],[48,4389,4391],{"className":4390},[369],[48,4392,4394],{"className":4393},[374],[48,4395,4397],{"className":4396,"style":4378},[378],[48,4398,4400,4403],{"style":4399},"top:-3.113em;margin-right:0.05em;",[48,4401],{"className":4402,"style":387},[386],[48,4404,4406],{"className":4405},[391,392,393,394],[48,4407,3063],{"className":4408},[193,394],[48,4410],{"className":4411,"style":266},[188],[48,4413,271],{"className":4414},[270],[48,4416],{"className":4417,"style":266},[188],[48,4419,4421,4425,4428,4434,4437,4440,4551,4554,4557],{"className":4420},[60],[48,4422],{"className":4423,"style":4424},[64],"height:2.6779em;vertical-align:-0.95em;",[48,4426,1334],{"className":4427},[69],[48,4429,4431],{"className":4430},[69],[48,4432,556],{"className":4433},[555],[48,4435,1344],{"className":4436},[69],[48,4438],{"className":4439,"style":564},[188],[48,4441,4443,4520],{"className":4442},[939],[48,4444,4446,4452,4514],{"className":4445},[939],[48,4447,4449],{"className":4448,"style":947},[460,946],[48,4450,952],{"className":4451},[951,393],[48,4453,4455,4458,4511],{"className":4454},[69],[48,4456],{"className":4457},[460,461],[48,4459,4461],{"className":4460},[465],[48,4462,4464,4503],{"className":4463},[369,370],[48,4465,4467,4500],{"className":4466},[374],[48,4468,4470,4481,4489],{"className":4469,"style":971},[378],[48,4471,4472,4475],{"style":478},[48,4473],{"className":4474,"style":482},[386],[48,4476,4478],{"className":4477},[69],[48,4479,4318],{"className":4480},[69],[48,4482,4483,4486],{"style":512},[48,4484],{"className":4485,"style":482},[386],[48,4487],{"className":4488,"style":520},[519],[48,4490,4491,4494],{"style":523},[48,4492],{"className":4493,"style":482},[386],[48,4495,4497],{"className":4496},[69],[48,4498,3765],{"className":4499},[69],[48,4501,402],{"className":4502},[401],[48,4504,4506],{"className":4505},[374],[48,4507,4509],{"className":4508,"style":1011},[378],[48,4510],{},[48,4512],{"className":4513},[551,461],[48,4515,4517],{"className":4516,"style":947},[551,946],[48,4518,1094],{"className":4519},[951,393],[48,4521,4523],{"className":4522},[365],[48,4524,4526],{"className":4525},[369],[48,4527,4529],{"className":4528},[374],[48,4530,4533],{"className":4531,"style":4532},[378],"height:1.7279em;",[48,4534,4535,4538],{"style":1110},[48,4536],{"className":4537,"style":387},[386],[48,4539,4541],{"className":4540},[391,392,393,394],[48,4542,4544,4548],{"className":4543},[69,394],[48,4545,4547],{"className":4546},[69,394],"1\u002F",[48,4549,3730],{"className":4550,"style":3729},[69,208,394],[48,4552],{"className":4553,"style":266},[188],[48,4555,271],{"className":4556},[270],[48,4558],{"className":4559,"style":266},[188],[48,4561,4563,4566,4569,4575,4578,4581,4585],{"className":4562},[60],[48,4564],{"className":4565,"style":1330},[64],[48,4567,1334],{"className":4568},[69],[48,4570,4572],{"className":4571},[69],[48,4573,556],{"className":4574},[555],[48,4576,1344],{"className":4577},[69],[48,4579],{"className":4580,"style":189},[188],[48,4582,4584],{"className":4583},[193],"⋅",[48,4586],{"className":4587,"style":189},[188],[48,4589,4591,4595,4628,4631,4634],{"className":4590},[60],[48,4592],{"className":4593,"style":4594},[64],"height:0.8641em;",[48,4596,4598,4601],{"className":4597},[69],[48,4599,112],{"className":4600},[69],[48,4602,4604],{"className":4603},[365],[48,4605,4607],{"className":4606},[369],[48,4608,4610],{"className":4609},[374],[48,4611,4613],{"className":4612,"style":4594},[378],[48,4614,4615,4618],{"style":4399},[48,4616],{"className":4617,"style":387},[386],[48,4619,4621],{"className":4620},[391,392,393,394],[48,4622,4624],{"className":4623},[69,394],[48,4625,4627],{"className":4626},[69,394],"3.9",[48,4629],{"className":4630,"style":266},[188],[48,4632,1265],{"className":4633},[270],[48,4635],{"className":4636,"style":266},[188],[48,4638,4640,4643,4647,4650,4654],{"className":4639},[60],[48,4641],{"className":4642,"style":181},[64],[48,4644,4646],{"className":4645},[69],"1.5",[48,4648],{"className":4649,"style":189},[188],[48,4651,4653],{"className":4652},[193],"×",[48,4655],{"className":4656,"style":189},[188],[48,4658,4660,4664,4667,4697],{"className":4659},[60],[48,4661],{"className":4662,"style":4663},[64],"height:1.0585em;vertical-align:-0.1944em;",[48,4665,34],{"className":4666},[69],[48,4668,4670,4673],{"className":4669},[69],[48,4671,2747],{"className":4672},[69],[48,4674,4676],{"className":4675},[365],[48,4677,4679],{"className":4678},[369],[48,4680,4682],{"className":4681},[374],[48,4683,4685],{"className":4684,"style":4594},[378],[48,4686,4687,4690],{"style":4399},[48,4688],{"className":4689,"style":387},[386],[48,4691,4693],{"className":4692},[391,392,393,394],[48,4694,4696],{"className":4695},[69,394],"5",[48,4698,556],{"className":4699},[555],[11,4701,4702,4703,4719],{},"so reaching ",[48,4704,4706],{"className":4705},[51],[48,4707,4709],{"className":4708,"ariaHidden":56},[55],[48,4710,4712,4715],{"className":4711},[60],[48,4713],{"className":4714,"style":65},[64],[48,4716,4718],{"className":4717},[69],"10%"," error costs roughly fifteen times the current data. That number is\nwhat decides whether to label more examples or to change the model instead, and it is\nfar cheaper to estimate than to discover after a failed collection round.",[73,4721,4723],{"id":4722},"the-data-pipeline","The data pipeline",[11,4725,4726],{},"More data helps only if the path from raw examples to the network delivers them\ncorrectly, and this path is where a large share of real bugs hide. A subtle\npreprocessing error, normalizing with the wrong statistics, leaking test labels into\ntraining, shuffling images but not their labels, corrupts every gradient the model\never sees, yet training loss may still fall because the network fits the\ncorrupted signal anyway. The pipeline deserves the same scrutiny as the model.",[99,4728],{"hash":4729},"c5e0779b1d6db4ff99e23bbb5f2b63ec1ed50a0e8e5e2dce113d62e385cdea5c",[11,4731,4732,4733,4749,4750,4766,4767,4770,4771,4774],{},"Two rules govern this pipeline, and both prevent a specific and common failure.\nNormalization statistics, the per-feature mean ",[48,4734,4736],{"className":4735},[51],[48,4737,4739],{"className":4738,"ariaHidden":56},[55],[48,4740,4742,4745],{"className":4741},[60],[48,4743],{"className":4744,"style":204},[64],[48,4746,4748],{"className":4747},[69,208],"μ"," and standard deviation ",[48,4751,4753],{"className":4752},[51],[48,4754,4756],{"className":4755,"ariaHidden":56},[55],[48,4757,4759,4762],{"className":4758},[60],[48,4760],{"className":4761,"style":2836},[64],[48,4763,4765],{"className":4764,"style":2620},[69,208],"σ","\nused to standardize inputs to zero mean and unit variance, must be estimated on the\n",[20,4768,4769],{},"training split alone"," and then reused verbatim on validation and test. Fitting them\non the full dataset lets information about the test distribution leak backward into\ntraining, inflating the reported score above what deployment will deliver. Second,\n",[20,4772,4773],{},"augmentation is a training-only transformation",": random crops, flips, color jitter,\nand additive noise expand the effective training set and act as a regularizer, but\nvalidation and test must see clean, canonical inputs so the metric measures real\ngeneralization rather than luck on a random crop.",[81,4776,4777],{"type":83},[11,4778,4779,4782],{},[20,4780,4781],{},"Definition (Data augmentation)."," Label-preserving transformations applied to\ntraining inputs to enlarge the effective dataset. For an image classifier, a\nhorizontal flip, a small rotation, or a random crop yields a new example the model\nhas not seen while leaving the label unchanged. Augmentation is the cheapest\nregularizer available when data is scarce, and it directly addresses the variance\nhalf of the gap diagnosis.",[11,4784,4785,4786,4801],{},"The transformation must preserve the label, and that is domain-specific. A horizontal\nflip is safe for a cat photo but destroys a photo of a printed digit, where it turns a\n",[48,4787,4789],{"className":4788},[51],[48,4790,4792],{"className":4791,"ariaHidden":56},[55],[48,4793,4795,4798],{"className":4794},[60],[48,4796],{"className":4797,"style":281},[64],[48,4799,112],{"className":4800},[69]," into a mirror image that is no digit at all, and it flips left and right in a\nself-driving scene. Choose augmentations that respect the invariances the task\nactually has, not a generic recipe.",[73,4803,4805],{"id":4804},"scaling-laws-turn-the-gap-diagnosis-quantitative","Scaling laws turn the gap diagnosis quantitative",[11,4807,4808,4809,4812,4813,4816],{},"Goodfellow's power-law remark — that generalization error falls predictably with data\n— was sharpened into a design tool by the ",[20,4810,4811],{},"neural scaling laws"," literature. Hestness\net al. (2017, arXiv) and then Kaplan et al. (2020, arXiv, ",[15,4814,4815],{},"Scaling Laws for Neural\nLanguage Models",") measured loss across orders of magnitude of data, parameters, and\ncompute and found it follows power laws over a wide range,",[48,4818,4820],{"className":4819},[416],[48,4821,4823],{"className":4822},[51],[48,4824,4826,4854,5086],{"className":4825,"ariaHidden":56},[55],[48,4827,4829,4832,4836,4839,4842,4845,4848,4851],{"className":4828},[60],[48,4830],{"className":4831,"style":1629},[64],[48,4833,4835],{"className":4834},[69,208],"L",[48,4837,952],{"className":4838},[460],[48,4840,635],{"className":4841,"style":634},[69,208],[48,4843,1094],{"className":4844},[551],[48,4846],{"className":4847,"style":266},[188],[48,4849,1265],{"className":4850},[270],[48,4852],{"className":4853,"style":266},[188],[48,4855,4857,4861,5051,5054,5057,5060,5063,5066,5069,5074,5077,5080,5083],{"className":4856},[60],[48,4858],{"className":4859,"style":4860},[64],"height:2.4543em;vertical-align:-0.95em;",[48,4862,4864,4981],{"className":4863},[939],[48,4865,4867,4873,4975],{"className":4866},[939],[48,4868,4870],{"className":4869,"style":947},[460,946],[48,4871,952],{"className":4872},[951,393],[48,4874,4876,4879,4972],{"className":4875},[69],[48,4877],{"className":4878},[460,461],[48,4880,4882],{"className":4881},[465],[48,4883,4885,4964],{"className":4884},[369,370],[48,4886,4888,4961],{"className":4887},[374],[48,4889,4891,4902,4910],{"className":4890,"style":475},[378],[48,4892,4893,4896],{"style":478},[48,4894],{"className":4895,"style":482},[386],[48,4897,4899],{"className":4898},[69],[48,4900,635],{"className":4901,"style":634},[69,208],[48,4903,4904,4907],{"style":512},[48,4905],{"className":4906,"style":482},[386],[48,4908],{"className":4909,"style":520},[519],[48,4911,4912,4915],{"style":523},[48,4913],{"className":4914,"style":482},[386],[48,4916,4918],{"className":4917},[69],[48,4919,4921,4924],{"className":4920},[69],[48,4922,635],{"className":4923,"style":634},[69,208],[48,4925,4927],{"className":4926},[365],[48,4928,4930,4953],{"className":4929},[369,370],[48,4931,4933,4950],{"className":4932},[374],[48,4934,4937],{"className":4935,"style":4936},[378],"height:0.1514em;",[48,4938,4940,4943],{"style":4939},"top:-2.55em;margin-left:-0.109em;margin-right:0.05em;",[48,4941],{"className":4942,"style":387},[386],[48,4944,4946],{"className":4945},[391,392,393,394],[48,4947,4949],{"className":4948},[69,208,394],"c",[48,4951,402],{"className":4952},[401],[48,4954,4956],{"className":4955},[374],[48,4957,4959],{"className":4958,"style":409},[378],[48,4960],{},[48,4962,402],{"className":4963},[401],[48,4965,4967],{"className":4966},[374],[48,4968,4970],{"className":4969,"style":1011},[378],[48,4971],{},[48,4973],{"className":4974},[551,461],[48,4976,4978],{"className":4977,"style":947},[551,946],[48,4979,1094],{"className":4980},[951,393],[48,4982,4984],{"className":4983},[365],[48,4985,4987],{"className":4986},[369],[48,4988,4990],{"className":4989},[374],[48,4991,4994],{"className":4992,"style":4993},[378],"height:1.5043em;",[48,4995,4996,4999],{"style":1110},[48,4997],{"className":4998,"style":387},[386],[48,5000,5002],{"className":5001},[391,392,393,394],[48,5003,5005],{"className":5004},[69,394],[48,5006,5008,5011],{"className":5007},[69,394],[48,5009,3730],{"className":5010,"style":3729},[69,208,394],[48,5012,5014],{"className":5013},[365],[48,5015,5017,5042],{"className":5016},[369,370],[48,5018,5020,5039],{"className":5019},[374],[48,5021,5024],{"className":5022,"style":5023},[378],"height:0.3448em;",[48,5025,5027,5031],{"style":5026},"top:-2.3567em;margin-left:-0.0037em;margin-right:0.0714em;",[48,5028],{"className":5029,"style":5030},[386],"height:2.5em;",[48,5032,5036],{"className":5033},[391,5034,5035,394],"reset-size3","size1",[48,5037,635],{"className":5038,"style":634},[69,208,394],[48,5040,402],{"className":5041},[401],[48,5043,5045],{"className":5044},[374],[48,5046,5049],{"className":5047,"style":5048},[378],"height:0.1433em;",[48,5050],{},[48,5052],{"className":5053,"style":564},[188],[48,5055,556],{"className":5056},[555],[48,5058],{"className":5059,"style":560},[188],[48,5061],{"className":5062,"style":564},[188],[48,5064,4835],{"className":5065},[69,208],[48,5067,952],{"className":5068},[460],[48,5070,5073],{"className":5071,"style":5072},[69,208],"margin-right:0.0278em;","D",[48,5075,1094],{"className":5076},[551],[48,5078],{"className":5079,"style":266},[188],[48,5081,1265],{"className":5082},[270],[48,5084],{"className":5085,"style":266},[188],[48,5087,5089,5092,5273,5276],{"className":5088},[60],[48,5090],{"className":5091,"style":4860},[64],[48,5093,5095,5210],{"className":5094},[939],[48,5096,5098,5104,5204],{"className":5097},[939],[48,5099,5101],{"className":5100,"style":947},[460,946],[48,5102,952],{"className":5103},[951,393],[48,5105,5107,5110,5201],{"className":5106},[69],[48,5108],{"className":5109},[460,461],[48,5111,5113],{"className":5112},[465],[48,5114,5116,5193],{"className":5115},[369,370],[48,5117,5119,5190],{"className":5118},[374],[48,5120,5122,5133,5141],{"className":5121,"style":475},[378],[48,5123,5124,5127],{"style":478},[48,5125],{"className":5126,"style":482},[386],[48,5128,5130],{"className":5129},[69],[48,5131,5073],{"className":5132,"style":5072},[69,208],[48,5134,5135,5138],{"style":512},[48,5136],{"className":5137,"style":482},[386],[48,5139],{"className":5140,"style":520},[519],[48,5142,5143,5146],{"style":523},[48,5144],{"className":5145,"style":482},[386],[48,5147,5149],{"className":5148},[69],[48,5150,5152,5155],{"className":5151},[69],[48,5153,5073],{"className":5154,"style":5072},[69,208],[48,5156,5158],{"className":5157},[365],[48,5159,5161,5182],{"className":5160},[369,370],[48,5162,5164,5179],{"className":5163},[374],[48,5165,5167],{"className":5166,"style":4936},[378],[48,5168,5170,5173],{"style":5169},"top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;",[48,5171],{"className":5172,"style":387},[386],[48,5174,5176],{"className":5175},[391,392,393,394],[48,5177,4949],{"className":5178},[69,208,394],[48,5180,402],{"className":5181},[401],[48,5183,5185],{"className":5184},[374],[48,5186,5188],{"className":5187,"style":409},[378],[48,5189],{},[48,5191,402],{"className":5192},[401],[48,5194,5196],{"className":5195},[374],[48,5197,5199],{"className":5198,"style":1011},[378],[48,5200],{},[48,5202],{"className":5203},[551,461],[48,5205,5207],{"className":5206,"style":947},[551,946],[48,5208,1094],{"className":5209},[951,393],[48,5211,5213],{"className":5212},[365],[48,5214,5216],{"className":5215},[369],[48,5217,5219],{"className":5218},[374],[48,5220,5222],{"className":5221,"style":4993},[378],[48,5223,5224,5227],{"style":1110},[48,5225],{"className":5226,"style":387},[386],[48,5228,5230],{"className":5229},[391,392,393,394],[48,5231,5233],{"className":5232},[69,394],[48,5234,5236,5239],{"className":5235},[69,394],[48,5237,3730],{"className":5238,"style":3729},[69,208,394],[48,5240,5242],{"className":5241},[365],[48,5243,5245,5265],{"className":5244},[369,370],[48,5246,5248,5262],{"className":5247},[374],[48,5249,5251],{"className":5250,"style":5023},[378],[48,5252,5253,5256],{"style":5026},[48,5254],{"className":5255,"style":5030},[386],[48,5257,5259],{"className":5258},[391,5034,5035,394],[48,5260,5073],{"className":5261,"style":5072},[69,208,394],[48,5263,402],{"className":5264},[401],[48,5266,5268],{"className":5267},[374],[48,5269,5271],{"className":5270,"style":5048},[378],[48,5272],{},[48,5274],{"className":5275,"style":564},[188],[48,5277,556],{"className":5278},[555],[11,5280,5281,5282,5297,5298,5313,5314,5329,5330,5359,5360,5376,5377,5380],{},"where ",[48,5283,5285],{"className":5284},[51],[48,5286,5288],{"className":5287,"ariaHidden":56},[55],[48,5289,5291,5294],{"className":5290},[60],[48,5292],{"className":5293,"style":839},[64],[48,5295,635],{"className":5296,"style":634},[69,208]," is parameter count, ",[48,5299,5301],{"className":5300},[51],[48,5302,5304],{"className":5303,"ariaHidden":56},[55],[48,5305,5307,5310],{"className":5306},[60],[48,5308],{"className":5309,"style":839},[64],[48,5311,5073],{"className":5312,"style":5072},[69,208]," dataset size, and the exponents ",[48,5315,5317],{"className":5316},[51],[48,5318,5320],{"className":5319,"ariaHidden":56},[55],[48,5321,5323,5326],{"className":5322},[60],[48,5324],{"className":5325,"style":2836},[64],[48,5327,3730],{"className":5328,"style":3729},[69,208]," are small\n(often ",[48,5331,5333],{"className":5332},[51],[48,5334,5336,5349],{"className":5335,"ariaHidden":56},[55],[48,5337,5339,5343,5346],{"className":5338},[60],[48,5340],{"className":5341,"style":5342},[64],"height:0.4831em;",[48,5344,1265],{"className":5345},[270],[48,5347],{"className":5348,"style":266},[188],[48,5350,5352,5355],{"className":5351},[60],[48,5353],{"className":5354,"style":281},[64],[48,5356,5358],{"className":5357},[69],"0.05","–",[48,5361,5363],{"className":5362},[51],[48,5364,5366],{"className":5365,"ariaHidden":56},[55],[48,5367,5369,5372],{"className":5368},[60],[48,5370],{"className":5371,"style":281},[64],[48,5373,5375],{"className":5374},[69],"0.1"," for language). Straight lines on a log–log plot mean the\nextrapolation from the ",[138,5378,5379],{},"estimating the data needed"," remark is a fit rather than a\nheuristic: measure two points, read the slope, predict the third.",[11,5382,5383,5384,5387,5388,5391,5392,5395,5396,5399,5400,2958,5415,5430],{},"The refinement that matters for the gather-more-data decision is ",[20,5385,5386],{},"compute-optimal\nallocation",". Hoffmann et al. (2022, ",[15,5389,5390],{},"NeurIPS",", the ",[138,5393,5394],{},"Chinchilla"," paper) showed that,\nfor a fixed compute budget, most large models were badly ",[15,5397,5398],{},"over-parameterized and\nunder-trained",": the optimum scales ",[48,5401,5403],{"className":5402},[51],[48,5404,5406],{"className":5405,"ariaHidden":56},[55],[48,5407,5409,5412],{"className":5408},[60],[48,5410],{"className":5411,"style":839},[64],[48,5413,635],{"className":5414,"style":634},[69,208],[48,5416,5418],{"className":5417},[51],[48,5419,5421],{"className":5420,"ariaHidden":56},[55],[48,5422,5424,5427],{"className":5423},[60],[48,5425],{"className":5426,"style":839},[64],[48,5428,5073],{"className":5429,"style":5072},[69,208]," together in roughly equal proportion,\nso a model half the size trained on twice the data beats it at the same cost. That is\nthe gap diagnosis at industrial scale — the bottleneck was data, not capacity, exactly\nthe reading the train\u002Fvalidation gap prescribes, now made quantitative enough to size a\ntraining run before launching it. The practitioner's lesson is unchanged from the loop\nabove: measure, diagnose, then spend the next unit of budget where the diagnosis points.",[73,5432,5434],{"id":5433},"takeaways","Takeaways",[322,5436,5437,5443,5555,5561,5567],{},[325,5438,5439,5442],{},[20,5440,5441],{},"Methodology beats novelty."," A standard algorithm applied with discipline (fix a\nmetric, build an end-to-end baseline, instrument, iterate on a diagnosis)\noutperforms an exotic algorithm applied carelessly. Every learned model must first\nclear a common-sense baseline that uses no learning at all.",[325,5444,5445,5448,5449,5501,5502,5554],{},[20,5446,5447],{},"Choose the metric to match the goal."," Accuracy collapses under class imbalance;\nprecision, recall, ",[48,5450,5452],{"className":5451},[51],[48,5453,5455],{"className":5454,"ariaHidden":56},[55],[48,5456,5458,5461],{"className":5457},[60],[48,5459],{"className":5460,"style":353},[64],[48,5462,5464,5467],{"className":5463},[69],[48,5465,361],{"className":5466,"style":360},[69,208],[48,5468,5470],{"className":5469},[365],[48,5471,5473,5493],{"className":5472},[369,370],[48,5474,5476,5490],{"className":5475},[374],[48,5477,5479],{"className":5478,"style":379},[378],[48,5480,5481,5484],{"style":382},[48,5482],{"className":5483,"style":387},[386],[48,5485,5487],{"className":5486},[391,392,393,394],[48,5488,34],{"className":5489},[69,394],[48,5491,402],{"className":5492},[401],[48,5494,5496],{"className":5495},[374],[48,5497,5499],{"className":5498,"style":409},[378],[48,5500],{},", and the PR\u002FROC curves separate the error types so the\nthreshold can be set by the real cost structure. The ",[48,5503,5505],{"className":5504},[51],[48,5506,5508],{"className":5507,"ariaHidden":56},[55],[48,5509,5511,5514],{"className":5510},[60],[48,5512],{"className":5513,"style":353},[64],[48,5515,5517,5520],{"className":5516},[69],[48,5518,361],{"className":5519,"style":360},[69,208],[48,5521,5523],{"className":5522},[365],[48,5524,5526,5546],{"className":5525},[369,370],[48,5527,5529,5543],{"className":5528},[374],[48,5530,5532],{"className":5531,"style":379},[378],[48,5533,5534,5537],{"style":382},[48,5535],{"className":5536,"style":387},[386],[48,5538,5540],{"className":5539},[391,392,393,394],[48,5541,34],{"className":5542},[69,394],[48,5544,402],{"className":5545},[401],[48,5547,5549],{"className":5548},[374],[48,5550,5552],{"className":5551,"style":409},[378],[48,5553],{}," harmonic mean collapses\ntoward the smaller of precision and recall, punishing a model that sacrifices one.",[325,5556,5557,5560],{},[20,5558,5559],{},"Start with a strong, type-appropriate baseline"," (MLP for vectors, CNN for\nimages, gated RNN or Transformer for sequences) using reasonable defaults (ReLU,\nAdam or SGD+momentum, early stopping). If a tuned exotic model cannot beat it, the\nbottleneck is the data or the framing, not the architecture.",[325,5562,5563,5566],{},[20,5564,5565],{},"Let the train\u002Fvalidation gap pick the next move."," High training error means\nunderfitting (bigger model, better optimization); a large gap means overfitting\n(more data, regularization). More data never fixes bias. Fit the learning curve's\npower law to estimate how many examples reach the target before paying to collect them.",[325,5568,5569,5572],{},[20,5570,5571],{},"Guard the data pipeline."," Fit normalization statistics on the training split\nonly, apply augmentation to training batches only, and pick label-preserving\ntransforms that match the task's real invariances — a horizontal flip is safe for a\ncat but destroys a printed digit.",[11,5574,5575,5576,5580],{},"This continues in\n",[28,5577,5579],{"href":5578},"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging","Hyperparameters and Debugging",",\nwhich picks up the tuning half of the loop: the learning rate as the dominant\nhyperparameter, random search over grid, an ordered debugging playbook, and monitoring\nfor drift after deployment.",[5582,5583,5586,5591],"section",{"className":5584,"dataFootnotes":6},[5585],"footnotes",[73,5587,5590],{"className":5588,"id":32},[5589],"sr-only","Footnotes",[5592,5593,5594,5612,5627,5693],"ol",{},[325,5595,5597,5600,5601,5604,5605],{"id":5596},"user-content-fn-gf-method",[20,5598,5599],{},"Goodfellow",", ",[15,5602,5603],{},"Deep Learning",", Ch. 11 — Practical Methodology: the recommended iterate-to-target design loop, and the thesis that disciplined application of a standard method beats careless use of a novel one. ",[28,5606,5611],{"href":5607,"ariaLabel":5608,"className":5609,"dataFootnoteBackref":6},"#user-content-fnref-gf-method","Back to reference 1",[5610],"data-footnote-backref","↩",[325,5613,5615,5600,5618,5621,5622],{"id":5614},"user-content-fn-chollet-workflow",[20,5616,5617],{},"Chollet",[15,5619,5620],{},"Deep Learning with Python",", §4.5 — The Universal Workflow of Machine Learning: stand up an end-to-end baseline that beats a common-sense reference before tuning anything in the abstract. ",[28,5623,5611],{"href":5624,"ariaLabel":5625,"className":5626,"dataFootnoteBackref":6},"#user-content-fnref-chollet-workflow","Back to reference 2",[5610],[325,5628,5630,5600,5632,5634,5635,5687,5688],{"id":5629},"user-content-fn-gf-metrics",[20,5631,5599],{},[15,5633,5603],{},", §11.1 — Performance Metrics: accuracy's failure under class imbalance and the precision\u002Frecall\u002F",[48,5636,5638],{"className":5637},[51],[48,5639,5641],{"className":5640,"ariaHidden":56},[55],[48,5642,5644,5647],{"className":5643},[60],[48,5645],{"className":5646,"style":353},[64],[48,5648,5650,5653],{"className":5649},[69],[48,5651,361],{"className":5652,"style":360},[69,208],[48,5654,5656],{"className":5655},[365],[48,5657,5659,5679],{"className":5658},[369,370],[48,5660,5662,5676],{"className":5661},[374],[48,5663,5665],{"className":5664,"style":379},[378],[48,5666,5667,5670],{"style":382},[48,5668],{"className":5669,"style":387},[386],[48,5671,5673],{"className":5672},[391,392,393,394],[48,5674,34],{"className":5675},[69,394],[48,5677,402],{"className":5678},[401],[48,5680,5682],{"className":5681},[374],[48,5683,5685],{"className":5684,"style":409},[378],[48,5686],{}," family that scores the two error types separately. ",[28,5689,5611],{"href":5690,"ariaLabel":5691,"className":5692,"dataFootnoteBackref":6},"#user-content-fnref-gf-metrics","Back to reference 3",[5610],[325,5694,5696,5600,5698,5700,5701],{"id":5695},"user-content-fn-gf-gap",[20,5697,5599],{},[15,5699,5603],{},", §11.3 \u002F §5.2 — Determining Whether to Gather More Data: read the train\u002Fvalidation gap as bias versus variance, since more data fixes overfitting but never underfitting. ",[28,5702,5611],{"href":5703,"ariaLabel":5704,"className":5705,"dataFootnoteBackref":6},"#user-content-fnref-gf-gap","Back to reference 4",[5610],{"title":6,"searchDepth":5707,"depth":5707,"links":5708},2,[5709,5710,5711,5712,5713,5714,5715,5716],{"id":75,"depth":5707,"text":76},{"id":148,"depth":5707,"text":149},{"id":2754,"depth":5707,"text":2755},{"id":2877,"depth":5707,"text":2878},{"id":4722,"depth":5707,"text":4723},{"id":4804,"depth":5707,"text":4805},{"id":5433,"depth":5707,"text":5434},{"id":32,"depth":5707,"text":5590},[],"computer-science","A practitioner who knows every optimizer and architecture in this course can still\nship a model that fails because of a wrong decision about which equation to\nchange next. Goodfellow's central claim is that\ncorrectly applying a commonplace algorithm usually beats sloppily applying an\nexotic one.1 The skill is methodological: pick the right metric, build an\nend-to-end system fast, instrument it, and let a diagnosis, not a hunch, pick\nthe next move. This lesson is that decision procedure, made explicit.",false,"md",{"moduleNumber":5723,"lessonNumber":5724,"order":5725},9,1,901,"Practical Deep Learning",true,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology",[],"---\ntitle: Practical Methodology\nmodule: Practical Deep Learning\nmoduleNumber: 9\nlessonNumber: 1\norder: 901\nsummary: >\n  Knowing the algorithms is half the job; the other half is a disciplined loop.\n  Fix a goal and a metric, stand up an end-to-end baseline, then read the\n  train\u002Fvalidation gap to decide whether the next move is more data or a bigger\n  model. We detail that loop: choosing metrics under class imbalance,\n  default baselines by data type, extrapolating the data a target needs, and\n  guarding the data pipeline against the leaks and label bugs that corrupt every\n  gradient. Hyperparameter tuning, debugging, and deployment continue in the\n  sequel.\ntopics: [Practical Deep Learning]\nsources:\n  - book: Goodfellow\n    ref: \"Ch. 11 — Practical Methodology; §11.1 Performance Metrics\"\n  - book: Goodfellow\n    ref: \"§5.2 Capacity, Overfitting, Underfitting; §11.3 Whether to Gather More Data\"\n  - book: Chollet\n    ref: \"Ch. 4 — Fundamentals of Machine Learning; §4.5 The Universal Workflow\"\n---\n\nA practitioner who knows every optimizer and architecture in this course can still\nship a model that fails because of a wrong _decision_ about which equation to\nchange next. Goodfellow's central claim is that\n**correctly applying a commonplace algorithm usually beats sloppily applying an\nexotic one**.[^gf-method] The skill is methodological: pick the right metric, build an\nend-to-end system fast, instrument it, and let a _diagnosis_, not a hunch, pick\nthe next move. This lesson is that decision procedure, made explicit.\n\nThe reason discipline matters so much is that deep-learning failures are\n_ambiguous_. A training run that plateaus at $40\\%$ error could be starved of\ncapacity, starved of data, poorly optimized, or silently corrupted by a data-loader\nbug, and the loss curve alone does not say which. Every one of those causes has a\ndifferent remedy, and applying the wrong remedy costs days. The methodology exists to\nturn that ambiguity into a sequence of cheap measurements that each rule out one\ncause.\n\n## The design process\n\nThe recommended workflow is a loop, not a waterfall. Each pass through it changes\nexactly one thing, chosen by what the instrumentation says is the bottleneck.\nChanging several things at once is the classic error: if error drops, you cannot\nattribute the win, and if it rises, you cannot attribute the loss, so the next\niteration starts blind.\n\n> **Definition (Practical design loop).** A four-step iterate-to-target cycle: (1)\n> fix the goal as an _error metric_ and a _target value_; (2) build a working\n> end-to-end pipeline as fast as possible; (3) instrument it to find the\n> bottleneck (too little capacity, too little data, a bug, or bad\n> hyperparameters); (4) make one change indicated by the diagnosis, and repeat.\n\n$$\n% caption: The methodology loop. Measure a baseline, let the train\u002Fvalidation gap\n% diagnose bias versus variance, apply the one remedy the diagnosis names, and\n% re-measure. The loop exits only when the target metric is met.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize,\n  box\u002F.style={draw, minimum width=27mm, minimum height=11mm, align=center},\n  dec\u002F.style={draw, diamond, aspect=1.7, inner sep=1pt, align=center},\n  act\u002F.style={draw, minimum width=26mm, minimum height=9mm, align=center, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{green}{HTML}{1F9D4D}\n  \\definecolor{red}{HTML}{C0392B}\n  % central spine (top to bottom)\n  \\node[box, draw=acc, text=acc, thick] (goal) at (0,3.0) {goal:\\\\metric + target};\n  \\node[box] (base) at (0,0.9) {end-to-end\\\\baseline};\n  \\node[box] (meas) at (0,-1.2) {measure\\\\train + val error};\n  \\node[dec] (diag) at (0,-3.8) {target\\\\met?};\n  \\node[green] (done) at (4.4,-3.8) {ship};\n  % left column: gap decision at bottom, two remedies stacked above\n  \\node[dec] (gap)  at (-5.4,-3.8) {large\\\\gap?};\n  \\node[act] (data) at (-5.4,0.9)  {more data \u002F\\\\regularize};\n  \\node[act] (cap)  at (-5.4,-1.2) {bigger model \u002F\\\\better optim};\n  % spine arrows\n  \\draw[->, acc, thick] (goal) -- (base);\n  \\draw[->, acc, thick] (base) -- (meas);\n  \\draw[->, acc, thick] (meas) -- (diag);\n  \\draw[->, green, thick] (diag) -- (done) node[midway, above, font=\\scriptsize] {yes};\n  % target not met: go diagnose the gap (straight left, no crossings)\n  \\draw[->, acc, thick] (diag) -- (gap) node[midway, above, font=\\scriptsize] {no};\n  % large gap? yes = variance = more data \u002F regularize (long left branch)\n  \\draw[->, red, thick] (gap.west) .. controls (-7.4,-1.8) and (-7.4,0.2) .. (data.west)\n    node[pos=0.08, above right, font=\\scriptsize] {yes};\n  % large gap? no = bias = bigger model \u002F better optim\n  \\draw[->, red, thick] (gap.north) -- (cap.south) node[midway, right, font=\\scriptsize] {no};\n  % remedies feed back into the spine\n  \\draw[->, acc, thick] (data.north) .. controls (-2.6,2.6) .. (base.west);\n  \\draw[->, acc, thick] (cap.east) -- (meas.west);\n\\end{tikzpicture}\n$$\n\nThe single most common mistake is to skip step 2, to tune an idea in the abstract\nbefore any complete system runs. The baseline is what converts vague worry into a\nmeasured number, and the number is what makes step 3 possible.[^chollet-workflow]\n\nChollet frames step 1 more sharply: before you trust any learned model, it must beat\na **common-sense baseline** that uses no learning at all. For a balanced two-class\nproblem that baseline is random guessing at $50\\%$ accuracy; for a temperature\nforecaster it is \"tomorrow equals today\"; for an imbalanced detector it is the\nmajority-class constant. A model that fails to clear this floor is not learning\nanything useful from its inputs, and no amount of tuning will rescue it until the\ndata pipeline or the target itself is fixed. The floor is also a sanity check on the\nwhole harness: if a model that _should_ be able to beat it does not, the bug is\nusually in the plumbing, not the network.\n\n## Performance metrics\n\nBefore building anything, decide what \"good\" means as a single number. The default\nchoice, accuracy, silently fails under **class imbalance**, the regime where one\nclass dominates the data.\n\n> **Definition (Accuracy's failure mode).** On a dataset where a fraction\n> $1-p$ of examples are negative, the constant classifier \"always predict\n> negative\" attains accuracy $1-p$. With $p = 0.001$ (a rare disease) it scores\n> $99.9\\%$ while detecting nothing: accuracy rewards ignoring the class that\n> matters.\n\nTo address this, score the two error types separately. Fix a positive class and\ncount the four outcomes of a binary decision.\n\n$$\n% caption: The confusion matrix. Precision reads down the predicted-positive\n% column; recall reads across the true-positive row.\n\\begin{tikzpicture}[font=\\footnotesize]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{green}{HTML}{1F9D4D}\n  \\definecolor{red}{HTML}{C0392B}\n  \\def\\s{2.0}\n  % cells: light tint fill + crisp colored outline (correct = green, error = red)\n  \\draw[green, very thick, fill=green!15] (0,0) rectangle (\\s,\\s);          % TN bottom-left\n  \\draw[green, very thick, fill=green!15] (\\s,\\s) rectangle (2*\\s,2*\\s);    % TP top-right\n  \\draw[red, very thick, fill=red!15]  (\\s,0) rectangle (2*\\s,\\s);         % FP bottom-right\n  \\draw[red, very thick, fill=red!15]  (0,\\s) rectangle (\\s,2*\\s);         % FN top-left\n  \\draw[black] (0,0) rectangle (2*\\s,2*\\s);\n  % cell labels (correct = green, error = red)\n  \\node[text=red]   at (0.5*\\s,1.5*\\s) {FN};\n  \\node[text=green] at (1.5*\\s,1.5*\\s) {TP};\n  \\node[text=green] at (0.5*\\s,0.5*\\s) {TN};\n  \\node[text=red]   at (1.5*\\s,0.5*\\s) {FP};\n  % axis labels (short forms; full words in the caption to dodge ligature breaks)\n  \\node[align=center] at (0.5*\\s,2*\\s+0.5) {pred.\\\\neg};\n  \\node[align=center] at (1.5*\\s,2*\\s+0.5) {pred.\\\\pos};\n  \\node[align=center, rotate=90] at (-0.55,1.5*\\s) {true\\\\pos};\n  \\node[align=center, rotate=90] at (-0.55,0.5*\\s) {true\\\\neg};\n\\end{tikzpicture}\n$$\n\nUsing these counts, we can compute three metrics that are robust against\nimbalance:[^gf-metrics]\n\n- **Precision**: how often are positive labels correct?\n- **Recall**: how many of the actual positives are correctly identified?\n- **$F_1$**: the harmonic mean of precision and recall, giving a more holistic\n  metric that punishes models that sacrifice one for the other\n\n$$\n\\text{precision} = \\frac{TP}{TP + FP},\n\\qquad\n\\text{recall} = \\frac{TP}{TP + FN},\n\\qquad\nF_1 = \\frac{2\\,PR}{P + R}.\n$$\n\nThe harmonic mean is deliberate: with precision $P$ and recall $R$,\n\n$$\nF_1 = 2\\parens{\\frac1P + \\frac1R}^{-1},\n$$\n\nwhich collapses toward the _smaller_ of the two: a model at $P = 0.99,\\ R = 0.01$\nscores $F_1 \\approx 0.02$, not the $0.50$ an arithmetic mean would award.\n\nFor example, take a disease screen run on\n$N = 10{,}000$ patients of whom $50$ actually have the disease ($p = 0.005$). A model\nflags $80$ patients as positive; of those, $40$ are true cases and $40$ are false\nalarms, so it misses $10$ real cases:\n\n$$\nTP = 40, \\quad FP = 40, \\quad FN = 10, \\quad TN = 9{,}910.\n$$\n\nIts accuracy is $(TP + TN)\u002FN = 9{,}950\u002F10{,}000 = 99.5\\%$, which sounds excellent, yet\nthe always-negative constant classifier scores $99.5\\%$ too and catches nobody. The\nerror-type metrics show the problem:\n\n$$\nP = \\frac{40}{40 + 40} = 0.50,\n\\qquad\nR = \\frac{40}{40 + 10} = 0.80,\n\\qquad\nF_1 = \\frac{2(0.50)(0.80)}{0.50 + 0.80} \\approx 0.615.\n$$\n\nRecall of $0.80$ says the model catches four of every five true cases; precision of\n$0.50$ says half its alarms are false. Whether that trade is acceptable depends on the\ndownstream cost, a missed case versus a needless follow-up test, and no single scalar\ndecides it for you. The right metric is dictated by the cost structure of the goal.\n\n| Metric | Definition | When it is the right choice |\n| --- | --- | --- |\n| Accuracy | $(TP+TN)\u002FN$ | balanced classes, symmetric error costs |\n| Precision | $TP\u002F(TP+FP)$ | false positives are expensive (spam filter flags real mail) |\n| Recall | $TP\u002F(TP+FN)$ | false negatives are expensive (missed tumor, fraud) |\n| $F_1$ | $2PR\u002F(P+R)$ | imbalanced data, both errors matter |\n| PR-AUC | area under precision–recall curve | imbalanced data, threshold not yet fixed |\n| ROC-AUC | area under TPR–FPR curve | ranking quality, roughly balanced classes |\n| Coverage | fraction the model is allowed to answer | a system may _decline_ to predict when unsure |\n\nPrecision and recall trade off against each other as the decision **threshold**\n$t$ on the score $\\hat y = p(\\text{positive} \\mid x)$ moves. Sweeping $t$ from $1$\ndown to $0$ traces a curve; its summary, the area underneath, is threshold-free.\n\n$$\n% caption: The precision–recall curve, swept by the decision threshold $t$: raising\n% $t$ trades recall for precision, and PR-AUC summarizes the whole curve.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  \\draw[->, thick] (0,0) -- (5.4,0) node[right, font=\\footnotesize] {recall};\n  \\draw[->, thick] (0,0) -- (0,4.0) node[above, font=\\footnotesize] {precision};\n  \\node[font=\\footnotesize, anchor=east] at (-0.05,3.5) {1};\n  \\node[font=\\footnotesize, anchor=north] at (5.0,-0.05) {1};\n  \\draw[black, dashed] (0,3.5) -- (5.0,3.5);\n  \\draw[black, dashed] (5.0,0) -- (5.0,3.5);\n  % PR curve: high precision at low recall, decays as recall rises\n  \\draw[acc, very thick] plot[domain=0.1:5.0, samples=60]\n    (\\x, {3.5*(1.02 - 0.16*(\\x\u002F5.0) - 0.78*(\\x\u002F5.0)^4)});\n  \\node[acc, anchor=south west, font=\\footnotesize] at (1.4,2.55) {PR curve};\n  % operating point (label placed in open area below-right, short leader to the dot)\n  \\fill[red] (3.0,{3.5*(1.02 - 0.16*0.6 - 0.78*0.6^4)}) circle (2.6pt);\n  \\draw[red] (3.0,{3.5*(1.02 - 0.16*0.6 - 0.78*0.6^4)}) -- (3.6,1.7);\n  \\node[red, anchor=west, font=\\scriptsize] at (3.6,1.55) {operating point};\n  % threshold arrows (labels placed clear of the arrow segments)\n  \\draw[->, black] (1.0,0.4) -- (0.55,1.25);\n  \\node[font=\\scriptsize, text=black, anchor=west] at (1.05,0.45) {raise $t$};\n  \\draw[->, black] (4.0,0.95) -- (4.5,0.35);\n  \\node[font=\\scriptsize, text=black, anchor=east] at (3.95,0.95) {lower $t$};\n\\end{tikzpicture}\n$$\n\n## Default baseline models\n\nWith a metric chosen, build the simplest system that could plausibly work. A strong\nbaseline both establishes the number to beat and tells you whether the problem is\neven tractable with the data on hand. The sensible first choice is dictated by the\ninput type.\n\n| Data type | Default architecture | Default optimizer |\n| --- | --- | --- |\n| Fixed-size vectors | feedforward MLP, fully connected | SGD + momentum, or Adam |\n| Images \u002F grid topology | convolutional network with residual connections | SGD + momentum, or Adam |\n| Sequences \u002F time series | gated RNN (LSTM\u002FGRU) or a Transformer | Adam |\n| Text \u002F language | Transformer with pretrained embeddings | Adam with warmup |\n| Tabular, small $n$ | regularized linear model or gradient-boosted trees | closed-form \u002F coordinate descent |\n\n> **Remark (Reasonable defaults).** Goodfellow's standing recommendations:\n> piecewise-linear units (ReLU and its variants) as the activation; SGD with\n> momentum and a decaying learning rate, or Adam, as the optimizer; batch\n> normalization for convolutional nets; and mild regularization: early stopping\n> almost always, dropout where the model overfits.\n\n> **Definition (Strong baseline).** A simple, well-understood model run with sane\n> defaults, serving as the reference the metric must beat. Its value is diagnostic:\n> if even a tuned exotic model cannot improve on it, the bottleneck is the _data_\n> or the _problem framing_, not the architecture.\n\nResist the urge to start exotic. If a known result exists for a similar task, copy\nits architecture and optimizer wholesale; reproducing a published baseline before\ninnovating is the fastest path to a trustworthy number.\n\n## Whether to gather more data\n\nAfter the baseline runs, the most consequential decision is whether to collect more\ndata (often expensive) or to change the model. The diagnosis is read directly off\ntwo numbers: training error and validation error. This is the\n[bias–variance decomposition](\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher)\napplied in practice.\n\n> **Definition (The gap diagnosis).** Let $E_{\\text{train}}$ and $E_{\\text{val}}$\n> be the training and validation errors, and $E^\\star$ the target. **High training\n> error** ($E_{\\text{train}} \\gg E^\\star$) is _underfitting_: the model lacks\n> capacity or is poorly optimized. A **large gap** ($E_{\\text{val}} \\gg\n> E_{\\text{train}}$) is _overfitting_: the model memorizes and needs more data\n> or stronger regularization.\n\nThe two failure modes call for opposite remedies, and confusing them wastes the\nmost resources. More data cannot fix underfitting; a bigger model cannot fix\noverfitting.[^gf-gap]\n\n| Symptom | Diagnosis | Remedy |\n| --- | --- | --- |\n| $E_{\\text{train}}$ high | underfitting (bias) | bigger model, train longer, better optimizer, fewer constraints |\n| $E_{\\text{train}}$ low, gap large | overfitting (variance) | more data, regularize, data augmentation, smaller model |\n| both acceptable, $E_{\\text{val}}$ still short | irreducible \u002F framing | new features, new metric, reconsider the goal |\n\nPlotting error against the size of the\ntraining set separates the two regimes: high-bias curves converge high and close\ntogether; high-variance curves leave a persistent gap that more data would narrow.\n\n$$\n% caption: Learning-curve diagnosis. Left: high bias, curves converge high and more\n% data will not help. Right: high variance, a wide gap that more data closes.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  % ===== left panel: high bias =====\n  \\begin{scope}\n    \\draw[->, thick] (0,0) -- (4.4,0) node[right, font=\\scriptsize] {train size};\n    \\draw[->, thick] (0,0) -- (0,3.4) node[above, font=\\scriptsize] {error};\n    % validation: decreasing toward a high plateau\n    \\draw[red, very thick] plot[domain=0.4:4.0, samples=40] (\\x, {1.7 + 1.3*exp(-1.4*\\x)});\n    % train: increasing toward the same high plateau\n    \\draw[acc, very thick] plot[domain=0.4:4.0, samples=40] (\\x, {1.7 - 0.9*exp(-1.4*\\x)});\n    \\draw[black, dashed] (0,0.7) -- (4.0,0.7) node[right, font=\\scriptsize, black] {target};\n    \\node[red, font=\\scriptsize, anchor=west] at (2.2,2.0) {val};\n    \\node[acc, font=\\scriptsize, anchor=west] at (2.2,1.35) {train};\n    \\node[font=\\scriptsize, anchor=south] at (2.0,3.0) {high bias};\n  \\end{scope}\n  % ===== right panel: high variance =====\n  \\begin{scope}[xshift=6.4cm]\n    \\draw[->, thick] (0,0) -- (4.4,0) node[right, font=\\scriptsize] {train size};\n    \\draw[->, thick] (0,0) -- (0,3.4) node[above, font=\\scriptsize] {error};\n    % validation: high, slowly decreasing\n    \\draw[red, very thick] plot[domain=0.4:4.0, samples=40] (\\x, {0.9 + 1.7*exp(-0.7*\\x)});\n    % train: very low, slowly increasing\n    \\draw[acc, very thick] plot[domain=0.4:4.0, samples=40] (\\x, {0.35 + 0.3*exp(-1.0*\\x)});\n    \\draw[black, dashed] (0,0.7) -- (4.0,0.7) node[right, font=\\scriptsize, black] {target};\n    \\node[red, font=\\scriptsize, anchor=west] at (2.3,2.1) {val};\n    \\node[acc, font=\\scriptsize, anchor=north west] at (2.6,0.35) {train};\n    \\node[font=\\scriptsize, anchor=south] at (2.0,3.0) {high variance};\n    % gap brace\n    \\draw[\u003C->, black] (1.2,0.45) -- (1.2,2.05);\n    \\node[font=\\scriptsize, text=black, anchor=east] at (1.15,1.25) {gap};\n  \\end{scope}\n\\end{tikzpicture}\n$$\n\n> **Remark (Estimating the data needed).** Generalization error typically falls as\n> a power law in the number of examples $m$, so doubling data buys a predictable,\n> diminishing gain. Plot validation error against $\\log m$ on the data you _have_,\n> fit the trend, and extrapolate to estimate how many examples reach $E^\\star$\n> before committing to an expensive collection effort.\n\nThe extrapolation is worth doing arithmetically before spending a data-collection\nbudget. Suppose the error follows $E(m) = a\\, m^{-\\alpha}$, and you measure\n$E = 0.20$ at $m = 10{,}000$ and $E = 0.14$ at $m = 40{,}000$. The exponent comes from\nthe ratio,\n\n$$\n\\frac{0.14}{0.20} = \\parens{\\frac{40{,}000}{10{,}000}}^{-\\alpha}\n\\;\\Longrightarrow\\;\n\\alpha = -\\frac{\\log(0.70)}{\\log 4} \\approx 0.257.\n$$\n\nTo hit a target $E^\\star = 0.10$ from the $m = 10{,}000$ anchor you need\n\n$$\nm^\\star = 10{,}000 \\parens{\\frac{0.20}{0.10}}^{1\u002F\\alpha}\n= 10{,}000 \\cdot 2^{3.9} \\approx 1.5 \\times 10^5,\n$$\n\nso reaching $10\\%$ error costs roughly fifteen times the current data. That number is\nwhat decides whether to label more examples or to change the model instead, and it is\nfar cheaper to estimate than to discover after a failed collection round.\n\n## The data pipeline\n\nMore data helps only if the path from raw examples to the network delivers them\ncorrectly, and this path is where a large share of real bugs hide. A subtle\npreprocessing error, normalizing with the wrong statistics, leaking test labels into\ntraining, shuffling images but not their labels, corrupts every gradient the model\never sees, yet training loss may still fall because the network fits the\ncorrupted signal anyway. The pipeline deserves the same scrutiny as the model.\n\n$$\n% caption: A standard training data pipeline. Normalization statistics\n% $(\\mu, \\sigma)$ are computed on the training split ONLY and reused for validation\n% and test; augmentation is applied to training batches only.\n\\begin{tikzpicture}[>=stealth, font=\\footnotesize,\n  st\u002F.style={draw, minimum width=20mm, minimum height=9mm, align=center, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\definecolor{red}{HTML}{C0392B}\n  \\node[st] (raw)  at (0,0)   {raw data};\n  \\node[st] (split) at (2.7,0) {\\texttt{split}\\\\train\u002F\\texttt{val}\u002Ftest};\n  \\node[st, draw=acc, text=acc] (norm) at (5.7,0) {\\texttt{normalize}\\\\(mu, sig)};\n  \\node[st] (aug)  at (8.6,0)  {\\texttt{augment}\\\\(train only)};\n  \\node[st] (batch) at (11.3,0) {\\texttt{batch} +\\\\\\texttt{shuffle}};\n  \\node[st, draw=acc, text=acc] (model) at (11.3,-2.2) {\\texttt{model}};\n  \\draw[->, acc, thick] (raw) -- (split);\n  \\draw[->, acc, thick] (split) -- (norm);\n  \\draw[->, acc, thick] (norm) -- (aug);\n  \\draw[->, acc, thick] (aug) -- (batch);\n  \\draw[->, acc, thick] (batch) -- (model);\n  % stats fit on train, reused downstream\n  \\node[st, fill=black!5] (fit) at (5.7,2.0) {\\texttt{fit} stats\\\\on train};\n  \\draw[->, red, thick] (split.north) .. controls (3.4,2.0) .. (fit.west)\n    node[pos=0.5, above, font=\\footnotesize] {train \\texttt{split}};\n  \\draw[->, red, thick] (fit) -- (norm) node[midway, right, font=\\scriptsize] {reuse};\n\\end{tikzpicture}\n$$\n\nTwo rules govern this pipeline, and both prevent a specific and common failure.\nNormalization statistics, the per-feature mean $\\mu$ and standard deviation $\\sigma$\nused to standardize inputs to zero mean and unit variance, must be estimated on the\n**training split alone** and then reused verbatim on validation and test. Fitting them\non the full dataset lets information about the test distribution leak backward into\ntraining, inflating the reported score above what deployment will deliver. Second,\n**augmentation is a training-only transformation**: random crops, flips, color jitter,\nand additive noise expand the effective training set and act as a regularizer, but\nvalidation and test must see clean, canonical inputs so the metric measures real\ngeneralization rather than luck on a random crop.\n\n> **Definition (Data augmentation).** Label-preserving transformations applied to\n> training inputs to enlarge the effective dataset. For an image classifier, a\n> horizontal flip, a small rotation, or a random crop yields a new example the model\n> has not seen while leaving the label unchanged. Augmentation is the cheapest\n> regularizer available when data is scarce, and it directly addresses the variance\n> half of the gap diagnosis.\n\nThe transformation must preserve the label, and that is domain-specific. A horizontal\nflip is safe for a cat photo but destroys a photo of a printed digit, where it turns a\n$2$ into a mirror image that is no digit at all, and it flips left and right in a\nself-driving scene. Choose augmentations that respect the invariances the task\nactually has, not a generic recipe.\n\n## Scaling laws turn the gap diagnosis quantitative\n\nGoodfellow's power-law remark — that generalization error falls predictably with data\n— was sharpened into a design tool by the **neural scaling laws** literature. Hestness\net al. (2017, arXiv) and then Kaplan et al. (2020, arXiv, _Scaling Laws for Neural\nLanguage Models_) measured loss across orders of magnitude of data, parameters, and\ncompute and found it follows power laws over a wide range,\n\n$$\nL(N) \\approx \\parens{\\frac{N_c}{N}}^{\\alpha_N},\n\\qquad\nL(D) \\approx \\parens{\\frac{D_c}{D}}^{\\alpha_D},\n$$\n\nwhere $N$ is parameter count, $D$ dataset size, and the exponents $\\alpha$ are small\n(often $\\approx 0.05$–$0.1$ for language). Straight lines on a log–log plot mean the\nextrapolation from the \"estimating the data needed\" remark is a fit rather than a\nheuristic: measure two points, read the slope, predict the third.\n\nThe refinement that matters for the gather-more-data decision is **compute-optimal\nallocation**. Hoffmann et al. (2022, _NeurIPS_, the \"Chinchilla\" paper) showed that,\nfor a fixed compute budget, most large models were badly _over-parameterized and\nunder-trained_: the optimum scales $N$ and $D$ together in roughly equal proportion,\nso a model half the size trained on twice the data beats it at the same cost. That is\nthe gap diagnosis at industrial scale — the bottleneck was data, not capacity, exactly\nthe reading the train\u002Fvalidation gap prescribes, now made quantitative enough to size a\ntraining run before launching it. The practitioner's lesson is unchanged from the loop\nabove: measure, diagnose, then spend the next unit of budget where the diagnosis points.\n\n## Takeaways\n\n- **Methodology beats novelty.** A standard algorithm applied with discipline (fix a\n  metric, build an end-to-end baseline, instrument, iterate on a diagnosis)\n  outperforms an exotic algorithm applied carelessly. Every learned model must first\n  clear a common-sense baseline that uses no learning at all.\n- **Choose the metric to match the goal.** Accuracy collapses under class imbalance;\n  precision, recall, $F_1$, and the PR\u002FROC curves separate the error types so the\n  threshold can be set by the real cost structure. The $F_1$ harmonic mean collapses\n  toward the smaller of precision and recall, punishing a model that sacrifices one.\n- **Start with a strong, type-appropriate baseline** (MLP for vectors, CNN for\n  images, gated RNN or Transformer for sequences) using reasonable defaults (ReLU,\n  Adam or SGD+momentum, early stopping). If a tuned exotic model cannot beat it, the\n  bottleneck is the data or the framing, not the architecture.\n- **Let the train\u002Fvalidation gap pick the next move.** High training error means\n  underfitting (bigger model, better optimization); a large gap means overfitting\n  (more data, regularization). More data never fixes bias. Fit the learning curve's\n  power law to estimate how many examples reach the target before paying to collect them.\n- **Guard the data pipeline.** Fit normalization statistics on the training split\n  only, apply augmentation to training batches only, and pick label-preserving\n  transforms that match the task's real invariances — a horizontal flip is safe for a\n  cat but destroys a printed digit.\n\nThis continues in\n[Hyperparameters and Debugging](\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging),\nwhich picks up the tuning half of the loop: the learning rate as the dominant\nhyperparameter, random search over grid, an ordered debugging playbook, and monitoring\nfor drift after deployment.\n\n[^gf-method]: **Goodfellow**, _Deep Learning_, Ch. 11 — Practical Methodology: the recommended iterate-to-target design loop, and the thesis that disciplined application of a standard method beats careless use of a novel one.\n[^chollet-workflow]: **Chollet**, _Deep Learning with Python_, §4.5 — The Universal Workflow of Machine Learning: stand up an end-to-end baseline that beats a common-sense reference before tuning anything in the abstract.\n[^gf-metrics]: **Goodfellow**, _Deep Learning_, §11.1 — Performance Metrics: accuracy's failure under class imbalance and the precision\u002Frecall\u002F$F_1$ family that scores the two error types separately.\n[^gf-gap]: **Goodfellow**, _Deep Learning_, §11.3 \u002F §5.2 — Determining Whether to Gather More Data: read the train\u002Fvalidation gap as bias versus variance, since more data fixes overfitting but never underfitting.\n",{"text":5732,"minutes":5733,"time":5734,"words":5735},"12 min read",11.165,669900,2233,{"title":5,"description":5719},[5738,5740,5742],{"book":5599,"ref":5739},"Ch. 11 — Practical Methodology; §11.1 Performance Metrics",{"book":5599,"ref":5741},"§5.2 Capacity, Overfitting, Underfitting; §11.3 Whether to Gather More Data",{"book":5617,"ref":5743},"Ch. 4 — Fundamentals of Machine Learning; §4.5 The Universal Workflow","available","06.deep-learning\u002F09.practical\u002F01.practical-methodology","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",[5726],"dx0KoDmAZDPLYaGyPwXhhCs067tuP_zOGtnfWHkJCYc",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":5750,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":5751,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":5752,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":5753,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":5754,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":5755,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":5756,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":5757,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":5758,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":5759,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":5760,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":5761,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":5762,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":5763,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":5764,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":5765,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":5766,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":5767,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":5768,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":5769,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":5770,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":5771,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":5772,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":5773,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":5774,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":5775,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":5776,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":5777,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":5778,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":5779,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":5780,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":5781,"\u002Falgorithms\u002Fsequences\u002Ftries":5782,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":5783,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":5784,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":5785,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":5786,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":5787,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":5788,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":5789,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":5790,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":5791,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":5792,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":5793,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":5794,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":5795,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":5796,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":5797,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":5798,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":5799,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":5800,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":5801,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":5802,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":5803,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":5804,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":5805,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":5806,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":5807,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":5808,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":5809,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":5810,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":5811,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":5812,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":5813,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":5814,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":5815,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":5816,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":5817,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":5818,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":5819,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":5820,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":5821,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":5822,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":5823,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":5824,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":5825,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":5826,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":5827,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":5828,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":5829,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":5830,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":5831,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":5832,"\u002Falgorithms":5833,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":5834,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":5835,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":5836,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":5837,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":5838,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":5839,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":5840,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":5841,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":5842,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":5843,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":5844,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":5845,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":5846,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":5847,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":5848,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":5849,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":5850,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":5851,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":5852,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":5853,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":5854,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":5855,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":5856,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":5857,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":5858,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":5859,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":5860,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":5861,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":5862,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":5863,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":5864,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":5865,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":5866,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":5867,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":5848,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":5868,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":5869,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":5870,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":5838,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":5871,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":5872,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":5873,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":5874,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":5875,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":5876,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":5877,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":5878,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":5879,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":5880,"\u002Fcalculus":5881,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":5882,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":5883,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":5884,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":5885,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":5886,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":5887,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":5888,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":5889,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":5890,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":5891,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":5892,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":5893,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":5894,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":5895,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":5896,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":5897,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":5898,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":5899,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":5900,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":5901,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":5902,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":5903,"\u002Fmechanics\u002Frotation\u002Frolling-motion":5904,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":5905,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":5906,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":5907,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":5908,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":5909,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":5910,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":5911,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":5912,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":5913,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":5914,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":5915,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":5916,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":5917,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":5918,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":5919,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":5920,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":5921,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":5922,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":5923,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":5924,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":5925,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":5926,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":5927,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":5928,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":5929,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":5930,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":5931,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":5932,"\u002Fmechanics":5933,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":5934,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":5935,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":5936,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":5937,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":5938,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":5939,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":5940,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":5941,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":5942,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":5943,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":5944,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":5945,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":5922,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":5946,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":5947,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":5948,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":5918,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":5783,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":5949,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":5909,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":5950,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":5951,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":5952,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":5953,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":5954,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":5955,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":5956,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":5957,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":5958,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":5883,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":5959,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":5960,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":5961,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":5962,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":5963,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":5964,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":5965,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":5966,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":5901,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":5900,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":5967,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":5968,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":5969,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":5970,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":5971,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":5972,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":5973,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":5974,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":5975,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":5927,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":5925,"\u002Felectricity-and-magnetism":5976,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":5977,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":5978,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":5979,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":5980,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":5981,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":5982,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":5983,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":5984,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":5985,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":5835,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":5986,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":5987,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":5839,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":5988,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":5989,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":5990,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":5991,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":5992,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":5993,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":5994,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":5995,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":5996,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":5997,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":5998,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":5999,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":6000,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":6001,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":6002,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":6003,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":6004,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":6005,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":6006,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":6007,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":5874,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":6008,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":6009,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":6010,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":6011,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":6012,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":6013,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":6014,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":6015,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":6016,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":6017,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":6018,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":6019,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":6020,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":6021,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":6022,"\u002Flinear-algebra":6023,"\u002Ftheory-of-computation":6024,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":6025,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":6026,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":6027,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":6028,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":6029,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":6030,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":6031,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":6032,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":6033,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":6034,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":6035,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":6036,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":6037,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":6038,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":6039,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":6040,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":6041,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":6042,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":6043,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":6044,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":6045,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":6046,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":6047,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":6048,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":6049,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":6050,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":6051,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":6052,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":6053,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":5735,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":6054,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":6055,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":6056,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":6057,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":6058,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":6059,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":6060,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":6061,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":6062,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":6063,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":6064,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":6065,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":6066,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":6067,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":6068,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":6069,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":6070,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":6071,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":6072,"\u002Fcomputer-architecture":6024,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":6073,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":6074,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":6075,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":5839,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":6076,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":5838,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":5845,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":6077,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":6078,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":5879,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":6079,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":6080,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":6081,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":6082,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":6083,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":6084,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":6085,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":6086,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":6087,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":6088,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":6089,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":6090,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":6085,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":6091,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":6092,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":6093,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":6094,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":6095,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":6096,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":6097,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":6098,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":6099,"\u002Fdifferential-equations":6100,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":6101,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":6102,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":6103,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":6104,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":5984,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":6105,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":6106,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":6107,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":6108,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":6109,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":6110,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":5854,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":6111,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":6112,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":6113,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":6114,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":6115,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":6116,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":6117,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":6118,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":6119,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":6120,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":6075,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":6121,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":6122,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":6123,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":6124,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":6125,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":6005,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":6126,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":6127,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":6015,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":6128,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":6129,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":6130,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":6131,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":6132,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":6133,"\u002Frelativity":6134,"\u002Fphysical-computing":6024,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":6135,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":6114,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":6136,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":6137,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":6138,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":6139,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":6140,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":6141,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":6142,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":6090,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":6015,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":6143,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":6144,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":6145,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":6146,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":6142,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":6147,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":6122,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":5876,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":6148,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":6149,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":5856,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":6150,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":6151,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":6152,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":6153,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":6154,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":6155,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":6156,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":6157,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":6158,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":6114,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":6159,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":6160,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":6161,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":6148,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":5837,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":6162,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":6163,"\u002Fquantum-mechanics":6164,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":6098,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":6165,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":6166,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":5988,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":6167,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":5874,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":6168,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":6169,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":6011,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":6120,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":6170,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":6171,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":6172,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":6173,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":6174,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":6147,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":6175,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":5981,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":6176,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":6177,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":5835,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":6178,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":6179,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":6136,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":5864,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":6015,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":6180,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":6181,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":6000,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":6124,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":6182,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":6183,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":6184,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":6020,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":6185,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":6186,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":6187,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":6187,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":6188,"\u002Freal-analysis":6189,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":6190,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":6191,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":6192,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":6193,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":6194,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":6195,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":6196,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":6197,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":6198,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":6199,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":6163,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":6200,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":6192,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":6109,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":6201,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":6202,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":6203,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":6204,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":6205,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":6206,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":6207,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":6208,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":6202,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":6209,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":6178,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":6210,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":6211,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":6212,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":6213,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":6214,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":6215,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":6216,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":6217,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":6218,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":6219,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":5853,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":6220,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":6221,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":6094,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":6222,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":6223,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":6151,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":6223,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":6224,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":6225,"\u002Fabstract-algebra":6226,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":6227,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":6228,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":6229,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":6230,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":6231,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":6143,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":6232,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":6233,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":6234,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":6235,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":6236,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":6237,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":6238,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5978,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":6106,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5853,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":6239,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5837,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":6240,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":6241,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5875,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":6168,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":6242,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":6243,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":6244,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":6245,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":6246,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":6247,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":6248,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":6249,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":6250,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":6251,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":6252,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":6253,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":6254,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":6255,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":6199,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":6256,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":6257,"\u002Fatomic-physics":6258,"\u002Fdatabases":6024,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":6259,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":6260,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":6261,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":6190,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":6262,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":6263,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":6264,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":6265,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":6266,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":6267,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":6268,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":6269,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":6270,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":6271,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":6272,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":6273,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":6274,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":6275,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":6276,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":6277,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":6278,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":6279,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":6280,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":6281,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":6272,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":6282,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":6283,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":6284,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":6285,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":6286,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":6231,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":6287,"\u002Fcategory-theory":6288,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":6289,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":6290,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":6291,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":6292,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":6293,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":6294,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":6253,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":6295,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":6296,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":6297,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":6298,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":6299,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":6300,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":6301,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":6302,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":6303,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":6304,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":6305,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":6306,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":6307,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":6308,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":6309,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":6310,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":6311,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":6312,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":6313,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":6314,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":6315,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":6316,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":6317,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":6318,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":6319,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":6320,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":6321,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":6265,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":6322,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":6323,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":6324,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":6325,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":6326,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":6327,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":6328,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5818,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":6329,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":6330,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5735,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":6331,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":6332,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":6333,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":6334,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":6335,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":6336,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":6337,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":6338,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":6339,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":6340,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":6341,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":6342,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":6027,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":6343,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":6344,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":6345,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":6346,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":6063,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":6347,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":6348,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":6349,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":6350,"\u002Fdeep-learning":6024,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":6351,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":6148,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":6352,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":6353,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":6354,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":6355,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":6356,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":6357,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":6358,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":6359,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":6195,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":6360,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":6361,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":6362,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":6082,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5876,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":6363,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":6364,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":6365,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":6010,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":6366,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":6367,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":6087,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":6015,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":6368,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5984,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5854,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5870,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":6369,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":6370,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":6371,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":6002,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":6372,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5864,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":6373,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":6374,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":6375,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":6376,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":6197,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":6377,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":6378,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":6379,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":6380,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":6143,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":6381,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":6121,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":6382,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5983,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":6383,"\u002Fstatistical-mechanics":6384,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":6385,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5849,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":6108,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":6386,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":6387,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":6388,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":6389,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":6390,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":6391,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5982,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":6392,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":6393,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":6394,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":6395,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":6124,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":6396,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":6397,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":6398,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":6399,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":6400,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":6179,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":6123,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":6401,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":6402,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":6403,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":6404,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":6114,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":6405,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":6406,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":6351,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":6251,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5979,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":6407,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5845,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":6408,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":6409,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5990,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":6410,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":6244,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6411,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":5837,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6412,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":5848,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6413,"\u002Fcondensed-matter":6164,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6414,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6415,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6416,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6417,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":5862,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6418,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6419,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":5862,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6420,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6274,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6421,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6422,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6423,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6421,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6424,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6425,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6426,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6427,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6428,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6429,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6430,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6431,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6352,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6432,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6425,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6433,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6434,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6067,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6435,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6252,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6436,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6437,"\u002Flogic":6438,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6439,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6440,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":5735,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6441,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6442,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6443,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6444,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6434,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6445,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6446,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6447,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6345,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6448,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6449,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6450,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6451,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6452,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6070,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6453,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6454,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6455,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6456,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6261,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6457,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6433,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6458,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6459,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6460,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6081,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6461,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6211,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6462,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6463,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6044,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6464,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6465,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6466,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6467,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6468,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6321,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6469,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6470,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6471,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6356,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6472,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6473,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6474,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6070,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6137,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6475,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6476,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6477,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6478,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6479,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6480,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6481,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6482,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6483,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6484,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6485,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6486,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6487,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6488,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6489,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6490,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6491,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6492,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6493,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6494,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6495,"\u002Freinforcement-learning":6024,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6496,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6497,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6498,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6499,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6500,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6501,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6502,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6503,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6504,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6505,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6506,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6507,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6508,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6350,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6205,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6509,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6510,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6511,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6512,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6513,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6514,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6332,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6515,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6516,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6517,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6518,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6519,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6520,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6521,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6522,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6523,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6524,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6525,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6526,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6264,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6516,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6527,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":5805,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6528,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6529,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6530,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6531,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6532,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6313,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6533,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6534,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6535,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6536,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6537,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6538,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6539,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6540,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6541,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6542,"\u002Fartificial-intelligence":6024,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6280,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6543,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":5841,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":5839,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6374,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6544,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":5867,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6176,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":5725,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6545,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6546,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6236,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6547,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6548,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6549,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6435,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6550,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6551,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":5851,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6079,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6552,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6180,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6553,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6554,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6075,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6163,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6555,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6556,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6557,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":5846,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6220,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6082,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6558,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6130,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6194,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6559,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6560,"\u002Fnuclear-physics":6561,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6562,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6563,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6201,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6564,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6565,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6566,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6050,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6567,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6568,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6346,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6569,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6515,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6570,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6571,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6572,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6573,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6574,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6575,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6576,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6028,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6577,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6578,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6521,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6579,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6580,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6581,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6582,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6583,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6584,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6585,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6586,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6445,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6587,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6588,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6589,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6590,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6591,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6592,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6593,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6594,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6595,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6596,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":6597,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":6598,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":6299,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":6466,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":6055,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":6599,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":6600,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":6601,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":6602,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":6313,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":6603,"\u002Fnatural-language-processing":6024,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":6604,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":6221,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":6605,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":6366,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":6606,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":6607,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":6555,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":6608,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":6609,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":6171,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":5874,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":6610,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":6125,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":6611,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":6158,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":6612,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":6412,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":6613,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":6614,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":6381,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":6615,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":5845,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":6616,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":6617,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":6618,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":6162,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":6378,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":6619,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":6620,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":6237,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":6621,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":6282,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":6622,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":6623,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":6171,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":6204,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":6624,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":6625,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":6626,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":6260,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":6627,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":6002,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":6628,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":6104,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":6629,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":6630,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":6428,"\u002Fparticle-physics":6631,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":6222,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":6376,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":6632,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":6161,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":6633,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":6221,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":6133,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":6634,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":6635,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":6636,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":6637,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":6638,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":6427,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":6358,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":6639,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":6640,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":6641,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":6642,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":6554,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":6643,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":6117,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":6180,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":6162,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":6644,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":6246,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":5863,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":6645,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":6646,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":6377,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":6647,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":6648,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":6649,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":6650,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":5844,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":6651,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":6652,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":6104,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":6653,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":6654,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":6370,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":6026,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":6655,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":6656,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":6282,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":6268,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":6280,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":6377,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":6657,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":5843,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":6035,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":6658,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":6121,"\u002Fastrophysics-cosmology":6226,"\u002Fcolophon":6659,"\u002F":6024},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,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,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":6661,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":6666,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":6670,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":6674,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":6678,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":6682,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":6686,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":6691,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":6695,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":6699,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":6703,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":6708,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":6712,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":6716,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":6720,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":6725,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":6729,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":6733,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":6737,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":6741,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":6745,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":6749,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":6753,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":6757,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":6761,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":6765,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":6769,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":6774,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":6778,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":6782,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":6786,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":6790,"\u002Falgorithms\u002Fsequences\u002Ftries":6794,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":6798,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":6802,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":6807,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":6811,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":6815,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":6819,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":6823,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":6827,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":6831,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":6835,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":6839,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":6843,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":6847,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":6851,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":6855,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":6859,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":6864,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":6868,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":6872,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":6876,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":6880,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":6885,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":6889,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":6893,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":6897,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":6901,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":6905,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":6909,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":6913,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":6917,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":6921,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":6925,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":6930,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":6934,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":6938,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":6942,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":6947,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":6951,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":6955,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":6959,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":6963,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":6967,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":6971,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":6976,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":6980,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":6984,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":6988,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":6993,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":6997,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":7001,"\u002Falgorithms":7005,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":7008,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":7013,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":7017,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":7021,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":7025,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":7030,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":7034,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":7038,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":7042,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":7047,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":7051,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":7055,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":7059,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":7064,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":7068,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":7072,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":7077,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":7081,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":7085,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":7090,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":7094,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":7098,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":7103,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":7107,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":7111,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":7115,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":7120,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":7124,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":7128,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":7133,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":7137,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":7141,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":7145,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":7149,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":7154,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":7158,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":7162,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":7166,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":7170,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":7175,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":7178,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":7182,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":7186,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":7190,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":7195,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":7199,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":7203,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":7207,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":7211,"\u002Fcalculus":7215,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":7218,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":7222,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":7226,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":7231,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":7235,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":7239,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":7243,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":7247,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":7252,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":7256,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":7260,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":7264,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":7268,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":7273,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":7277,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":7281,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":7285,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":7289,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":7294,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":7298,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":7302,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":7307,"\u002Fmechanics\u002Frotation\u002Frolling-motion":7311,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":7315,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":7319,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":7323,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":7327,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":7332,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":7336,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":7340,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":7344,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":7348,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":7352,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":7356,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":7361,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":7365,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":7369,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":7373,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":7377,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":7381,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":7385,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":7389,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":7393,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":7397,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":7401,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":7405,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":7410,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":7414,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":7418,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":7422,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":7426,"\u002Fmechanics":7430,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":7433,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":7438,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":7442,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":7446,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":7450,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":7454,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":7459,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":7463,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":7468,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":7472,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":7476,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":7480,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":7484,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":7489,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":7493,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":7497,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":7501,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":7506,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":7510,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":7514,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":7519,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":7523,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":7527,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":7531,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":7535,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":7540,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":7544,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":7548,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":7552,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":7556,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":7560,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":7565,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":7569,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":7573,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":7577,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":7581,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":7585,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":7589,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":7593,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":7598,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":7602,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":7606,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":7610,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":7614,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":7619,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":7623,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":7627,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":7631,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":7635,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":7640,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":7644,"\u002Felectricity-and-magnetism":7648,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":7651,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":7656,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":7660,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":7664,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":7668,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":7672,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":7677,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":7681,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":7685,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":7689,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":7693,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":7698,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":7702,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":7706,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":7711,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":7715,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":7719,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":7723,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":7727,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":7731,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":7735,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":7740,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":7744,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":7748,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":7752,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":7756,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":7760,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":7764,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":7769,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":7773,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":7777,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":7781,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":7785,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":7789,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":7794,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":7798,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":7802,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":7806,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":7810,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":7815,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":7819,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":7823,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":7827,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":7831,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":7835,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":7840,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":7844,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":7848,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":7852,"\u002Flinear-algebra":7856,"\u002Ftheory-of-computation":7859,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":7862,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":7866,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":7870,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":7874,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":7878,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":7882,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":7887,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":7891,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":7895,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":7899,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":7903,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":7907,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":7911,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":7916,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":7920,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":7924,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":7928,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":7932,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":7937,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":7941,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":7945,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":7949,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":7953,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":7958,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":7962,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":7966,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":7970,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":7974,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":7979,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":7983,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":7987,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":7991,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":7995,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":8000,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":8004,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":8008,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":8012,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":8016,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":8021,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":8025,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":8029,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":8034,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":8038,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":8043,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":8047,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":8051,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":8055,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":8059,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":8064,"\u002Fcomputer-architecture":8068,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":8071,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":8075,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":8079,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":8084,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":8088,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":8092,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":8096,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":8100,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":8104,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":8109,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":8113,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":8117,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":8121,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":8125,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":8129,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":8134,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":8138,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":8142,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":8147,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":8151,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":8156,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":8160,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":8164,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":8169,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":8173,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":8178,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":8182,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":8186,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":8191,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":8195,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":8199,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":8204,"\u002Fdifferential-equations":8208,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":8211,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":8216,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":8220,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":8224,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":8228,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":8232,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":8237,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":8241,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":8245,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":8249,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":8254,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":8258,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":8262,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":8266,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":8271,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":8275,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":8279,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":8283,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":8288,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":8292,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":8296,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":8300,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":8304,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":8308,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":8313,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":8317,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":8321,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":8326,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":8330,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":8334,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":8338,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":8343,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":8347,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":8351,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":8356,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":8360,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":8364,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":8369,"\u002Frelativity":8373,"\u002Fphysical-computing":8376,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":8379,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":8384,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":8388,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":8392,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":8396,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":8401,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":8405,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":8409,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":8414,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":8418,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":8422,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":8426,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":8430,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":8434,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":8439,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":8443,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":8447,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":8451,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":8455,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":8459,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":8464,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":8468,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":8472,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":8476,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":8480,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":8484,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":8488,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":8493,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":8497,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":8501,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":8506,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":8510,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":8514,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":8519,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":8523,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":8528,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":8532,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":8536,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":8540,"\u002Fquantum-mechanics":8544,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":8547,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":8552,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":8556,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":8560,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":8564,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":8569,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":8573,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":8577,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":8581,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":8585,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":8589,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":8594,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":8598,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":8602,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":8606,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":8610,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":8614,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":8618,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":8622,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":8626,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":8630,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":8634,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":8639,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":8643,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":8647,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":8651,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":8656,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":8660,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":8664,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":8667,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":8671,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":8676,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":8680,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":8684,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":8688,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":8693,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":8697,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":8701,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":8705,"\u002Freal-analysis":8709,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":8712,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":8716,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":8720,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":8725,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":8729,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":8733,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":8737,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":8742,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":8746,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":8750,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":8754,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":8758,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":8762,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":8767,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":8771,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":8775,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":8779,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":8784,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":8788,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":8792,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":8796,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":8801,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":8805,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":8809,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":8814,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":8818,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":8822,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":8826,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":8831,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":8835,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":8839,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":8843,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":8848,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":8852,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":8856,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":8861,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":8865,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":8869,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":8873,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":8878,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":8882,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":8886,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":8890,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":8894,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":8899,"\u002Fabstract-algebra":8903,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":8906,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":8911,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":8915,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":8919,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":8923,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":8927,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":8932,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":8936,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":8940,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":8944,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":8948,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":8952,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":8956,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":8961,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":8965,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":8969,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":8973,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":8978,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":8982,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":8986,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":8991,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":8995,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":8999,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":9003,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":9007,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":9011,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":9016,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":9020,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":9024,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":9029,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":9033,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":9037,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":9041,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":9046,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":9050,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":9054,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":9059,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":9063,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":9067,"\u002Fatomic-physics":9071,"\u002Fdatabases":9074,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":9077,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":9081,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":9085,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":9089,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":9093,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":9097,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":9101,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":9106,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":9110,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":9114,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":9119,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":9123,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":9127,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":9132,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":9136,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":9140,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":9144,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":9148,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":9153,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":9157,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":9161,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":9165,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":9170,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":9174,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":9178,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":9182,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":9187,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":9191,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":9195,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":9199,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":9204,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":9208,"\u002Fcategory-theory":9212,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":9215,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":9219,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":9223,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":9227,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":9230,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":9234,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":9237,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":9241,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":9246,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":9250,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":9254,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":9258,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":9262,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":9267,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":9271,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":9275,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":9279,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":9283,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":9288,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":9292,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":9296,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":9300,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":9305,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":9309,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":9313,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":9317,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":9321,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":9325,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":9329,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":9333,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":9337,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":9342,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":9346,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":9350,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":9354,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":9358,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":9363,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":9367,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":9371,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":9375,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":9379,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":9383,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":9387,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":9392,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":9396,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":9400,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":9401,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":9404,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":9408,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":9412,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":9416,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":9420,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":9424,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":9429,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":9433,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":9437,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":9441,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":9445,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":9449,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":9453,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":9457,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":9461,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":9465,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":9469,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":9474,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":9478,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":9482,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":9486,"\u002Fdeep-learning":9490,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":9492,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":9496,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":9500,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":9504,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":9508,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":9512,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":9517,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":9521,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":9525,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":9529,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":9534,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":9538,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":9542,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":9546,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":9551,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":9555,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":9559,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":9563,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":9567,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":9572,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":9576,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":9580,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":9585,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":9589,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":9593,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":9598,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":9602,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":9606,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":9610,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":9615,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":9619,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":9623,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":9627,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":9631,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":9635,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":9640,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":9644,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":9648,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":9652,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":9657,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":9661,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":9665,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":9670,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":9674,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":9678,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":9682,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":9686,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":9691,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":9695,"\u002Fstatistical-mechanics":9699,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":9702,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":9707,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":9711,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":9715,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":9719,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":9724,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":9728,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":9732,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":9736,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":9741,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":9745,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":9749,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":9753,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":9758,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":9762,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":9766,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":9770,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":9775,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":9779,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":9783,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":9787,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":9792,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":9796,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":9800,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":9804,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":9809,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":9813,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":9817,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":9821,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":9825,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":9830,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":9834,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":9839,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":9843,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":9847,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":9851,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":9856,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":9860,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":9864,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":9868,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":9872,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":9877,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":9881,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":9885,"\u002Fcondensed-matter":9889,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":9892,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":9896,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":9901,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":9905,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":9909,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":9913,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":9917,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":9921,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":9925,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":9930,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":9934,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":9938,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":9942,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":9947,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":9951,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":9955,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":9959,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":9964,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":9968,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":9972,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":9976,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":9981,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":9985,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":9989,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":9993,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":9998,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":10002,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":10006,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":10011,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":10015,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":10020,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":10024,"\u002Flogic":10028,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":10031,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":10035,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":10039,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":10043,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":10047,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":10051,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":10055,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":10059,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":10063,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":10067,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":10071,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":10075,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":10079,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":10083,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":10087,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":10091,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":10095,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":10099,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":10103,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":10108,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":10112,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":10116,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":10120,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":10124,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":10128,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":10132,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":10136,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":10140,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":10144,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":10148,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":10152,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":10156,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":10160,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":10164,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":10168,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":10172,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":10176,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":10180,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":10184,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":10188,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":10192,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":10197,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":10201,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":10205,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":10209,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":10213,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":10217,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":10221,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":10225,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":10229,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":10233,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":10237,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":10241,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":10245,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":10249,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":10253,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":10257,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":10261,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":10265,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":10269,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":10273,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":10277,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":10281,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":10286,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":10290,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":10294,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":10298,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":10302,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":10306,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":10310,"\u002Freinforcement-learning":10314,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":10316,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":10320,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":10324,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":10328,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":10332,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":10337,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":10341,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":10345,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":10349,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":10353,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":10357,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":10361,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":10365,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":10369,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":10373,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":10377,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":10381,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":10386,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":10390,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":10394,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":10398,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":10402,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":10406,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":10410,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":10414,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":10418,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":10422,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":10426,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":10430,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":10435,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":10439,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":10443,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":10447,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":10451,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":10455,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":10459,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":10462,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":10466,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":10470,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":10475,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":10479,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":10483,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":10487,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":10490,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":10494,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":10498,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":10502,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":10507,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":10511,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":10515,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":10519,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":10523,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":10527,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":10531,"\u002Fartificial-intelligence":10535,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":10538,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":10543,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":10547,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":10551,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":10555,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":10559,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":10564,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":10568,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":10572,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":10576,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":10581,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":10585,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":10589,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":10593,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":10598,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":10602,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":10607,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":10611,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":10616,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":10620,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":10624,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":10628,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":10633,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":10637,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":10641,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":10646,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":10650,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":10654,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":10659,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":10663,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":10668,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":10672,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":10676,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":10681,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":10685,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":10689,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":10693,"\u002Fnuclear-physics":10697,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":10700,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":10704,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":10708,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":10712,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":10716,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":10720,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":10725,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":10729,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":10733,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":10737,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":10742,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":10746,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":10750,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":10754,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":10758,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":10762,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":10766,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":10769,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":10772,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":10776,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":10780,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":10784,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":10789,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":10793,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":10797,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":10801,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":10805,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":10809,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":10813,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":10817,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":10821,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":10825,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":10829,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":10833,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":10837,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":10841,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":10845,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":10849,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":10853,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":10857,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":10861,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":10865,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":10869,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":10873,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":10877,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":10881,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":10885,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":10889,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":10893,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":10897,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":10902,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":10906,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":10910,"\u002Fnatural-language-processing":10914,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":10917,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":10921,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":10925,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":10929,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":10934,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":10938,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":10942,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":10946,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":10951,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":10955,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":10959,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":10963,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":10968,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":10972,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":10976,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":10980,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":10985,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":10989,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":10993,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":10998,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":11002,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":11006,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":11010,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":11015,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":11019,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":11023,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":11027,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":11032,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":11036,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":11040,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":11044,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":11049,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":11053,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":11057,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":11061,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":11065,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":11070,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":11074,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":11078,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":11083,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":11087,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":11091,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":11095,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":11099,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":11103,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":11107,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":11111,"\u002Fparticle-physics":11115,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":11118,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":11123,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":11127,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":11131,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":11136,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":11140,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":11144,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":11148,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":11153,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":11157,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":11161,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":11165,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":11170,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":11174,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":11178,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":11182,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":11187,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":11191,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":11195,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":11199,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":11204,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":11208,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":11212,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":11217,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":11221,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":11225,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":11229,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":11233,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":11237,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":11241,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":11245,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":11249,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":11254,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":11258,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":11262,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":11266,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":11271,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":11275,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":11279,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":11283,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":11287,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":11292,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":11296,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":11299,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":11303,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":11307,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":11312,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":11316,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":11320,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":11324,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":11328,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":11332,"\u002Fastrophysics-cosmology":11336,"\u002Fcolophon":11339,"\u002F":11342},{"path":6662,"title":6663,"module":6664,"summary":6665},"\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":6667,"title":6668,"module":6664,"summary":6669},"\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":6671,"title":6672,"module":6664,"summary":6673},"\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":6675,"title":6676,"module":6664,"summary":6677},"\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":6679,"title":6680,"module":6664,"summary":6681},"\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":6683,"title":6684,"module":6664,"summary":6685},"\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":6687,"title":6688,"module":6689,"summary":6690},"\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":6692,"title":6693,"module":6689,"summary":6694},"\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":6696,"title":6697,"module":6689,"summary":6698},"\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":6700,"title":6701,"module":6689,"summary":6702},"\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":6704,"title":6705,"module":6706,"summary":6707},"\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":6709,"title":6710,"module":6706,"summary":6711},"\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":6713,"title":6714,"module":6706,"summary":6715},"\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":6717,"title":6718,"module":6706,"summary":6719},"\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":6721,"title":6722,"module":6723,"summary":6724},"\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":6726,"title":6727,"module":6723,"summary":6728},"\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":6730,"title":6731,"module":6723,"summary":6732},"\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":6734,"title":6735,"module":6723,"summary":6736},"\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":6738,"title":6739,"module":6723,"summary":6740},"\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":6742,"title":6743,"module":6723,"summary":6744},"\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":6746,"title":6747,"module":6723,"summary":6748},"\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":6750,"title":6751,"module":6723,"summary":6752},"\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":6754,"title":6755,"module":6723,"summary":6756},"\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":6758,"title":6759,"module":6723,"summary":6760},"\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":6762,"title":6763,"module":6723,"summary":6764},"\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":6766,"title":6767,"module":6723,"summary":6768},"\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":6770,"title":6771,"module":6772,"summary":6773},"\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":6775,"title":6776,"module":6772,"summary":6777},"\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":6779,"title":6780,"module":6772,"summary":6781},"\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":6783,"title":6784,"module":6772,"summary":6785},"\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":6787,"title":6788,"module":6772,"summary":6789},"\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":6791,"title":6792,"module":6772,"summary":6793},"\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":6795,"title":6796,"module":6772,"summary":6797},"\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":6799,"title":6800,"module":6772,"summary":6801},"\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":6803,"title":6804,"module":6805,"summary":6806},"\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":6808,"title":6809,"module":6805,"summary":6810},"\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":6812,"title":6813,"module":6805,"summary":6814},"\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":6816,"title":6817,"module":6805,"summary":6818},"\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":6820,"title":6821,"module":6805,"summary":6822},"\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":6824,"title":6825,"module":6805,"summary":6826},"\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":6828,"title":6829,"module":6805,"summary":6830},"\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":6832,"title":6833,"module":6805,"summary":6834},"\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":6836,"title":6837,"module":6805,"summary":6838},"\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":6840,"title":6841,"module":6805,"summary":6842},"\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":6844,"title":6845,"module":6805,"summary":6846},"\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":6848,"title":6849,"module":6805,"summary":6850},"\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":6852,"title":6853,"module":6805,"summary":6854},"\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":6856,"title":6857,"module":6805,"summary":6858},"\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":6860,"title":6861,"module":6862,"summary":6863},"\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":6865,"title":6866,"module":6862,"summary":6867},"\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":6869,"title":6870,"module":6862,"summary":6871},"\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":6873,"title":6874,"module":6862,"summary":6875},"\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":6877,"title":6878,"module":6862,"summary":6879},"\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":6881,"title":6882,"module":6883,"summary":6884},"\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":6886,"title":6887,"module":6883,"summary":6888},"\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":6890,"title":6891,"module":6883,"summary":6892},"\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":6894,"title":6895,"module":6883,"summary":6896},"\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":6898,"title":6899,"module":6883,"summary":6900},"\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":6902,"title":6903,"module":6883,"summary":6904},"\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":6906,"title":6907,"module":6883,"summary":6908},"\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":6910,"title":6911,"module":6883,"summary":6912},"\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":6914,"title":6915,"module":6883,"summary":6916},"\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":6918,"title":6919,"module":6883,"summary":6920},"\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":6922,"title":6923,"module":6883,"summary":6924},"\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":6926,"title":6927,"module":6928,"summary":6929},"\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":6931,"title":6932,"module":6928,"summary":6933},"\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":6935,"title":6936,"module":6928,"summary":6937},"\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":6939,"title":6940,"module":6928,"summary":6941},"\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":6943,"title":6944,"module":6945,"summary":6946},"\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":6948,"title":6949,"module":6945,"summary":6950},"\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":6952,"title":6953,"module":6945,"summary":6954},"\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":6956,"title":6957,"module":6945,"summary":6958},"\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":6960,"title":6961,"module":6945,"summary":6962},"\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":6964,"title":6965,"module":6945,"summary":6966},"\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":6968,"title":6969,"module":6945,"summary":6970},"\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":6972,"title":6973,"module":6974,"summary":6975},"\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":6977,"title":6978,"module":6974,"summary":6979},"\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":6981,"title":6982,"module":6974,"summary":6983},"\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":6985,"title":6986,"module":6974,"summary":6987},"\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":6989,"title":6990,"module":6991,"summary":6992},"\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":6994,"title":6995,"module":6991,"summary":6996},"\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":6998,"title":6999,"module":6991,"summary":7000},"\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":7002,"title":7003,"module":6991,"summary":7004},"\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":7006,"title":7007,"module":6,"summary":6},"\u002Falgorithms","Algorithms",{"path":7009,"title":7010,"module":7011,"summary":7012},"\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":7014,"title":7015,"module":7011,"summary":7016},"\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":7018,"title":7019,"module":7011,"summary":7020},"\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":7022,"title":7023,"module":7011,"summary":7024},"\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":7026,"title":7027,"module":7028,"summary":7029},"\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":7031,"title":7032,"module":7028,"summary":7033},"\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":7035,"title":7036,"module":7028,"summary":7037},"\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":7039,"title":7040,"module":7028,"summary":7041},"\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":7043,"title":7044,"module":7045,"summary":7046},"\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":7048,"title":7049,"module":7045,"summary":7050},"\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":7052,"title":7053,"module":7045,"summary":7054},"\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":7056,"title":7057,"module":7045,"summary":7058},"\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":7060,"title":7061,"module":7062,"summary":7063},"\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":7065,"title":7066,"module":7062,"summary":7067},"\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":7069,"title":7070,"module":7062,"summary":7071},"\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":7073,"title":7074,"module":7075,"summary":7076},"\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":7078,"title":7079,"module":7075,"summary":7080},"\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":7082,"title":7083,"module":7075,"summary":7084},"\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":7086,"title":7087,"module":7088,"summary":7089},"\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":7091,"title":7092,"module":7088,"summary":7093},"\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":7095,"title":7096,"module":7088,"summary":7097},"\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":7099,"title":7100,"module":7101,"summary":7102},"\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":7104,"title":7105,"module":7101,"summary":7106},"\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":7108,"title":7109,"module":7101,"summary":7110},"\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":7112,"title":7113,"module":7101,"summary":7114},"\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":7116,"title":7117,"module":7118,"summary":7119},"\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":7121,"title":7122,"module":7118,"summary":7123},"\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":7125,"title":7126,"module":7118,"summary":7127},"\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":7129,"title":7130,"module":7131,"summary":7132},"\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":7134,"title":7135,"module":7131,"summary":7136},"\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":7138,"title":7139,"module":7131,"summary":7140},"\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":7142,"title":7143,"module":7131,"summary":7144},"\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":7146,"title":7147,"module":7131,"summary":7148},"\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":7150,"title":7151,"module":7152,"summary":7153},"\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":7155,"title":7156,"module":7152,"summary":7157},"\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":7159,"title":7160,"module":7152,"summary":7161},"\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":7163,"title":7164,"module":7152,"summary":7165},"\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":7167,"title":7168,"module":7152,"summary":7169},"\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":7171,"title":7172,"module":7173,"summary":7174},"\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":7176,"title":7173,"module":7173,"summary":7177},"\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":7179,"title":7180,"module":7173,"summary":7181},"\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":7183,"title":7184,"module":7173,"summary":7185},"\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":7187,"title":7188,"module":7173,"summary":7189},"\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":7191,"title":7192,"module":7193,"summary":7194},"\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":7196,"title":7197,"module":7193,"summary":7198},"\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":7200,"title":7201,"module":7193,"summary":7202},"\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":7204,"title":7205,"module":7193,"summary":7206},"\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":7208,"title":7209,"module":7193,"summary":7210},"\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":7212,"title":7213,"module":7193,"summary":7214},"\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":7216,"title":7217,"module":6,"summary":6},"\u002Fcalculus","Calculus",{"path":7219,"title":7220,"module":6664,"summary":7221},"\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":7223,"title":7224,"module":6664,"summary":7225},"\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":7227,"title":7228,"module":7229,"summary":7230},"\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":7232,"title":7233,"module":7229,"summary":7234},"\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":7236,"title":7237,"module":7229,"summary":7238},"\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":7240,"title":7241,"module":7229,"summary":7242},"\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":7244,"title":7245,"module":7229,"summary":7246},"\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":7248,"title":7249,"module":7250,"summary":7251},"\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":7253,"title":7254,"module":7250,"summary":7255},"\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":7257,"title":7258,"module":7250,"summary":7259},"\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":7261,"title":7262,"module":7250,"summary":7263},"\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":7265,"title":7266,"module":7250,"summary":7267},"\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":7269,"title":7270,"module":7271,"summary":7272},"\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":7274,"title":7275,"module":7271,"summary":7276},"\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":7278,"title":7279,"module":7271,"summary":7280},"\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":7282,"title":7283,"module":7271,"summary":7284},"\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":7286,"title":7287,"module":7271,"summary":7288},"\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":7290,"title":7291,"module":7292,"summary":7293},"\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":7295,"title":7296,"module":7292,"summary":7297},"\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":7299,"title":7300,"module":7292,"summary":7301},"\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":7303,"title":7304,"module":7305,"summary":7306},"\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":7308,"title":7309,"module":7305,"summary":7310},"\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":7312,"title":7313,"module":7305,"summary":7314},"\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":7316,"title":7317,"module":7305,"summary":7318},"\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":7320,"title":7321,"module":7305,"summary":7322},"\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":7324,"title":7325,"module":7305,"summary":7326},"\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":7328,"title":7329,"module":7330,"summary":7331},"\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":7333,"title":7334,"module":7330,"summary":7335},"\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":7337,"title":7338,"module":7330,"summary":7339},"\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":7341,"title":7342,"module":7330,"summary":7343},"\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":7345,"title":7346,"module":7330,"summary":7347},"\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":7349,"title":7350,"module":7330,"summary":7351},"\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":7353,"title":7354,"module":7330,"summary":7355},"\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":7357,"title":7358,"module":7359,"summary":7360},"\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":7362,"title":7363,"module":7359,"summary":7364},"\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":7366,"title":7367,"module":7359,"summary":7368},"\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":7370,"title":7371,"module":7359,"summary":7372},"\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":7374,"title":7375,"module":7359,"summary":7376},"\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":7378,"title":7379,"module":7359,"summary":7380},"\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":7382,"title":7383,"module":7359,"summary":7384},"\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":7386,"title":7387,"module":7359,"summary":7388},"\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":7390,"title":7391,"module":7359,"summary":7392},"\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":7394,"title":7395,"module":7359,"summary":7396},"\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":7398,"title":7399,"module":7359,"summary":7400},"\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":7402,"title":7403,"module":7359,"summary":7404},"\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":7406,"title":7407,"module":7408,"summary":7409},"\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":7411,"title":7412,"module":7408,"summary":7413},"\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":7415,"title":7416,"module":7408,"summary":7417},"\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":7419,"title":7420,"module":7408,"summary":7421},"\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":7423,"title":7424,"module":7408,"summary":7425},"\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":7427,"title":7428,"module":7408,"summary":7429},"\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":7431,"title":7432,"module":6,"summary":6},"\u002Fmechanics","Mechanics & Dynamics",{"path":7434,"title":7435,"module":7436,"summary":7437},"\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":7439,"title":7440,"module":7436,"summary":7441},"\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":7443,"title":7444,"module":7436,"summary":7445},"\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":7447,"title":7448,"module":7436,"summary":7449},"\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":7451,"title":7452,"module":7436,"summary":7453},"\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":7455,"title":7456,"module":7457,"summary":7458},"\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":7460,"title":7461,"module":7457,"summary":7462},"\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":7464,"title":7465,"module":7466,"summary":7467},"\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":7469,"title":7470,"module":7466,"summary":7471},"\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":7473,"title":7474,"module":7466,"summary":7475},"\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":7477,"title":7478,"module":7466,"summary":7479},"\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":7481,"title":7482,"module":7466,"summary":7483},"\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":7485,"title":7486,"module":7487,"summary":7488},"\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":7490,"title":7491,"module":7487,"summary":7492},"\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":7494,"title":7495,"module":7487,"summary":7496},"\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":7498,"title":7499,"module":7487,"summary":7500},"\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":7502,"title":7503,"module":7504,"summary":7505},"\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":7507,"title":7508,"module":7504,"summary":7509},"\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":7511,"title":7512,"module":7504,"summary":7513},"\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":7515,"title":7516,"module":7517,"summary":7518},"\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":7520,"title":7521,"module":7517,"summary":7522},"\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":7524,"title":7525,"module":7517,"summary":7526},"\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":7528,"title":7529,"module":7517,"summary":7530},"\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":7532,"title":7533,"module":7517,"summary":7534},"\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":7536,"title":7537,"module":7538,"summary":7539},"\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":7541,"title":7542,"module":7538,"summary":7543},"\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":7545,"title":7546,"module":7538,"summary":7547},"\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":7549,"title":7550,"module":7538,"summary":7551},"\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":7553,"title":7554,"module":7538,"summary":7555},"\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":7557,"title":7558,"module":7538,"summary":7559},"\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":7561,"title":7562,"module":7563,"summary":7564},"\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":7566,"title":7567,"module":7563,"summary":7568},"\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":7570,"title":7571,"module":7563,"summary":7572},"\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":7574,"title":7575,"module":7563,"summary":7576},"\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":7578,"title":7579,"module":7563,"summary":7580},"\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":7582,"title":7583,"module":7563,"summary":7584},"\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":7586,"title":7587,"module":7563,"summary":7588},"\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":7590,"title":7591,"module":7563,"summary":7592},"\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":7594,"title":7595,"module":7596,"summary":7597},"\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":7599,"title":7600,"module":7596,"summary":7601},"\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":7603,"title":7604,"module":7596,"summary":7605},"\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":7607,"title":7608,"module":7596,"summary":7609},"\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":7611,"title":7612,"module":7596,"summary":7613},"\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":7615,"title":7616,"module":7617,"summary":7618},"\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":7620,"title":7621,"module":7617,"summary":7622},"\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":7624,"title":7625,"module":7617,"summary":7626},"\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":7628,"title":7629,"module":7617,"summary":7630},"\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":7632,"title":7633,"module":7617,"summary":7634},"\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":7636,"title":7637,"module":7638,"summary":7639},"\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":7641,"title":7642,"module":7638,"summary":7643},"\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":7645,"title":7646,"module":7638,"summary":7647},"\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":7649,"title":7650,"module":6,"summary":6},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":7652,"title":7653,"module":7654,"summary":7655},"\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":7657,"title":7658,"module":7654,"summary":7659},"\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":7661,"title":7662,"module":7654,"summary":7663},"\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":7665,"title":7666,"module":7654,"summary":7667},"\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":7669,"title":7670,"module":7654,"summary":7671},"\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":7673,"title":7674,"module":7675,"summary":7676},"\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":7678,"title":7679,"module":7675,"summary":7680},"\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":7682,"title":7683,"module":7675,"summary":7684},"\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":7686,"title":7687,"module":7675,"summary":7688},"\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":7690,"title":7691,"module":7675,"summary":7692},"\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":7694,"title":7695,"module":7696,"summary":7697},"\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":7699,"title":7700,"module":7696,"summary":7701},"\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":7703,"title":7704,"module":7696,"summary":7705},"\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":7707,"title":7708,"module":7709,"summary":7710},"\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":7712,"title":7713,"module":7709,"summary":7714},"\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":7716,"title":7717,"module":7709,"summary":7718},"\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":7720,"title":7721,"module":7709,"summary":7722},"\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":7724,"title":7725,"module":7709,"summary":7726},"\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":7728,"title":7729,"module":7709,"summary":7730},"\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":7732,"title":7733,"module":7709,"summary":7734},"\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":7736,"title":7737,"module":7738,"summary":7739},"\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":7741,"title":7742,"module":7738,"summary":7743},"\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":7745,"title":7746,"module":7738,"summary":7747},"\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":7749,"title":7750,"module":7738,"summary":7751},"\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":7753,"title":7754,"module":7738,"summary":7755},"\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":7757,"title":7758,"module":7738,"summary":7759},"\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":7761,"title":7762,"module":7738,"summary":7763},"\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":7765,"title":7766,"module":7767,"summary":7768},"\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":7770,"title":7771,"module":7767,"summary":7772},"\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":7774,"title":7775,"module":7767,"summary":7776},"\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":7778,"title":7779,"module":7767,"summary":7780},"\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":7782,"title":7783,"module":7767,"summary":7784},"\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":7786,"title":7787,"module":7767,"summary":7788},"\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":7790,"title":7791,"module":7792,"summary":7793},"\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":7795,"title":7796,"module":7792,"summary":7797},"\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":7799,"title":7800,"module":7792,"summary":7801},"\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":7803,"title":7804,"module":7792,"summary":7805},"\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":7807,"title":7808,"module":7792,"summary":7809},"\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":7811,"title":7812,"module":7813,"summary":7814},"\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":7816,"title":7817,"module":7813,"summary":7818},"\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":7820,"title":7821,"module":7813,"summary":7822},"\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":7824,"title":7825,"module":7813,"summary":7826},"\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":7828,"title":7829,"module":7813,"summary":7830},"\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":7832,"title":7833,"module":7813,"summary":7834},"\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":7836,"title":7837,"module":7838,"summary":7839},"\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":7841,"title":7842,"module":7838,"summary":7843},"\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":7845,"title":7846,"module":7838,"summary":7847},"\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":7849,"title":7850,"module":7838,"summary":7851},"\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":7853,"title":7854,"module":7838,"summary":7855},"\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":7857,"title":7858,"module":6,"summary":6},"\u002Flinear-algebra","Linear Algebra",{"path":7860,"title":7861,"module":6,"summary":6},"\u002Ftheory-of-computation","Theory of Computation",{"path":7863,"title":7864,"module":6664,"summary":7865},"\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":7867,"title":7868,"module":6664,"summary":7869},"\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":7871,"title":7872,"module":6664,"summary":7873},"\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":7875,"title":7876,"module":6664,"summary":7877},"\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":7879,"title":7880,"module":6664,"summary":7881},"\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":7883,"title":7884,"module":7885,"summary":7886},"\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":7888,"title":7889,"module":7885,"summary":7890},"\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":7892,"title":7893,"module":7885,"summary":7894},"\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":7896,"title":7897,"module":7885,"summary":7898},"\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":7900,"title":7901,"module":7885,"summary":7902},"\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":7904,"title":7905,"module":7885,"summary":7906},"\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":7908,"title":7909,"module":7885,"summary":7910},"\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":7912,"title":7913,"module":7914,"summary":7915},"\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":7917,"title":7918,"module":7914,"summary":7919},"\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":7921,"title":7922,"module":7914,"summary":7923},"\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":7925,"title":7926,"module":7914,"summary":7927},"\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":7929,"title":7930,"module":7914,"summary":7931},"\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":7933,"title":7934,"module":7935,"summary":7936},"\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":7938,"title":7939,"module":7935,"summary":7940},"\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":7942,"title":7943,"module":7935,"summary":7944},"\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":7946,"title":7947,"module":7935,"summary":7948},"\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":7950,"title":7951,"module":7935,"summary":7952},"\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":7954,"title":7955,"module":7956,"summary":7957},"\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":7959,"title":7960,"module":7956,"summary":7961},"\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":7963,"title":7964,"module":7956,"summary":7965},"\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":7967,"title":7968,"module":7956,"summary":7969},"\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":7971,"title":7972,"module":7956,"summary":7973},"\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":7975,"title":7976,"module":7977,"summary":7978},"\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":7980,"title":7981,"module":7977,"summary":7982},"\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":7984,"title":7985,"module":7977,"summary":7986},"\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":7988,"title":7989,"module":7977,"summary":7990},"\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":7992,"title":7993,"module":7977,"summary":7994},"\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":7996,"title":7997,"module":7998,"summary":7999},"\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":8001,"title":8002,"module":7998,"summary":8003},"\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":8005,"title":8006,"module":7998,"summary":8007},"\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":8009,"title":8010,"module":7998,"summary":8011},"\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":8013,"title":8014,"module":7998,"summary":8015},"\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":8017,"title":8018,"module":8019,"summary":8020},"\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":8022,"title":8023,"module":8019,"summary":8024},"\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":8026,"title":8027,"module":8019,"summary":8028},"\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":8030,"title":8031,"module":8032,"summary":8033},"\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":8035,"title":8036,"module":8032,"summary":8037},"\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":8039,"title":8040,"module":8041,"summary":8042},"\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":8044,"title":8045,"module":8041,"summary":8046},"\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":8048,"title":8049,"module":8041,"summary":8050},"\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":8052,"title":8053,"module":8041,"summary":8054},"\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":8056,"title":8057,"module":8041,"summary":8058},"\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":8060,"title":8061,"module":8062,"summary":8063},"\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":8065,"title":8066,"module":8062,"summary":8067},"\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":8069,"title":8070,"module":6,"summary":6},"\u002Fcomputer-architecture","Computer Architecture",{"path":8072,"title":8073,"module":6664,"summary":8074},"\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":8076,"title":8077,"module":6664,"summary":8078},"\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":8080,"title":8081,"module":8082,"summary":8083},"\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":8085,"title":8086,"module":8082,"summary":8087},"\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":8089,"title":8090,"module":8082,"summary":8091},"\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":8093,"title":8094,"module":8082,"summary":8095},"\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":8097,"title":8098,"module":8082,"summary":8099},"\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":8101,"title":8102,"module":8082,"summary":8103},"\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":8105,"title":8106,"module":8107,"summary":8108},"\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":8110,"title":8111,"module":8107,"summary":8112},"\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":8114,"title":8115,"module":8107,"summary":8116},"\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":8118,"title":8119,"module":8107,"summary":8120},"\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":8122,"title":8123,"module":8107,"summary":8124},"\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":8126,"title":8127,"module":8107,"summary":8128},"\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":8130,"title":8131,"module":8132,"summary":8133},"\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":8135,"title":8136,"module":8132,"summary":8137},"\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":8139,"title":8140,"module":8132,"summary":8141},"\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":8143,"title":8144,"module":8145,"summary":8146},"\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":8148,"title":8149,"module":8145,"summary":8150},"\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":8152,"title":8153,"module":8154,"summary":8155},"\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":8157,"title":8158,"module":8154,"summary":8159},"\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":8161,"title":8162,"module":8154,"summary":8163},"\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":8165,"title":8166,"module":8167,"summary":8168},"\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":8170,"title":8171,"module":8167,"summary":8172},"\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":8174,"title":8175,"module":8176,"summary":8177},"\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":8179,"title":8180,"module":8176,"summary":8181},"\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":8183,"title":8184,"module":8176,"summary":8185},"\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":8187,"title":8188,"module":8189,"summary":8190},"\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":8192,"title":8193,"module":8189,"summary":8194},"\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":8196,"title":8197,"module":8189,"summary":8198},"\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":8200,"title":8201,"module":8202,"summary":8203},"\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":8205,"title":8206,"module":8202,"summary":8207},"\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":8209,"title":8210,"module":6,"summary":6},"\u002Fdifferential-equations","Differential Equations",{"path":8212,"title":8213,"module":8214,"summary":8215},"\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":8217,"title":8218,"module":8214,"summary":8219},"\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":8221,"title":8222,"module":8214,"summary":8223},"\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":8225,"title":8226,"module":8214,"summary":8227},"\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":8229,"title":8230,"module":8214,"summary":8231},"\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":8233,"title":8234,"module":8235,"summary":8236},"\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":8238,"title":8239,"module":8235,"summary":8240},"\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":8242,"title":8243,"module":8235,"summary":8244},"\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":8246,"title":8247,"module":8235,"summary":8248},"\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":8250,"title":8251,"module":8252,"summary":8253},"\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":8255,"title":8256,"module":8252,"summary":8257},"\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":8259,"title":8260,"module":8252,"summary":8261},"\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":8263,"title":8264,"module":8252,"summary":8265},"\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":8267,"title":8268,"module":8269,"summary":8270},"\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":8272,"title":8273,"module":8269,"summary":8274},"\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":8276,"title":8277,"module":8269,"summary":8278},"\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":8280,"title":8281,"module":8269,"summary":8282},"\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":8284,"title":8285,"module":8286,"summary":8287},"\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":8289,"title":8290,"module":8286,"summary":8291},"\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":8293,"title":8294,"module":8286,"summary":8295},"\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":8297,"title":8298,"module":8286,"summary":8299},"\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":8301,"title":8302,"module":8286,"summary":8303},"\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":8305,"title":8306,"module":8286,"summary":8307},"\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":8309,"title":8310,"module":8311,"summary":8312},"\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":8314,"title":8315,"module":8311,"summary":8316},"\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":8318,"title":8319,"module":8311,"summary":8320},"\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":8322,"title":8323,"module":8324,"summary":8325},"\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":8327,"title":8328,"module":8324,"summary":8329},"\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":8331,"title":8332,"module":8324,"summary":8333},"\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":8335,"title":8336,"module":8324,"summary":8337},"\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":8339,"title":8340,"module":8341,"summary":8342},"\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":8344,"title":8345,"module":8341,"summary":8346},"\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":8348,"title":8349,"module":8341,"summary":8350},"\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":8352,"title":8353,"module":8354,"summary":8355},"\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":8357,"title":8358,"module":8354,"summary":8359},"\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":8361,"title":8362,"module":8354,"summary":8363},"\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":8365,"title":8366,"module":8367,"summary":8368},"\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":8370,"title":8371,"module":8367,"summary":8372},"\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":8374,"title":8375,"module":6,"summary":6},"\u002Frelativity","Relativity",{"path":8377,"title":8378,"module":6,"summary":6},"\u002Fphysical-computing","Physical Computing",{"path":8380,"title":8381,"module":8382,"summary":8383},"\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":8385,"title":8386,"module":8382,"summary":8387},"\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":8389,"title":8390,"module":8382,"summary":8391},"\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":8393,"title":8394,"module":8382,"summary":8395},"\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":8397,"title":8398,"module":8399,"summary":8400},"\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":8402,"title":8403,"module":8399,"summary":8404},"\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":8406,"title":8407,"module":8399,"summary":8408},"\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":8410,"title":8411,"module":8412,"summary":8413},"\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":8415,"title":8416,"module":8412,"summary":8417},"\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":8419,"title":8420,"module":8412,"summary":8421},"\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":8423,"title":8424,"module":8412,"summary":8425},"\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":8427,"title":8428,"module":8412,"summary":8429},"\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":8431,"title":8432,"module":8412,"summary":8433},"\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":8435,"title":8436,"module":8437,"summary":8438},"\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":8440,"title":8441,"module":8437,"summary":8442},"\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":8444,"title":8445,"module":8437,"summary":8446},"\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":8448,"title":8449,"module":8437,"summary":8450},"\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":8452,"title":8453,"module":8437,"summary":8454},"\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":8456,"title":8457,"module":8437,"summary":8458},"\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":8460,"title":8461,"module":8462,"summary":8463},"\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":8465,"title":8466,"module":8462,"summary":8467},"\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":8469,"title":8470,"module":8462,"summary":8471},"\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":8473,"title":8474,"module":8462,"summary":8475},"\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":8477,"title":8478,"module":7317,"summary":8479},"\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":8481,"title":8482,"module":7317,"summary":8483},"\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":8485,"title":8486,"module":7317,"summary":8487},"\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":8489,"title":8490,"module":8491,"summary":8492},"\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":8494,"title":8495,"module":8491,"summary":8496},"\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":8498,"title":8499,"module":8491,"summary":8500},"\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":8502,"title":8503,"module":8504,"summary":8505},"\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":8507,"title":8508,"module":8504,"summary":8509},"\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":8511,"title":8512,"module":8504,"summary":8513},"\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":8515,"title":8516,"module":8517,"summary":8518},"\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":8520,"title":8521,"module":8517,"summary":8522},"\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":8524,"title":8525,"module":8526,"summary":8527},"\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":8529,"title":8530,"module":8526,"summary":8531},"\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":8533,"title":8534,"module":8526,"summary":8535},"\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":8537,"title":8538,"module":8526,"summary":8539},"\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":8541,"title":8542,"module":8526,"summary":8543},"\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":8545,"title":8546,"module":6,"summary":6},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":8548,"title":8549,"module":8550,"summary":8551},"\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":8553,"title":8554,"module":8550,"summary":8555},"\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":8557,"title":8558,"module":8550,"summary":8559},"\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":8561,"title":8562,"module":8550,"summary":8563},"\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":8565,"title":8566,"module":8567,"summary":8568},"\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":8570,"title":8571,"module":8567,"summary":8572},"\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":8574,"title":8575,"module":8567,"summary":8576},"\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":8578,"title":8579,"module":8567,"summary":8580},"\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":8582,"title":8583,"module":8567,"summary":8584},"\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":8586,"title":8587,"module":8567,"summary":8588},"\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":8590,"title":8591,"module":8592,"summary":8593},"\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":8595,"title":8596,"module":8592,"summary":8597},"\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":8599,"title":8600,"module":8592,"summary":8601},"\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":8603,"title":8604,"module":8592,"summary":8605},"\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":8607,"title":8608,"module":8592,"summary":8609},"\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":8611,"title":8612,"module":7011,"summary":8613},"\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":8615,"title":8616,"module":7011,"summary":8617},"\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":8619,"title":8620,"module":7011,"summary":8621},"\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":8623,"title":8624,"module":7011,"summary":8625},"\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":8627,"title":8628,"module":7011,"summary":8629},"\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":8631,"title":8632,"module":7011,"summary":8633},"\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":8635,"title":8636,"module":8637,"summary":8638},"\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":8640,"title":8641,"module":8637,"summary":8642},"\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":8644,"title":8645,"module":8637,"summary":8646},"\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":8648,"title":8649,"module":8637,"summary":8650},"\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":8652,"title":8653,"module":8654,"summary":8655},"\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":8657,"title":8658,"module":8654,"summary":8659},"\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":8661,"title":8662,"module":8654,"summary":8663},"\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":8665,"title":7066,"module":8654,"summary":8666},"\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":8668,"title":8669,"module":8654,"summary":8670},"\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":8672,"title":8673,"module":8674,"summary":8675},"\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":8677,"title":8678,"module":8674,"summary":8679},"\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":8681,"title":8682,"module":8674,"summary":8683},"\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":8685,"title":8686,"module":8674,"summary":8687},"\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":8689,"title":8690,"module":8691,"summary":8692},"\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":8694,"title":8695,"module":8691,"summary":8696},"\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":8698,"title":8699,"module":8691,"summary":8700},"\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":8702,"title":8703,"module":8691,"summary":8704},"\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":8706,"title":8707,"module":8691,"summary":8708},"\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":8710,"title":8711,"module":6,"summary":6},"\u002Freal-analysis","Real Analysis",{"path":8713,"title":8714,"module":6664,"summary":8715},"\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":8717,"title":8718,"module":6664,"summary":8719},"\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":8721,"title":8722,"module":8723,"summary":8724},"\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":8726,"title":8727,"module":8723,"summary":8728},"\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":8730,"title":8731,"module":8723,"summary":8732},"\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":8734,"title":8735,"module":8723,"summary":8736},"\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":8738,"title":8739,"module":8740,"summary":8741},"\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":8743,"title":8744,"module":8740,"summary":8745},"\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":8747,"title":8748,"module":8740,"summary":8749},"\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":8751,"title":8752,"module":8740,"summary":8753},"\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":8755,"title":8756,"module":8740,"summary":8757},"\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":8759,"title":8760,"module":8740,"summary":8761},"\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":8763,"title":8764,"module":8765,"summary":8766},"\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":8768,"title":8769,"module":8765,"summary":8770},"\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":8772,"title":8773,"module":8765,"summary":8774},"\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":8776,"title":8777,"module":8765,"summary":8778},"\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":8780,"title":8781,"module":8782,"summary":8783},"\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":8785,"title":8786,"module":8782,"summary":8787},"\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":8789,"title":8790,"module":8782,"summary":8791},"\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":8793,"title":8794,"module":8782,"summary":8795},"\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":8797,"title":8798,"module":8799,"summary":8800},"\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":8802,"title":8803,"module":8799,"summary":8804},"\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":8806,"title":8807,"module":8799,"summary":8808},"\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":8810,"title":8811,"module":8812,"summary":8813},"\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":8815,"title":8816,"module":8812,"summary":8817},"\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":8819,"title":8820,"module":8812,"summary":8821},"\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":8823,"title":8824,"module":8812,"summary":8825},"\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":8827,"title":8828,"module":8829,"summary":8830},"\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":8832,"title":8833,"module":8829,"summary":8834},"\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":8836,"title":8837,"module":8829,"summary":8838},"\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":8840,"title":8841,"module":8829,"summary":8842},"\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":8844,"title":8845,"module":8846,"summary":8847},"\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":8849,"title":8850,"module":8846,"summary":8851},"\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":8853,"title":8854,"module":8846,"summary":8855},"\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":8857,"title":8858,"module":8859,"summary":8860},"\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":8862,"title":8863,"module":8859,"summary":8864},"\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":8866,"title":8867,"module":8859,"summary":8868},"\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":8870,"title":8871,"module":8859,"summary":8872},"\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":8874,"title":8875,"module":8876,"summary":8877},"\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":8879,"title":8880,"module":8876,"summary":8881},"\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":8883,"title":8884,"module":8876,"summary":8885},"\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":8887,"title":8888,"module":8876,"summary":8889},"\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":8891,"title":8892,"module":8876,"summary":8893},"\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":8895,"title":8896,"module":8897,"summary":8898},"\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":8900,"title":8901,"module":8897,"summary":8902},"\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":8904,"title":8905,"module":6,"summary":6},"\u002Fabstract-algebra","Abstract Algebra",{"path":8907,"title":8908,"module":8909,"summary":8910},"\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":8912,"title":8913,"module":8909,"summary":8914},"\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":8916,"title":8917,"module":8909,"summary":8918},"\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":8920,"title":8921,"module":8909,"summary":8922},"\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":8924,"title":8925,"module":8909,"summary":8926},"\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":8928,"title":8929,"module":8930,"summary":8931},"\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":8933,"title":8934,"module":8930,"summary":8935},"\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":8937,"title":8938,"module":8930,"summary":8939},"\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":8941,"title":8942,"module":8930,"summary":8943},"\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":8945,"title":8946,"module":8930,"summary":8947},"\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":8949,"title":8950,"module":8930,"summary":8951},"\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":8953,"title":8954,"module":8930,"summary":8955},"\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":8957,"title":8958,"module":8959,"summary":8960},"\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":8962,"title":8963,"module":8959,"summary":8964},"\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":8966,"title":8967,"module":8959,"summary":8968},"\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":8970,"title":8971,"module":8959,"summary":8972},"\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":8974,"title":8975,"module":8976,"summary":8977},"\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":8979,"title":8980,"module":8976,"summary":8981},"\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":8983,"title":8984,"module":8976,"summary":8985},"\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":8987,"title":8988,"module":8989,"summary":8990},"\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":8992,"title":8993,"module":8989,"summary":8994},"\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":8996,"title":8997,"module":8989,"summary":8998},"\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":9000,"title":9001,"module":8989,"summary":9002},"\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":9004,"title":9005,"module":8989,"summary":9006},"\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":9008,"title":9009,"module":8989,"summary":9010},"\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":9012,"title":9013,"module":9014,"summary":9015},"\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":9017,"title":9018,"module":9014,"summary":9019},"\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":9021,"title":9022,"module":9014,"summary":9023},"\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":9025,"title":9026,"module":9027,"summary":9028},"\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":9030,"title":9031,"module":9027,"summary":9032},"\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":9034,"title":9035,"module":9027,"summary":9036},"\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":9038,"title":9039,"module":9027,"summary":9040},"\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":9042,"title":9043,"module":9044,"summary":9045},"\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":9047,"title":9048,"module":9044,"summary":9049},"\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":9051,"title":9052,"module":9044,"summary":9053},"\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":9055,"title":9056,"module":9057,"summary":9058},"\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":9060,"title":9061,"module":9057,"summary":9062},"\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":9064,"title":9065,"module":9057,"summary":9066},"\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":9068,"title":9069,"module":9057,"summary":9070},"\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":9072,"title":9073,"module":6,"summary":6},"\u002Fatomic-physics","Atomic Physics",{"path":9075,"title":9076,"module":6,"summary":6},"\u002Fdatabases","Databases",{"path":9078,"title":9079,"module":6664,"summary":9080},"\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":9082,"title":9083,"module":6664,"summary":9084},"\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":9086,"title":9087,"module":6664,"summary":9088},"\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":9090,"title":9091,"module":6664,"summary":9092},"\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":9094,"title":9095,"module":6664,"summary":9096},"\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":9098,"title":9099,"module":6664,"summary":9100},"\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":9102,"title":9103,"module":9104,"summary":9105},"\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":9107,"title":9108,"module":9104,"summary":9109},"\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":9111,"title":9112,"module":9104,"summary":9113},"\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":9115,"title":9116,"module":9117,"summary":9118},"\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":9120,"title":9121,"module":9117,"summary":9122},"\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":9124,"title":9125,"module":9117,"summary":9126},"\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":9128,"title":9129,"module":9130,"summary":9131},"\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":9133,"title":9134,"module":9130,"summary":9135},"\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":9137,"title":9138,"module":9130,"summary":9139},"\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":9141,"title":9142,"module":9130,"summary":9143},"\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":9145,"title":9146,"module":9130,"summary":9147},"\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":9149,"title":9150,"module":9151,"summary":9152},"\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":9154,"title":9155,"module":9151,"summary":9156},"\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":9158,"title":9159,"module":9151,"summary":9160},"\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":9162,"title":9163,"module":9151,"summary":9164},"\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":9166,"title":9167,"module":9168,"summary":9169},"\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":9171,"title":9172,"module":9168,"summary":9173},"\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":9175,"title":9176,"module":9168,"summary":9177},"\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":9179,"title":9180,"module":9168,"summary":9181},"\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":9183,"title":9184,"module":9185,"summary":9186},"\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":9188,"title":9189,"module":9185,"summary":9190},"\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":9192,"title":9193,"module":9185,"summary":9194},"\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":9196,"title":9197,"module":9185,"summary":9198},"\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":9200,"title":9201,"module":9202,"summary":9203},"\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":9205,"title":9206,"module":9202,"summary":9207},"\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":9209,"title":9210,"module":9202,"summary":9211},"\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":9213,"title":9214,"module":6,"summary":6},"\u002Fcategory-theory","Category Theory",{"path":9216,"title":7858,"module":9217,"summary":9218},"\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":9220,"title":9221,"module":9217,"summary":9222},"\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":9224,"title":9225,"module":9217,"summary":9226},"\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":9228,"title":7217,"module":9217,"summary":9229},"\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":9231,"title":9232,"module":6664,"summary":9233},"\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":2884,"title":9235,"module":6664,"summary":9236},"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":9238,"title":9239,"module":6664,"summary":9240},"\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":9242,"title":9243,"module":9244,"summary":9245},"\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":9247,"title":9248,"module":9244,"summary":9249},"\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":9251,"title":9252,"module":9244,"summary":9253},"\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":9255,"title":9256,"module":9244,"summary":9257},"\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":9259,"title":9260,"module":9244,"summary":9261},"\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":9263,"title":9264,"module":9265,"summary":9266},"\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":9268,"title":9269,"module":9265,"summary":9270},"\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":9272,"title":9273,"module":9265,"summary":9274},"\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":9276,"title":9277,"module":9265,"summary":9278},"\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":9280,"title":9281,"module":9265,"summary":9282},"\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":9284,"title":9285,"module":9286,"summary":9287},"\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":9289,"title":9290,"module":9286,"summary":9291},"\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":9293,"title":9294,"module":9286,"summary":9295},"\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":9297,"title":9298,"module":9286,"summary":9299},"\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":9301,"title":9302,"module":9303,"summary":9304},"\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":9306,"title":9307,"module":9303,"summary":9308},"\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":9310,"title":9311,"module":9303,"summary":9312},"\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":9314,"title":9315,"module":9303,"summary":9316},"\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":9318,"title":9319,"module":9303,"summary":9320},"\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":9322,"title":9323,"module":9303,"summary":9324},"\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":9326,"title":9327,"module":9303,"summary":9328},"\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":9330,"title":9331,"module":9303,"summary":9332},"\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":9334,"title":9335,"module":9303,"summary":9336},"\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":9338,"title":9339,"module":9340,"summary":9341},"\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":9343,"title":9344,"module":9340,"summary":9345},"\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":9347,"title":9348,"module":9340,"summary":9349},"\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":9351,"title":9352,"module":9340,"summary":9353},"\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":9355,"title":9356,"module":9340,"summary":9357},"\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":9359,"title":9360,"module":9361,"summary":9362},"\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":9364,"title":9365,"module":9361,"summary":9366},"\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":9368,"title":9369,"module":9361,"summary":9370},"\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":9372,"title":9373,"module":9361,"summary":9374},"\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":9376,"title":9377,"module":9361,"summary":9378},"\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":9380,"title":9381,"module":9361,"summary":9382},"\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":9384,"title":9385,"module":9361,"summary":9386},"\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":9388,"title":9389,"module":9390,"summary":9391},"\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":9393,"title":9394,"module":9390,"summary":9395},"\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":9397,"title":9398,"module":9390,"summary":9399},"\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":5728,"title":5,"module":5726,"summary":5746},{"path":5578,"title":9402,"module":5726,"summary":9403},"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":9405,"title":9406,"module":5726,"summary":9407},"\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":9409,"title":9410,"module":5726,"summary":9411},"\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":9413,"title":9414,"module":5726,"summary":9415},"\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":9417,"title":9418,"module":5726,"summary":9419},"\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":9421,"title":9422,"module":5726,"summary":9423},"\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":9425,"title":9426,"module":9427,"summary":9428},"\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":9430,"title":9431,"module":9427,"summary":9432},"\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":9434,"title":9435,"module":9427,"summary":9436},"\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":9438,"title":9439,"module":9427,"summary":9440},"\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":9442,"title":9443,"module":9427,"summary":9444},"\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":9446,"title":9447,"module":9427,"summary":9448},"\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":9450,"title":9451,"module":9427,"summary":9452},"\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":9454,"title":9455,"module":9427,"summary":9456},"\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":9458,"title":9459,"module":9427,"summary":9460},"\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":9462,"title":9463,"module":9427,"summary":9464},"\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":9466,"title":9467,"module":9427,"summary":9468},"\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":9470,"title":9471,"module":9472,"summary":9473},"\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":9475,"title":9476,"module":9472,"summary":9477},"\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":9479,"title":9480,"module":9472,"summary":9481},"\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":9483,"title":9484,"module":9472,"summary":9485},"\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":9487,"title":9488,"module":9472,"summary":9489},"\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":9491,"title":5603,"module":6,"summary":6},"\u002Fdeep-learning",{"path":9493,"title":9494,"module":7408,"summary":9495},"\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":9497,"title":9498,"module":7408,"summary":9499},"\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":9501,"title":9502,"module":7408,"summary":9503},"\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":9505,"title":9506,"module":7408,"summary":9507},"\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":9509,"title":9510,"module":7408,"summary":9511},"\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":9513,"title":9514,"module":9515,"summary":9516},"\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":9518,"title":9519,"module":9515,"summary":9520},"\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":9522,"title":9523,"module":9515,"summary":9524},"\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":9526,"title":9527,"module":9515,"summary":9528},"\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":9530,"title":9531,"module":9532,"summary":9533},"\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":9535,"title":9536,"module":9532,"summary":9537},"\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":9539,"title":9540,"module":9532,"summary":9541},"\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":9543,"title":9544,"module":9532,"summary":9545},"\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":9547,"title":9548,"module":9549,"summary":9550},"\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":9552,"title":9553,"module":9549,"summary":9554},"\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":9556,"title":9557,"module":9549,"summary":9558},"\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":9560,"title":9561,"module":9549,"summary":9562},"\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":9564,"title":9565,"module":9549,"summary":9566},"\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":9568,"title":9569,"module":9570,"summary":9571},"\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":9573,"title":9574,"module":9570,"summary":9575},"\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":9577,"title":9578,"module":9570,"summary":9579},"\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":9581,"title":9582,"module":9583,"summary":9584},"\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":9586,"title":9587,"module":9583,"summary":9588},"\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":9590,"title":9591,"module":9583,"summary":9592},"\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":9594,"title":9595,"module":9596,"summary":9597},"\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":9599,"title":9600,"module":9596,"summary":9601},"\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":9603,"title":9604,"module":9596,"summary":9605},"\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":9607,"title":9608,"module":9596,"summary":9609},"\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":9611,"title":9612,"module":9613,"summary":9614},"\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":9616,"title":9617,"module":9613,"summary":9618},"\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":9620,"title":9621,"module":9613,"summary":9622},"\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":9624,"title":9625,"module":9613,"summary":9626},"\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":9628,"title":9629,"module":9613,"summary":9630},"\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":9632,"title":9633,"module":9613,"summary":9634},"\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":9636,"title":9637,"module":9638,"summary":9639},"\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":9641,"title":9642,"module":9638,"summary":9643},"\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":9645,"title":9646,"module":9638,"summary":9647},"\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":9649,"title":9650,"module":9638,"summary":9651},"\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":9653,"title":9654,"module":9655,"summary":9656},"\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":9658,"title":9659,"module":9655,"summary":9660},"\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":9662,"title":9663,"module":9655,"summary":9664},"\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":9666,"title":9667,"module":9668,"summary":9669},"\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":9671,"title":9672,"module":9668,"summary":9673},"\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":9675,"title":9676,"module":9668,"summary":9677},"\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":9679,"title":9680,"module":9668,"summary":9681},"\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":9683,"title":9684,"module":9668,"summary":9685},"\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":9687,"title":9688,"module":9689,"summary":9690},"\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":9692,"title":9693,"module":9689,"summary":9694},"\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":9696,"title":9697,"module":9689,"summary":9698},"\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":9700,"title":9701,"module":6,"summary":6},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":9703,"title":9704,"module":9705,"summary":9706},"\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":9708,"title":9709,"module":9705,"summary":9710},"\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":9712,"title":9713,"module":9705,"summary":9714},"\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":9716,"title":9717,"module":9705,"summary":9718},"\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":9720,"title":9721,"module":9722,"summary":9723},"\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":9725,"title":9726,"module":9722,"summary":9727},"\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":9729,"title":9730,"module":9722,"summary":9731},"\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":9733,"title":9734,"module":9722,"summary":9735},"\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":9737,"title":9738,"module":9739,"summary":9740},"\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":9742,"title":9743,"module":9739,"summary":9744},"\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":9746,"title":9747,"module":9739,"summary":9748},"\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":9750,"title":9751,"module":9739,"summary":9752},"\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":9754,"title":9755,"module":9756,"summary":9757},"\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":9759,"title":9760,"module":9756,"summary":9761},"\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":9763,"title":9764,"module":9756,"summary":9765},"\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":9767,"title":9768,"module":9756,"summary":9769},"\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":9771,"title":9772,"module":9773,"summary":9774},"\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":9776,"title":9777,"module":9773,"summary":9778},"\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":9780,"title":9781,"module":9773,"summary":9782},"\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":9784,"title":9785,"module":9773,"summary":9786},"\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":9788,"title":9789,"module":9790,"summary":9791},"\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":9793,"title":9794,"module":9790,"summary":9795},"\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":9797,"title":9798,"module":9790,"summary":9799},"\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":9801,"title":9802,"module":9790,"summary":9803},"\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":9805,"title":9806,"module":9807,"summary":9808},"\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":9810,"title":9811,"module":9807,"summary":9812},"\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":9814,"title":9815,"module":9807,"summary":9816},"\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":9818,"title":9819,"module":9807,"summary":9820},"\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":9822,"title":9823,"module":9807,"summary":9824},"\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":9826,"title":9827,"module":9828,"summary":9829},"\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":9831,"title":9832,"module":9828,"summary":9833},"\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":9835,"title":9836,"module":9837,"summary":9838},"\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":9840,"title":9841,"module":9837,"summary":9842},"\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":9844,"title":9845,"module":9837,"summary":9846},"\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":9848,"title":9849,"module":9837,"summary":9850},"\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":9852,"title":9853,"module":9854,"summary":9855},"\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":9857,"title":9858,"module":9854,"summary":9859},"\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":9861,"title":9862,"module":9854,"summary":9863},"\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":9865,"title":9866,"module":9854,"summary":9867},"\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":9869,"title":9870,"module":9854,"summary":9871},"\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":9873,"title":9874,"module":9875,"summary":9876},"\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":9878,"title":9879,"module":9875,"summary":9880},"\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":9882,"title":9883,"module":9875,"summary":9884},"\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":9886,"title":9887,"module":9875,"summary":9888},"\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":9890,"title":9891,"module":6,"summary":6},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":9893,"title":9894,"module":6664,"summary":9895},"\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":9897,"title":9898,"module":9899,"summary":9900},"\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":9902,"title":9903,"module":9899,"summary":9904},"\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":9906,"title":9907,"module":9899,"summary":9908},"\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":9910,"title":9911,"module":9899,"summary":9912},"\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":9914,"title":9915,"module":9899,"summary":9916},"\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":9918,"title":9919,"module":9899,"summary":9920},"\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":9922,"title":9923,"module":9899,"summary":9924},"\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":9926,"title":9927,"module":9928,"summary":9929},"\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":9931,"title":9932,"module":9928,"summary":9933},"\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":9935,"title":9936,"module":9928,"summary":9937},"\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":9939,"title":9940,"module":9928,"summary":9941},"\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":9943,"title":9944,"module":9945,"summary":9946},"\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":9948,"title":9949,"module":9945,"summary":9950},"\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":9952,"title":9953,"module":9945,"summary":9954},"\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":9956,"title":9957,"module":9945,"summary":9958},"\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":9960,"title":9961,"module":9962,"summary":9963},"\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":9965,"title":9966,"module":9962,"summary":9967},"\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":9969,"title":9970,"module":9962,"summary":9971},"\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":9973,"title":9974,"module":9962,"summary":9975},"\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":9977,"title":9978,"module":9979,"summary":9980},"\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":9982,"title":9983,"module":9979,"summary":9984},"\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":9986,"title":9987,"module":9979,"summary":9988},"\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":9990,"title":9991,"module":9979,"summary":9992},"\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":9994,"title":9995,"module":9996,"summary":9997},"\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":9999,"title":10000,"module":9996,"summary":10001},"\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":10003,"title":10004,"module":9996,"summary":10005},"\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":10007,"title":10008,"module":10009,"summary":10010},"\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":10012,"title":10013,"module":10009,"summary":10014},"\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":10016,"title":10017,"module":10018,"summary":10019},"\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":10021,"title":10022,"module":10018,"summary":10023},"\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":10025,"title":10026,"module":10018,"summary":10027},"\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":10029,"title":10030,"module":6,"summary":6},"\u002Flogic","Logic",{"path":10032,"title":10033,"module":6664,"summary":10034},"\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":10036,"title":10037,"module":6664,"summary":10038},"\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":10040,"title":10041,"module":6664,"summary":10042},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","Multi-Armed Bandits","A bandit is reinforcement learning stripped to a single decision, repeated: no state, no consequences, only the tension between exploiting the arm that looks best and exploring the ones that might be better. We build up the whole toolkit — sample-average value estimates, the incremental update rule, ε-greedy, optimistic initialization, UCB, and gradient bandits — and use it to study exploration in isolation, the one problem that carries over to the full setting.\n",{"path":10044,"title":10045,"module":6664,"summary":10046},"\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":10048,"title":10049,"module":6664,"summary":10050},"\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":10052,"title":10053,"module":6664,"summary":10054},"\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":10056,"title":6883,"module":10057,"summary":10058},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","Tabular Solution Methods","Dynamic programming computes optimal policies when a perfect model of the MDP is given, by turning the Bellman equations into assignment statements. We build up iterative policy evaluation (the expected update), the policy improvement theorem, and the two classic algorithms that alternate them — policy iteration and value iteration — worked on the gridworld, a two-state MDP, Jack's car rental, and the gambler's problem.\n",{"path":10060,"title":10061,"module":10057,"summary":10062},"\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":10064,"title":10065,"module":10057,"summary":10066},"\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":10068,"title":10069,"module":10057,"summary":10070},"\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":10072,"title":10073,"module":10057,"summary":10074},"\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":10076,"title":10077,"module":10057,"summary":10078},"\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":10080,"title":10081,"module":10057,"summary":10082},"\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":10084,"title":10085,"module":10057,"summary":10086},"\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":10088,"title":10089,"module":10057,"summary":10090},"\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":10092,"title":10093,"module":10057,"summary":10094},"\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":10096,"title":10097,"module":10057,"summary":10098},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning","Planning need not build a global policy. Decision-time planning runs a fresh lookahead every time a state arrives and returns just one action, then throws the work away. We start from real-time dynamic programming — asynchronous value iteration on the states the agent actually visits — then move through heuristic search and rollout algorithms, each a one-step policy improvement applied on the fly to the current state.\n",{"path":10100,"title":10101,"module":10057,"summary":10102},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search","Monte Carlo Tree Search","Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value estimates across simulations and steers later ones toward promising branches. We work through the four steps — selection, expansion, simulation, backup — the UCT selection rule computed on real numbers, the asymmetric growing tree, and the full pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo, AlphaZero, and MuZero, where a learned network stands in for the leaf value and the rollout.\n",{"path":10104,"title":10105,"module":10106,"summary":10107},"\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":10109,"title":10110,"module":10106,"summary":10111},"\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":10113,"title":10114,"module":10106,"summary":10115},"\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":10117,"title":10118,"module":10106,"summary":10119},"\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":10121,"title":10122,"module":10106,"summary":10123},"\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":10125,"title":10126,"module":10106,"summary":10127},"\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":10129,"title":10130,"module":10106,"summary":10131},"\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":10133,"title":10134,"module":10106,"summary":10135},"\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":10137,"title":10138,"module":10106,"summary":10139},"\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":10141,"title":10142,"module":10106,"summary":10143},"\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":10145,"title":10146,"module":10106,"summary":10147},"\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":10149,"title":10150,"module":10106,"summary":10151},"\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":10153,"title":10154,"module":10106,"summary":10155},"\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":10157,"title":10158,"module":10106,"summary":10159},"\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":10161,"title":9480,"module":10162,"summary":10163},"\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":10165,"title":10166,"module":10162,"summary":10167},"\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":10169,"title":10170,"module":10162,"summary":10171},"\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":10173,"title":10174,"module":10162,"summary":10175},"\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":10177,"title":10178,"module":10162,"summary":10179},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","Case Studies: Learning to Play","The game-playing systems that turned reinforcement learning from a theory into a track record: Samuel's checkers player, TD-Gammon, Watson's Daily-Double wagering, a reinforcement-learning memory controller, DQN, and AlphaGo through AlphaGo Zero. Read as a set they draw one line — a value function, learned by self-play or interaction, refined by search, carried by a deep network — that runs from a 1959 checkers program to superhuman Go.\n",{"path":10181,"title":10182,"module":10162,"summary":10183},"\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":10185,"title":10186,"module":10162,"summary":10187},"\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":10189,"title":10190,"module":10162,"summary":10191},"\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":10193,"title":10194,"module":10195,"summary":10196},"\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":10198,"title":10199,"module":10195,"summary":10200},"\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":10202,"title":10203,"module":10195,"summary":10204},"\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":10206,"title":10207,"module":10195,"summary":10208},"\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":10210,"title":10211,"module":10195,"summary":10212},"\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":10214,"title":10215,"module":10195,"summary":10216},"\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":10218,"title":10219,"module":10195,"summary":10220},"\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":10222,"title":10223,"module":10195,"summary":10224},"\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":10226,"title":10227,"module":10195,"summary":10228},"\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":10230,"title":10231,"module":10195,"summary":10232},"\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":10234,"title":10235,"module":10195,"summary":10236},"\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":10238,"title":10239,"module":10195,"summary":10240},"\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":10242,"title":10243,"module":10195,"summary":10244},"\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":10246,"title":10247,"module":10195,"summary":10248},"\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":10250,"title":10251,"module":10195,"summary":10252},"\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":10254,"title":10255,"module":10195,"summary":10256},"\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":10258,"title":10259,"module":10195,"summary":10260},"\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":10262,"title":10263,"module":10195,"summary":10264},"\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":10266,"title":10267,"module":10195,"summary":10268},"\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":10270,"title":10271,"module":10195,"summary":10272},"\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":10274,"title":10275,"module":10195,"summary":10276},"\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":10278,"title":10279,"module":10195,"summary":10280},"\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":10282,"title":10283,"module":10284,"summary":10285},"\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":10287,"title":10288,"module":10284,"summary":10289},"\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":10291,"title":10292,"module":10284,"summary":10293},"\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":10295,"title":10296,"module":10284,"summary":10297},"\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":10299,"title":10300,"module":10284,"summary":10301},"\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":10303,"title":10304,"module":10284,"summary":10305},"\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":10307,"title":10308,"module":10284,"summary":10309},"\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":10311,"title":10312,"module":10284,"summary":10313},"\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":10315,"title":9472,"module":6,"summary":6},"\u002Freinforcement-learning",{"path":10317,"title":10318,"module":6664,"summary":10319},"\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":10321,"title":10322,"module":6664,"summary":10323},"\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":10325,"title":10326,"module":6664,"summary":10327},"\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":10329,"title":10330,"module":6664,"summary":10331},"\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":10333,"title":10334,"module":10335,"summary":10336},"\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":10338,"title":10339,"module":10335,"summary":10340},"\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":10342,"title":10343,"module":10335,"summary":10344},"\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":10346,"title":10347,"module":10335,"summary":10348},"\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":10350,"title":10351,"module":10335,"summary":10352},"\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":10354,"title":10355,"module":10335,"summary":10356},"\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":10358,"title":10359,"module":10335,"summary":10360},"\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":10362,"title":10363,"module":10335,"summary":10364},"\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":10366,"title":10367,"module":10335,"summary":10368},"\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":10370,"title":10371,"module":10335,"summary":10372},"\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":10374,"title":10375,"module":10335,"summary":10376},"\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":10378,"title":10379,"module":10335,"summary":10380},"\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":10382,"title":10383,"module":10384,"summary":10385},"\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":10387,"title":10388,"module":10384,"summary":10389},"\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":10391,"title":10392,"module":10384,"summary":10393},"\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":10395,"title":10396,"module":10384,"summary":10397},"\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":10399,"title":10400,"module":10384,"summary":10401},"\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":10403,"title":10404,"module":10384,"summary":10405},"\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":10407,"title":10408,"module":10384,"summary":10409},"\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":10411,"title":10412,"module":10384,"summary":10413},"\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":10415,"title":10416,"module":10384,"summary":10417},"\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":10419,"title":10420,"module":10384,"summary":10421},"\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":10423,"title":10424,"module":10384,"summary":10425},"\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":10427,"title":10428,"module":10384,"summary":10429},"\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":10431,"title":10432,"module":10433,"summary":10434},"\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":10436,"title":10437,"module":10433,"summary":10438},"\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":10440,"title":10441,"module":10433,"summary":10442},"\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":10444,"title":10445,"module":10433,"summary":10446},"\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":10448,"title":10449,"module":10433,"summary":10450},"\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":10452,"title":10453,"module":10433,"summary":10454},"\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":10456,"title":10457,"module":10433,"summary":10458},"\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":10460,"title":10049,"module":10433,"summary":10461},"\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":10463,"title":10464,"module":10433,"summary":10465},"\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":10467,"title":10468,"module":10433,"summary":10469},"\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":10471,"title":10472,"module":10473,"summary":10474},"\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":10476,"title":10477,"module":10473,"summary":10478},"\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":10480,"title":10481,"module":10473,"summary":10482},"\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":10484,"title":10485,"module":10473,"summary":10486},"\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":10488,"title":9472,"module":10473,"summary":10489},"\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":10491,"title":10492,"module":10473,"summary":10493},"\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":10495,"title":10496,"module":10473,"summary":10497},"\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":10499,"title":10500,"module":10473,"summary":10501},"\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":10503,"title":10504,"module":10505,"summary":10506},"\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":10508,"title":10509,"module":10505,"summary":10510},"\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":10512,"title":10513,"module":10505,"summary":10514},"\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":10516,"title":10517,"module":10505,"summary":10518},"\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":10520,"title":10521,"module":10505,"summary":10522},"\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":10524,"title":10525,"module":10505,"summary":10526},"\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":10528,"title":10529,"module":10505,"summary":10530},"\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":10532,"title":10533,"module":10505,"summary":10534},"\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":10536,"title":10537,"module":6,"summary":6},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":10539,"title":10540,"module":10541,"summary":10542},"\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":10544,"title":10545,"module":10541,"summary":10546},"\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":10548,"title":10549,"module":10541,"summary":10550},"\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":10552,"title":10553,"module":10541,"summary":10554},"\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":10556,"title":10557,"module":10541,"summary":10558},"\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":10560,"title":10561,"module":10562,"summary":10563},"\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":10565,"title":10566,"module":10562,"summary":10567},"\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":10569,"title":10570,"module":10562,"summary":10571},"\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":10573,"title":10574,"module":10562,"summary":10575},"\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":10577,"title":10578,"module":10579,"summary":10580},"\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":10582,"title":10583,"module":10579,"summary":10584},"\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":10586,"title":10587,"module":10579,"summary":10588},"\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":10590,"title":10591,"module":10579,"summary":10592},"\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":10594,"title":10595,"module":10596,"summary":10597},"\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":10599,"title":10600,"module":10596,"summary":10601},"\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":10603,"title":10604,"module":10605,"summary":10606},"\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":10608,"title":10609,"module":10605,"summary":10610},"\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":10612,"title":10613,"module":10614,"summary":10615},"\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":10617,"title":10618,"module":10614,"summary":10619},"\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":10621,"title":10622,"module":10614,"summary":10623},"\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":10625,"title":10626,"module":10614,"summary":10627},"\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":10629,"title":10630,"module":10631,"summary":10632},"\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":10634,"title":10635,"module":10631,"summary":10636},"\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":10638,"title":10639,"module":10631,"summary":10640},"\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":10642,"title":10643,"module":10644,"summary":10645},"\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":10647,"title":10648,"module":10644,"summary":10649},"\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":10651,"title":10652,"module":10644,"summary":10653},"\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":10655,"title":10656,"module":10657,"summary":10658},"\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":10660,"title":10661,"module":10657,"summary":10662},"\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":10664,"title":10665,"module":10666,"summary":10667},"\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":10669,"title":10670,"module":10666,"summary":10671},"\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":10673,"title":10674,"module":10666,"summary":10675},"\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":10677,"title":10678,"module":10679,"summary":10680},"\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":10682,"title":10683,"module":10679,"summary":10684},"\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":10686,"title":10687,"module":10679,"summary":10688},"\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":10690,"title":10691,"module":10679,"summary":10692},"\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":10694,"title":10695,"module":10679,"summary":10696},"\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":10698,"title":10699,"module":6,"summary":6},"\u002Fnuclear-physics","Nuclear Physics",{"path":10701,"title":10702,"module":6664,"summary":10703},"\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":10705,"title":10706,"module":6664,"summary":10707},"\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":10709,"title":10710,"module":6664,"summary":10711},"\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":10713,"title":10714,"module":6664,"summary":10715},"\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":10717,"title":10718,"module":6664,"summary":10719},"\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":10721,"title":10722,"module":10723,"summary":10724},"\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":10726,"title":10727,"module":10723,"summary":10728},"\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":10730,"title":10731,"module":10723,"summary":10732},"\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":10734,"title":10735,"module":10723,"summary":10736},"\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":10738,"title":10739,"module":10740,"summary":10741},"\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":10743,"title":10744,"module":10740,"summary":10745},"\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":10747,"title":10748,"module":10740,"summary":10749},"\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":10751,"title":10752,"module":7130,"summary":10753},"\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":10755,"title":10756,"module":7130,"summary":10757},"\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":10759,"title":10760,"module":7130,"summary":10761},"\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":10763,"title":10764,"module":7612,"summary":10765},"\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":10767,"title":9323,"module":7612,"summary":10768},"\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":10770,"title":9426,"module":7612,"summary":10771},"\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":10773,"title":10774,"module":7612,"summary":10775},"\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":10777,"title":10778,"module":7612,"summary":10779},"\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":10781,"title":10782,"module":7612,"summary":10783},"\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":10785,"title":10786,"module":10787,"summary":10788},"\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":10790,"title":10791,"module":10787,"summary":10792},"\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":10794,"title":10795,"module":10787,"summary":10796},"\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":10798,"title":10799,"module":10787,"summary":10800},"\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":10802,"title":10803,"module":10787,"summary":10804},"\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":10806,"title":10807,"module":10787,"summary":10808},"\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":10810,"title":10811,"module":10787,"summary":10812},"\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":10814,"title":10815,"module":10787,"summary":10816},"\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":10818,"title":10819,"module":10787,"summary":10820},"\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":10822,"title":10823,"module":10787,"summary":10824},"\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":10826,"title":10827,"module":10787,"summary":10828},"\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":10830,"title":10831,"module":10787,"summary":10832},"\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":10834,"title":10835,"module":10787,"summary":10836},"\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":10838,"title":10839,"module":10787,"summary":10840},"\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":10842,"title":10843,"module":10787,"summary":10844},"\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":10846,"title":10847,"module":10787,"summary":10848},"\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":10850,"title":10851,"module":10787,"summary":10852},"\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":10854,"title":10855,"module":10787,"summary":10856},"\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":10858,"title":10859,"module":10787,"summary":10860},"\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":10862,"title":10863,"module":10787,"summary":10864},"\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":10866,"title":10867,"module":9414,"summary":10868},"\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":10870,"title":10871,"module":9414,"summary":10872},"\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":10874,"title":10875,"module":9414,"summary":10876},"\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":10878,"title":10879,"module":9414,"summary":10880},"\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":10882,"title":10883,"module":9414,"summary":10884},"\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":10886,"title":10887,"module":9414,"summary":10888},"\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":10890,"title":10891,"module":9414,"summary":10892},"\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":10894,"title":10895,"module":9414,"summary":10896},"\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":10898,"title":10899,"module":10900,"summary":10901},"\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":10903,"title":10904,"module":10900,"summary":10905},"\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":10907,"title":10908,"module":10900,"summary":10909},"\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":10911,"title":10912,"module":10900,"summary":10913},"\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":10915,"title":10916,"module":6,"summary":6},"\u002Fnatural-language-processing","Natural Language Processing",{"path":10918,"title":10919,"module":6664,"summary":10920},"\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":10922,"title":10923,"module":6664,"summary":10924},"\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":10926,"title":10927,"module":6664,"summary":10928},"\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":10930,"title":10931,"module":10932,"summary":10933},"\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":10935,"title":10936,"module":10932,"summary":10937},"\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":10939,"title":10940,"module":10932,"summary":10941},"\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":10943,"title":10944,"module":10932,"summary":10945},"\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":10947,"title":10948,"module":10949,"summary":10950},"\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":10952,"title":10953,"module":10949,"summary":10954},"\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":10956,"title":10957,"module":10949,"summary":10958},"\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":10960,"title":10961,"module":10949,"summary":10962},"\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":10964,"title":10965,"module":10966,"summary":10967},"\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":10969,"title":10970,"module":10966,"summary":10971},"\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":10973,"title":10974,"module":10966,"summary":10975},"\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":10977,"title":10978,"module":10966,"summary":10979},"\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":10981,"title":10982,"module":10983,"summary":10984},"\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":10986,"title":10987,"module":10983,"summary":10988},"\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":10990,"title":10991,"module":10983,"summary":10992},"\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":10994,"title":10995,"module":10996,"summary":10997},"\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":10999,"title":11000,"module":10996,"summary":11001},"\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":11003,"title":11004,"module":10996,"summary":11005},"\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":11007,"title":11008,"module":10996,"summary":11009},"\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":11011,"title":11012,"module":11013,"summary":11014},"\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":11016,"title":11017,"module":11013,"summary":11018},"\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":11020,"title":11021,"module":11013,"summary":11022},"\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":11024,"title":11025,"module":11013,"summary":11026},"\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":11028,"title":11029,"module":11030,"summary":11031},"\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":11033,"title":11034,"module":11030,"summary":11035},"\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":11037,"title":11038,"module":11030,"summary":11039},"\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":11041,"title":11042,"module":11030,"summary":11043},"\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":11045,"title":11046,"module":11047,"summary":11048},"\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":11050,"title":11051,"module":11047,"summary":11052},"\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":11054,"title":11055,"module":11047,"summary":11056},"\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":11058,"title":11059,"module":11047,"summary":11060},"\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":11062,"title":11063,"module":11047,"summary":11064},"\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":11066,"title":11067,"module":11068,"summary":11069},"\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":11071,"title":11072,"module":11068,"summary":11073},"\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":11075,"title":11076,"module":11068,"summary":11077},"\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":11079,"title":11080,"module":11081,"summary":11082},"\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":11084,"title":11085,"module":11081,"summary":11086},"\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":11088,"title":11089,"module":11081,"summary":11090},"\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":11092,"title":11093,"module":11093,"summary":11094},"\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":11096,"title":11097,"module":11093,"summary":11098},"\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":11100,"title":11101,"module":11093,"summary":11102},"\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":11104,"title":11105,"module":11093,"summary":11106},"\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":11108,"title":11109,"module":11093,"summary":11110},"\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":11112,"title":11113,"module":11093,"summary":11114},"\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":11116,"title":11117,"module":6,"summary":6},"\u002Fparticle-physics","Particle Physics",{"path":11119,"title":11120,"module":11121,"summary":11122},"\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":11124,"title":11125,"module":11121,"summary":11126},"\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":11128,"title":11129,"module":11121,"summary":11130},"\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":11132,"title":11133,"module":11134,"summary":11135},"\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":11137,"title":11138,"module":11134,"summary":11139},"\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":11141,"title":11142,"module":11134,"summary":11143},"\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":11145,"title":11146,"module":11134,"summary":11147},"\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":11149,"title":11150,"module":11151,"summary":11152},"\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":11154,"title":11155,"module":11151,"summary":11156},"\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":11158,"title":11159,"module":11151,"summary":11160},"\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":11162,"title":11163,"module":11151,"summary":11164},"\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":11166,"title":11167,"module":11168,"summary":11169},"\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":11171,"title":11172,"module":11168,"summary":11173},"\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":11175,"title":11176,"module":11168,"summary":11177},"\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":11179,"title":11180,"module":11168,"summary":11181},"\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":11183,"title":11184,"module":11185,"summary":11186},"\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":11188,"title":11189,"module":11185,"summary":11190},"\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":11192,"title":11193,"module":11185,"summary":11194},"\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":11196,"title":11197,"module":11185,"summary":11198},"\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":11200,"title":11201,"module":11202,"summary":11203},"\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":11205,"title":11206,"module":11202,"summary":11207},"\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":11209,"title":11210,"module":11202,"summary":11211},"\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":11213,"title":11214,"module":11215,"summary":11216},"\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":11218,"title":11219,"module":11215,"summary":11220},"\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":11222,"title":11223,"module":11215,"summary":11224},"\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":11226,"title":11227,"module":11215,"summary":11228},"\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":11230,"title":9646,"module":11231,"summary":11232},"\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":11234,"title":11235,"module":11231,"summary":11236},"\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":11238,"title":11239,"module":11231,"summary":11240},"\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":11242,"title":11243,"module":11231,"summary":11244},"\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":11246,"title":11247,"module":11231,"summary":11248},"\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":11250,"title":11251,"module":11252,"summary":11253},"\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":11255,"title":11256,"module":11252,"summary":11257},"\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":11259,"title":11260,"module":11252,"summary":11261},"\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":11263,"title":11264,"module":11252,"summary":11265},"\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":11267,"title":11268,"module":11269,"summary":11270},"\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":11272,"title":11273,"module":11269,"summary":11274},"\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":11276,"title":11277,"module":11269,"summary":11278},"\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":11280,"title":11281,"module":11269,"summary":11282},"\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":11284,"title":11285,"module":11269,"summary":11286},"\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":11288,"title":11289,"module":11290,"summary":11291},"\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":11293,"title":11294,"module":11290,"summary":11295},"\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":11297,"title":8371,"module":11290,"summary":11298},"\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":11300,"title":11301,"module":11290,"summary":11302},"\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":11304,"title":11305,"module":11290,"summary":11306},"\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":11308,"title":11309,"module":11310,"summary":11311},"\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":11313,"title":11314,"module":11310,"summary":11315},"\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":11317,"title":11318,"module":11310,"summary":11319},"\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":11321,"title":11322,"module":11310,"summary":11323},"\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":11325,"title":11326,"module":11310,"summary":11327},"\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":11329,"title":11330,"module":11310,"summary":11331},"\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":11333,"title":11334,"module":11310,"summary":11335},"\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":11337,"title":11338,"module":6,"summary":6},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":11340,"title":11341,"module":6,"summary":6},"\u002Fcolophon","Colophon",{"path":1666,"title":11343,"module":6,"summary":6},"Study Notes",[11345,11358,11367,11381,11394,11405,11429,11442,11459,11468,11486,11512],{"module":9217,"moduleNumber":5724,"slug":11346,"lessons":11347},"mathematical-background",[11348,11350,11352,11355],{"title":7858,"path":9216,"lessonNumber":5724,"topics":11349,"summary":9218},[9217],{"title":9221,"path":9220,"lessonNumber":5707,"topics":11351,"summary":9222},[9217],{"title":9225,"path":9224,"lessonNumber":11353,"topics":11354,"summary":9226},3,[9217],{"title":7217,"path":9228,"lessonNumber":11356,"topics":11357,"summary":9229},4,[9217],{"module":6664,"moduleNumber":5707,"slug":11359,"lessons":11360},"foundations",[11361,11363,11365],{"title":9232,"path":9231,"lessonNumber":5724,"topics":11362,"summary":9233},[6664],{"title":9235,"path":2884,"lessonNumber":5707,"topics":11364,"summary":9236},[6664],{"title":9239,"path":9238,"lessonNumber":11353,"topics":11366,"summary":9240},[6664],{"module":9244,"moduleNumber":11353,"slug":11368,"lessons":11369},"neural-networks",[11370,11372,11374,11376,11378],{"title":9243,"path":9242,"lessonNumber":5724,"topics":11371,"summary":9245},[9244],{"title":9248,"path":9247,"lessonNumber":5707,"topics":11373,"summary":9249},[9244],{"title":9252,"path":9251,"lessonNumber":11353,"topics":11375,"summary":9253},[9244],{"title":9256,"path":9255,"lessonNumber":11356,"topics":11377,"summary":9257},[9244],{"title":9260,"path":9259,"lessonNumber":11379,"topics":11380,"summary":9261},5,[9244],{"module":9265,"moduleNumber":11356,"slug":11382,"lessons":11383},"optimization",[11384,11386,11388,11390,11392],{"title":9264,"path":9263,"lessonNumber":5724,"topics":11385,"summary":9266},[9265],{"title":9269,"path":9268,"lessonNumber":5707,"topics":11387,"summary":9270},[9265],{"title":9273,"path":9272,"lessonNumber":11353,"topics":11389,"summary":9274},[9265],{"title":9277,"path":9276,"lessonNumber":11356,"topics":11391,"summary":9278},[9265],{"title":9281,"path":9280,"lessonNumber":11379,"topics":11393,"summary":9282},[9265],{"module":9286,"moduleNumber":11379,"slug":11395,"lessons":11396},"regularization",[11397,11399,11401,11403],{"title":9285,"path":9284,"lessonNumber":5724,"topics":11398,"summary":9287},[9286],{"title":9290,"path":9289,"lessonNumber":5707,"topics":11400,"summary":9291},[9286],{"title":9294,"path":9293,"lessonNumber":11353,"topics":11402,"summary":9295},[9286],{"title":9298,"path":9297,"lessonNumber":11356,"topics":11404,"summary":9299},[9286],{"module":9303,"moduleNumber":11406,"slug":11407,"lessons":11408},6,"architectures",[11409,11411,11413,11415,11417,11419,11421,11424,11427],{"title":9302,"path":9301,"lessonNumber":5724,"topics":11410,"summary":9304},[9303],{"title":9307,"path":9306,"lessonNumber":5707,"topics":11412,"summary":9308},[9303],{"title":9311,"path":9310,"lessonNumber":11353,"topics":11414,"summary":9312},[9303],{"title":9315,"path":9314,"lessonNumber":11356,"topics":11416,"summary":9316},[9303],{"title":9319,"path":9318,"lessonNumber":11379,"topics":11418,"summary":9320},[9303],{"title":9323,"path":9322,"lessonNumber":11406,"topics":11420,"summary":9324},[9303],{"title":9327,"path":9326,"lessonNumber":11422,"topics":11423,"summary":9328},7,[9303],{"title":9331,"path":9330,"lessonNumber":11425,"topics":11426,"summary":9332},8,[9303],{"title":9335,"path":9334,"lessonNumber":5723,"topics":11428,"summary":9336},[9303],{"module":9340,"moduleNumber":11422,"slug":11430,"lessons":11431},"theory",[11432,11434,11436,11438,11440],{"title":9339,"path":9338,"lessonNumber":5724,"topics":11433,"summary":9341},[9340],{"title":9344,"path":9343,"lessonNumber":5707,"topics":11435,"summary":9345},[9340],{"title":9348,"path":9347,"lessonNumber":11353,"topics":11437,"summary":9349},[9340],{"title":9352,"path":9351,"lessonNumber":11356,"topics":11439,"summary":9353},[9340],{"title":9356,"path":9355,"lessonNumber":11379,"topics":11441,"summary":9357},[9340],{"module":9361,"moduleNumber":11425,"slug":11443,"lessons":11444},"generative-models",[11445,11447,11449,11451,11453,11455,11457],{"title":9360,"path":9359,"lessonNumber":5724,"topics":11446,"summary":9362},[9361],{"title":9365,"path":9364,"lessonNumber":5707,"topics":11448,"summary":9366},[9361],{"title":9369,"path":9368,"lessonNumber":11353,"topics":11450,"summary":9370},[9361],{"title":9373,"path":9372,"lessonNumber":11356,"topics":11452,"summary":9374},[9361],{"title":9377,"path":9376,"lessonNumber":11379,"topics":11454,"summary":9378},[9361],{"title":9381,"path":9380,"lessonNumber":11406,"topics":11456,"summary":9382},[9361],{"title":9385,"path":9384,"lessonNumber":11422,"topics":11458,"summary":9386},[9361],{"module":9390,"moduleNumber":5723,"slug":11460,"lessons":11461},"probabilistic-methods",[11462,11464,11466],{"title":9389,"path":9388,"lessonNumber":5724,"topics":11463,"summary":9391},[9390],{"title":9394,"path":9393,"lessonNumber":5707,"topics":11465,"summary":9395},[9390],{"title":9398,"path":9397,"lessonNumber":11353,"topics":11467,"summary":9399},[9390],{"module":5726,"moduleNumber":11469,"slug":11470,"lessons":11471},10,"practical",[11472,11474,11476,11478,11480,11482,11484],{"title":5,"path":5728,"lessonNumber":5724,"topics":11473,"summary":5746},[5726],{"title":9402,"path":5578,"lessonNumber":5707,"topics":11475,"summary":9403},[5726],{"title":9406,"path":9405,"lessonNumber":11353,"topics":11477,"summary":9407},[5726],{"title":9410,"path":9409,"lessonNumber":11356,"topics":11479,"summary":9411},[5726],{"title":9414,"path":9413,"lessonNumber":11379,"topics":11481,"summary":9415},[5726],{"title":9418,"path":9417,"lessonNumber":11406,"topics":11483,"summary":9419},[5726],{"title":9422,"path":9421,"lessonNumber":11422,"topics":11485,"summary":9423},[5726],{"module":9427,"moduleNumber":11487,"slug":11488,"lessons":11489},11,"large-models-and-agents",[11490,11492,11494,11496,11498,11500,11502,11504,11506,11508,11510],{"title":9426,"path":9425,"lessonNumber":5724,"topics":11491,"summary":9428},[9427],{"title":9431,"path":9430,"lessonNumber":5707,"topics":11493,"summary":9432},[9427],{"title":9435,"path":9434,"lessonNumber":11353,"topics":11495,"summary":9436},[9427],{"title":9439,"path":9438,"lessonNumber":11356,"topics":11497,"summary":9440},[9427],{"title":9443,"path":9442,"lessonNumber":11379,"topics":11499,"summary":9444},[9427],{"title":9447,"path":9446,"lessonNumber":11406,"topics":11501,"summary":9448},[9427],{"title":9451,"path":9450,"lessonNumber":11422,"topics":11503,"summary":9452},[9427],{"title":9455,"path":9454,"lessonNumber":11425,"topics":11505,"summary":9456},[9427],{"title":9459,"path":9458,"lessonNumber":5723,"topics":11507,"summary":9460},[9427],{"title":9463,"path":9462,"lessonNumber":11469,"topics":11509,"summary":9464},[9427],{"title":9467,"path":9466,"lessonNumber":11487,"topics":11511,"summary":9468},[9427],{"module":9472,"moduleNumber":11513,"slug":11514,"lessons":11515},12,"reinforcement-learning",[11516,11518,11520,11522,11524],{"title":9471,"path":9470,"lessonNumber":5724,"topics":11517,"summary":9473},[9472],{"title":9476,"path":9475,"lessonNumber":5707,"topics":11519,"summary":9477},[9472],{"title":9480,"path":9479,"lessonNumber":11353,"topics":11521,"summary":9481},[9472],{"title":9484,"path":9483,"lessonNumber":11356,"topics":11523,"summary":9485},[9472],{"title":9488,"path":9487,"lessonNumber":11379,"topics":11525,"summary":9489},[9472],"\u003Csvg style=\"width:100%;max-width:488.517px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 366.388 230.973\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M113.602-40.572h76.823V-71.87h-76.823Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-29.049 -78.608)\">\u003Cpath d=\"M172.564 20.246Q172.564 19.965 172.775 19.754Q172.986 19.543 173.271 19.453Q173.115 19.328 173.037 19.139Q172.959 18.950 172.959 18.750Q172.959 18.395 173.189 18.102Q172.822 17.762 172.822 17.293Q172.822 16.942 173.025 16.672Q173.228 16.403 173.549 16.256Q173.869 16.110 174.213 16.110Q174.732 16.110 175.103 16.391Q175.467 16.020 176.013 16.020Q176.193 16.020 176.320 16.147Q176.447 16.274 176.447 16.453Q176.447 16.559 176.369 16.637Q176.291 16.715 176.181 16.715Q176.072 16.715 175.996 16.639Q175.920 16.563 175.920 16.453Q175.920 16.352 175.959 16.301Q175.967 16.293 175.971 16.287Q175.974 16.282 175.974 16.278Q175.599 16.278 175.279 16.532Q175.599 16.871 175.599 17.293Q175.599 17.563 175.482 17.780Q175.365 17.996 175.160 18.155Q174.955 18.313 174.713 18.395Q174.471 18.477 174.213 18.477Q173.994 18.477 173.781 18.418Q173.568 18.360 173.373 18.239Q173.279 18.379 173.279 18.559Q173.279 18.766 173.416 18.918Q173.553 19.071 173.760 19.071L174.455 19.071Q174.943 19.071 175.355 19.155Q175.767 19.239 176.047 19.496Q176.326 19.754 176.326 20.246Q176.326 20.610 176.006 20.842Q175.685 21.075 175.244 21.176Q174.803 21.278 174.447 21.278Q174.092 21.278 173.648 21.176Q173.205 21.075 172.885 20.842Q172.564 20.610 172.564 20.246M173.068 20.246Q173.068 20.442 173.213 20.590Q173.357 20.739 173.570 20.828Q173.783 20.918 174.023 20.965Q174.263 21.012 174.447 21.012Q174.689 21.012 175.019 20.934Q175.349 20.856 175.586 20.682Q175.822 20.508 175.822 20.246Q175.822 19.840 175.412 19.731Q175.002 19.621 174.439 19.621L173.760 19.621Q173.490 19.621 173.279 19.799Q173.068 19.977 173.068 20.246M174.213 18.211Q174.935 18.211 174.935 17.293Q174.935 16.371 174.213 16.371Q173.486 16.371 173.486 17.293Q173.486 18.211 174.213 18.211M176.810 17.942Q176.810 17.438 177.066 17.006Q177.322 16.575 177.758 16.323Q178.193 16.071 178.693 16.071Q179.080 16.071 179.422 16.215Q179.763 16.360 180.025 16.621Q180.287 16.883 180.430 17.219Q180.572 17.555 180.572 17.942Q180.572 18.434 180.308 18.844Q180.045 19.254 179.615 19.485Q179.185 19.715 178.693 19.715Q178.201 19.715 177.767 19.483Q177.334 19.250 177.072 18.842Q176.810 18.434 176.810 17.942M178.693 19.438Q179.150 19.438 179.402 19.215Q179.654 18.992 179.742 18.641Q179.830 18.289 179.830 17.844Q179.830 17.414 179.736 17.076Q179.642 16.739 179.388 16.532Q179.135 16.325 178.693 16.325Q178.045 16.325 177.801 16.741Q177.556 17.157 177.556 17.844Q177.556 18.289 177.644 18.641Q177.732 18.992 177.984 19.215Q178.236 19.438 178.693 19.438M181.154 18.805Q181.154 18.321 181.556 18.026Q181.959 17.731 182.510 17.612Q183.060 17.492 183.553 17.492L183.553 17.203Q183.553 16.977 183.437 16.770Q183.322 16.563 183.125 16.444Q182.928 16.325 182.697 16.325Q182.271 16.325 181.986 16.430Q182.056 16.457 182.103 16.512Q182.150 16.567 182.176 16.637Q182.201 16.707 182.201 16.782Q182.201 16.887 182.150 16.979Q182.099 17.071 182.008 17.121Q181.916 17.172 181.810 17.172Q181.705 17.172 181.613 17.121Q181.521 17.071 181.471 16.979Q181.420 16.887 181.420 16.782Q181.420 16.364 181.808 16.217Q182.197 16.071 182.697 16.071Q183.029 16.071 183.383 16.201Q183.736 16.332 183.965 16.586Q184.193 16.840 184.193 17.188L184.193 18.989Q184.193 19.121 184.265 19.231Q184.338 19.340 184.467 19.340Q184.592 19.340 184.660 19.235Q184.728 19.129 184.728 18.989L184.728 18.477L185.010 18.477L185.010 18.989Q185.010 19.192 184.892 19.350Q184.775 19.508 184.594 19.592Q184.412 19.676 184.209 19.676Q183.978 19.676 183.826 19.504Q183.674 19.332 183.642 19.102Q183.482 19.383 183.174 19.549Q182.865 19.715 182.513 19.715Q182.002 19.715 181.578 19.492Q181.154 19.270 181.154 18.805M181.842 18.805Q181.842 19.090 182.068 19.276Q182.295 19.461 182.588 19.461Q182.834 19.461 183.058 19.344Q183.283 19.227 183.418 19.024Q183.553 18.821 183.553 18.567L183.553 17.735Q183.287 17.735 183.002 17.789Q182.717 17.844 182.445 17.973Q182.174 18.102 182.008 18.309Q181.842 18.516 181.842 18.805M187.217 19.637L185.385 19.637L185.385 19.340Q185.658 19.340 185.826 19.293Q185.994 19.246 185.994 19.078L185.994 14.918Q185.994 14.703 185.931 14.608Q185.869 14.512 185.750 14.491Q185.631 14.469 185.385 14.469L185.385 14.172L186.607 14.086L186.607 19.078Q186.607 19.246 186.775 19.293Q186.943 19.340 187.217 19.340L187.217 19.637M188.142 19.172Q188.142 18.989 188.279 18.852Q188.416 18.715 188.607 18.715Q188.799 18.715 188.931 18.848Q189.064 18.981 189.064 19.172Q189.064 19.371 188.931 19.504Q188.799 19.637 188.607 19.637Q188.416 19.637 188.279 19.500Q188.142 19.364 188.142 19.172M188.142 16.645Q188.142 16.461 188.279 16.325Q188.416 16.188 188.607 16.188Q188.799 16.188 188.931 16.321Q189.064 16.453 189.064 16.645Q189.064 16.844 188.931 16.977Q188.799 17.110 188.607 17.110Q188.416 17.110 188.279 16.973Q188.142 16.836 188.142 16.645\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.049 -78.608)\">\u003Cpath d=\"M154.181 29.137L152.326 29.137L152.326 28.840Q152.599 28.840 152.767 28.793Q152.935 28.746 152.935 28.578L152.935 26.442Q152.935 26.227 152.872 26.131Q152.810 26.035 152.691 26.014Q152.572 25.992 152.326 25.992L152.326 25.696L153.517 25.610L153.517 26.344Q153.630 26.129 153.824 25.961Q154.017 25.793 154.255 25.701Q154.493 25.610 154.747 25.610Q155.708 25.610 155.884 26.321Q156.068 25.992 156.396 25.801Q156.724 25.610 157.103 25.610Q158.279 25.610 158.279 26.688L158.279 28.578Q158.279 28.746 158.447 28.793Q158.615 28.840 158.884 28.840L158.884 29.137L157.029 29.137L157.029 28.840Q157.302 28.840 157.470 28.795Q157.638 28.750 157.638 28.578L157.638 26.703Q157.638 26.317 157.513 26.090Q157.388 25.864 157.036 25.864Q156.732 25.864 156.476 26.026Q156.220 26.188 156.072 26.457Q155.923 26.727 155.923 27.024L155.923 28.578Q155.923 28.746 156.093 28.793Q156.263 28.840 156.533 28.840L156.533 29.137L154.677 29.137L154.677 28.840Q154.951 28.840 155.118 28.793Q155.286 28.746 155.286 28.578L155.286 26.703Q155.286 26.317 155.161 26.090Q155.036 25.864 154.685 25.864Q154.380 25.864 154.124 26.026Q153.868 26.188 153.720 26.457Q153.572 26.727 153.572 27.024L153.572 28.578Q153.572 28.746 153.742 28.793Q153.911 28.840 154.181 28.840L154.181 29.137M159.329 27.383Q159.329 26.903 159.562 26.487Q159.794 26.071 160.204 25.821Q160.615 25.571 161.091 25.571Q161.822 25.571 162.220 26.012Q162.618 26.453 162.618 27.184Q162.618 27.289 162.525 27.313L160.076 27.313L160.076 27.383Q160.076 27.793 160.197 28.149Q160.318 28.504 160.589 28.721Q160.861 28.938 161.290 28.938Q161.654 28.938 161.951 28.709Q162.247 28.481 162.349 28.129Q162.357 28.082 162.443 28.067L162.525 28.067Q162.618 28.094 162.618 28.176Q162.618 28.184 162.611 28.215Q162.548 28.442 162.409 28.625Q162.271 28.809 162.079 28.942Q161.888 29.075 161.669 29.145Q161.451 29.215 161.212 29.215Q160.841 29.215 160.503 29.078Q160.165 28.942 159.898 28.690Q159.630 28.438 159.480 28.098Q159.329 27.758 159.329 27.383M160.083 27.075L162.044 27.075Q162.044 26.770 161.943 26.479Q161.841 26.188 161.624 26.006Q161.408 25.825 161.091 25.825Q160.790 25.825 160.560 26.012Q160.329 26.200 160.206 26.491Q160.083 26.782 160.083 27.075M163.732 28.176L163.732 25.985L163.029 25.985L163.029 25.731Q163.384 25.731 163.626 25.498Q163.868 25.266 163.980 24.918Q164.091 24.571 164.091 24.215L164.372 24.215L164.372 25.688L165.548 25.688L165.548 25.985L164.372 25.985L164.372 28.160Q164.372 28.481 164.492 28.709Q164.611 28.938 164.892 28.938Q165.072 28.938 165.189 28.815Q165.306 28.692 165.359 28.512Q165.411 28.332 165.411 28.160L165.411 27.688L165.693 27.688L165.693 28.176Q165.693 28.430 165.587 28.670Q165.482 28.910 165.284 29.063Q165.087 29.215 164.829 29.215Q164.513 29.215 164.261 29.092Q164.009 28.969 163.870 28.735Q163.732 28.500 163.732 28.176M168.419 29.137L166.439 29.137L166.439 28.840Q166.708 28.840 166.876 28.795Q167.044 28.750 167.044 28.578L167.044 26.442Q167.044 26.227 166.982 26.131Q166.919 26.035 166.802 26.014Q166.685 25.992 166.439 25.992L166.439 25.696L167.607 25.610L167.607 26.395Q167.685 26.184 167.837 25.998Q167.990 25.813 168.189 25.711Q168.388 25.610 168.615 25.610Q168.861 25.610 169.052 25.754Q169.243 25.899 169.243 26.129Q169.243 26.285 169.138 26.395Q169.033 26.504 168.876 26.504Q168.720 26.504 168.611 26.395Q168.501 26.285 168.501 26.129Q168.501 25.969 168.607 25.864Q168.283 25.864 168.068 26.092Q167.853 26.321 167.757 26.660Q167.661 27 167.661 27.305L167.661 28.578Q167.661 28.746 167.888 28.793Q168.115 28.840 168.419 28.840L168.419 29.137M171.583 29.137L169.806 29.137L169.806 28.840Q170.079 28.840 170.247 28.793Q170.415 28.746 170.415 28.578L170.415 26.442Q170.415 26.227 170.359 26.131Q170.302 26.035 170.189 26.014Q170.076 25.992 169.829 25.992L169.829 25.696L171.029 25.610L171.029 28.578Q171.029 28.746 171.175 28.793Q171.322 28.840 171.583 28.840L171.583 29.137M170.142 24.215Q170.142 24.024 170.277 23.893Q170.411 23.762 170.607 23.762Q170.728 23.762 170.831 23.825Q170.935 23.887 170.997 23.991Q171.060 24.094 171.060 24.215Q171.060 24.410 170.929 24.545Q170.798 24.680 170.607 24.680Q170.408 24.680 170.275 24.547Q170.142 24.414 170.142 24.215M172.126 27.410Q172.126 26.914 172.376 26.489Q172.626 26.063 173.046 25.817Q173.466 25.571 173.966 25.571Q174.505 25.571 174.896 25.696Q175.286 25.821 175.286 26.235Q175.286 26.340 175.236 26.432Q175.185 26.524 175.093 26.575Q175.001 26.625 174.892 26.625Q174.786 26.625 174.695 26.575Q174.603 26.524 174.552 26.432Q174.501 26.340 174.501 26.235Q174.501 26.012 174.669 25.907Q174.447 25.848 173.974 25.848Q173.677 25.848 173.462 25.987Q173.247 26.125 173.117 26.356Q172.986 26.586 172.927 26.856Q172.868 27.125 172.868 27.410Q172.868 27.805 173.001 28.155Q173.134 28.504 173.406 28.721Q173.677 28.938 174.076 28.938Q174.451 28.938 174.726 28.721Q175.001 28.504 175.103 28.145Q175.118 28.082 175.181 28.082L175.286 28.082Q175.322 28.082 175.347 28.110Q175.372 28.137 175.372 28.176L175.372 28.200Q175.240 28.680 174.855 28.948Q174.470 29.215 173.966 29.215Q173.603 29.215 173.269 29.078Q172.935 28.942 172.675 28.692Q172.415 28.442 172.271 28.106Q172.126 27.770 172.126 27.410\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.049 -78.608)\">\u003Cpath d=\"M181.586 27.321L179.113 27.321Q179.035 27.309 178.986 27.260Q178.938 27.211 178.938 27.137Q178.938 27.063 178.986 27.014Q179.035 26.965 179.113 26.953L181.586 26.953L181.586 24.473Q181.613 24.305 181.770 24.305Q181.844 24.305 181.893 24.354Q181.942 24.403 181.953 24.473L181.953 26.953L184.426 26.953Q184.594 26.985 184.594 27.137Q184.594 27.289 184.426 27.321L181.953 27.321L181.953 29.801Q181.942 29.871 181.893 29.920Q181.844 29.969 181.770 29.969Q181.613 29.969 181.586 29.801\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-29.049 -78.608)\">\u003Cpath d=\"M188.773 28.176L188.773 25.985L188.070 25.985L188.070 25.731Q188.426 25.731 188.668 25.498Q188.910 25.266 189.021 24.918Q189.133 24.571 189.133 24.215L189.414 24.215L189.414 25.688L190.590 25.688L190.590 25.985L189.414 25.985L189.414 28.160Q189.414 28.481 189.533 28.709Q189.652 28.938 189.933 28.938Q190.113 28.938 190.230 28.815Q190.347 28.692 190.400 28.512Q190.453 28.332 190.453 28.160L190.453 27.688L190.734 27.688L190.734 28.176Q190.734 28.430 190.629 28.670Q190.523 28.910 190.326 29.063Q190.129 29.215 189.871 29.215Q189.555 29.215 189.303 29.092Q189.051 28.969 188.912 28.735Q188.773 28.500 188.773 28.176M191.551 28.305Q191.551 27.821 191.953 27.526Q192.355 27.231 192.906 27.112Q193.457 26.992 193.949 26.992L193.949 26.703Q193.949 26.477 193.834 26.270Q193.719 26.063 193.521 25.944Q193.324 25.825 193.094 25.825Q192.668 25.825 192.383 25.930Q192.453 25.957 192.500 26.012Q192.547 26.067 192.572 26.137Q192.597 26.207 192.597 26.282Q192.597 26.387 192.547 26.479Q192.496 26.571 192.404 26.621Q192.312 26.672 192.207 26.672Q192.101 26.672 192.010 26.621Q191.918 26.571 191.867 26.479Q191.816 26.387 191.816 26.282Q191.816 25.864 192.205 25.717Q192.594 25.571 193.094 25.571Q193.426 25.571 193.779 25.701Q194.133 25.832 194.361 26.086Q194.590 26.340 194.590 26.688L194.590 28.489Q194.590 28.621 194.662 28.731Q194.734 28.840 194.863 28.840Q194.988 28.840 195.056 28.735Q195.125 28.629 195.125 28.489L195.125 27.977L195.406 27.977L195.406 28.489Q195.406 28.692 195.289 28.850Q195.172 29.008 194.990 29.092Q194.808 29.176 194.605 29.176Q194.375 29.176 194.222 29.004Q194.070 28.832 194.039 28.602Q193.879 28.883 193.570 29.049Q193.262 29.215 192.910 29.215Q192.398 29.215 191.974 28.992Q191.551 28.770 191.551 28.305M192.238 28.305Q192.238 28.590 192.465 28.776Q192.691 28.961 192.984 28.961Q193.230 28.961 193.455 28.844Q193.680 28.727 193.814 28.524Q193.949 28.321 193.949 28.067L193.949 27.235Q193.683 27.235 193.398 27.289Q193.113 27.344 192.842 27.473Q192.570 27.602 192.404 27.809Q192.238 28.016 192.238 28.305M197.707 29.137L195.726 29.137L195.726 28.840Q195.996 28.840 196.164 28.795Q196.332 28.750 196.332 28.578L196.332 26.442Q196.332 26.227 196.269 26.131Q196.207 26.035 196.090 26.014Q195.972 25.992 195.726 25.992L195.726 25.696L196.894 25.610L196.894 26.395Q196.972 26.184 197.125 25.998Q197.277 25.813 197.476 25.711Q197.676 25.610 197.902 25.610Q198.148 25.610 198.340 25.754Q198.531 25.899 198.531 26.129Q198.531 26.285 198.426 26.395Q198.320 26.504 198.164 26.504Q198.008 26.504 197.898 26.395Q197.789 26.285 197.789 26.129Q197.789 25.969 197.894 25.864Q197.570 25.864 197.355 26.092Q197.140 26.321 197.045 26.660Q196.949 27 196.949 27.305L196.949 28.578Q196.949 28.746 197.176 28.793Q197.402 28.840 197.707 28.840L197.707 29.137M199.012 29.746Q199.012 29.465 199.222 29.254Q199.433 29.043 199.719 28.953Q199.562 28.828 199.484 28.639Q199.406 28.450 199.406 28.250Q199.406 27.895 199.637 27.602Q199.269 27.262 199.269 26.793Q199.269 26.442 199.472 26.172Q199.676 25.903 199.996 25.756Q200.316 25.610 200.660 25.610Q201.180 25.610 201.551 25.891Q201.914 25.520 202.461 25.520Q202.640 25.520 202.767 25.647Q202.894 25.774 202.894 25.953Q202.894 26.059 202.816 26.137Q202.738 26.215 202.629 26.215Q202.519 26.215 202.443 26.139Q202.367 26.063 202.367 25.953Q202.367 25.852 202.406 25.801Q202.414 25.793 202.418 25.787Q202.422 25.782 202.422 25.778Q202.047 25.778 201.726 26.032Q202.047 26.371 202.047 26.793Q202.047 27.063 201.930 27.280Q201.812 27.496 201.607 27.655Q201.402 27.813 201.160 27.895Q200.918 27.977 200.660 27.977Q200.441 27.977 200.228 27.918Q200.015 27.860 199.820 27.739Q199.726 27.879 199.726 28.059Q199.726 28.266 199.863 28.418Q200 28.571 200.207 28.571L200.902 28.571Q201.390 28.571 201.803 28.655Q202.215 28.739 202.494 28.996Q202.773 29.254 202.773 29.746Q202.773 30.110 202.453 30.342Q202.133 30.575 201.691 30.676Q201.250 30.778 200.894 30.778Q200.539 30.778 200.096 30.676Q199.652 30.575 199.332 30.342Q199.012 30.110 199.012 29.746M199.515 29.746Q199.515 29.942 199.660 30.090Q199.805 30.239 200.017 30.328Q200.230 30.418 200.471 30.465Q200.711 30.512 200.894 30.512Q201.137 30.512 201.467 30.434Q201.797 30.356 202.033 30.182Q202.269 30.008 202.269 29.746Q202.269 29.340 201.859 29.231Q201.449 29.121 200.887 29.121L200.207 29.121Q199.937 29.121 199.726 29.299Q199.515 29.477 199.515 29.746M200.660 27.711Q201.383 27.711 201.383 26.793Q201.383 25.871 200.660 25.871Q199.933 25.871 199.933 26.793Q199.933 27.711 200.660 27.711M203.258 27.383Q203.258 26.903 203.490 26.487Q203.722 26.071 204.133 25.821Q204.543 25.571 205.019 25.571Q205.750 25.571 206.148 26.012Q206.547 26.453 206.547 27.184Q206.547 27.289 206.453 27.313L204.004 27.313L204.004 27.383Q204.004 27.793 204.125 28.149Q204.246 28.504 204.517 28.721Q204.789 28.938 205.219 28.938Q205.582 28.938 205.879 28.709Q206.176 28.481 206.277 28.129Q206.285 28.082 206.371 28.067L206.453 28.067Q206.547 28.094 206.547 28.176Q206.547 28.184 206.539 28.215Q206.476 28.442 206.338 28.625Q206.199 28.809 206.008 28.942Q205.816 29.075 205.597 29.145Q205.379 29.215 205.140 29.215Q204.769 29.215 204.431 29.078Q204.094 28.942 203.826 28.690Q203.558 28.438 203.408 28.098Q203.258 27.758 203.258 27.383M204.012 27.075L205.972 27.075Q205.972 26.770 205.871 26.479Q205.769 26.188 205.553 26.006Q205.336 25.825 205.019 25.825Q204.719 25.825 204.488 26.012Q204.258 26.200 204.135 26.491Q204.012 26.782 204.012 27.075M207.660 28.176L207.660 25.985L206.957 25.985L206.957 25.731Q207.312 25.731 207.555 25.498Q207.797 25.266 207.908 24.918Q208.019 24.571 208.019 24.215L208.301 24.215L208.301 25.688L209.476 25.688L209.476 25.985L208.301 25.985L208.301 28.160Q208.301 28.481 208.420 28.709Q208.539 28.938 208.820 28.938Q209 28.938 209.117 28.815Q209.234 28.692 209.287 28.512Q209.340 28.332 209.340 28.160L209.340 27.688L209.621 27.688L209.621 28.176Q209.621 28.430 209.515 28.670Q209.410 28.910 209.213 29.063Q209.015 29.215 208.758 29.215Q208.441 29.215 208.189 29.092Q207.937 28.969 207.799 28.735Q207.660 28.500 207.660 28.176\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M113.602 19.179h76.823V-12.12h-76.823Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-19.834 -18.08)\">\u003Cpath d=\"M152.251 17.883Q152.251 17.403 152.484 16.987Q152.716 16.571 153.126 16.321Q153.536 16.071 154.013 16.071Q154.743 16.071 155.142 16.512Q155.540 16.953 155.540 17.684Q155.540 17.789 155.447 17.813L152.997 17.813L152.997 17.883Q152.997 18.293 153.118 18.649Q153.240 19.004 153.511 19.221Q153.783 19.438 154.212 19.438Q154.576 19.438 154.872 19.209Q155.169 18.981 155.271 18.629Q155.279 18.582 155.365 18.567L155.447 18.567Q155.540 18.594 155.540 18.676Q155.540 18.684 155.533 18.715Q155.470 18.942 155.331 19.125Q155.193 19.309 155.001 19.442Q154.810 19.575 154.591 19.645Q154.372 19.715 154.134 19.715Q153.763 19.715 153.425 19.578Q153.087 19.442 152.820 19.190Q152.552 18.938 152.402 18.598Q152.251 18.258 152.251 17.883M153.005 17.575L154.966 17.575Q154.966 17.270 154.865 16.979Q154.763 16.688 154.546 16.506Q154.329 16.325 154.013 16.325Q153.712 16.325 153.482 16.512Q153.251 16.700 153.128 16.991Q153.005 17.282 153.005 17.575M157.958 19.637L156.103 19.637L156.103 19.340Q156.376 19.340 156.544 19.293Q156.712 19.246 156.712 19.078L156.712 16.942Q156.712 16.727 156.650 16.631Q156.587 16.535 156.468 16.514Q156.349 16.492 156.103 16.492L156.103 16.196L157.294 16.110L157.294 16.844Q157.408 16.629 157.601 16.461Q157.794 16.293 158.033 16.201Q158.271 16.110 158.525 16.110Q159.693 16.110 159.693 17.188L159.693 19.078Q159.693 19.246 159.863 19.293Q160.033 19.340 160.302 19.340L160.302 19.637L158.447 19.637L158.447 19.340Q158.720 19.340 158.888 19.293Q159.056 19.246 159.056 19.078L159.056 17.203Q159.056 16.821 158.935 16.592Q158.814 16.364 158.462 16.364Q158.150 16.364 157.896 16.526Q157.642 16.688 157.495 16.957Q157.349 17.227 157.349 17.524L157.349 19.078Q157.349 19.246 157.519 19.293Q157.689 19.340 157.958 19.340L157.958 19.637M162.564 19.715Q162.083 19.715 161.675 19.471Q161.267 19.227 161.029 18.813Q160.790 18.399 160.790 17.910Q160.790 17.418 161.048 17.002Q161.306 16.586 161.738 16.348Q162.169 16.110 162.661 16.110Q163.283 16.110 163.732 16.547L163.732 14.918Q163.732 14.703 163.669 14.608Q163.607 14.512 163.490 14.491Q163.372 14.469 163.126 14.469L163.126 14.172L164.349 14.086L164.349 18.895Q164.349 19.106 164.411 19.201Q164.474 19.297 164.591 19.319Q164.708 19.340 164.958 19.340L164.958 19.637L163.708 19.715L163.708 19.231Q163.243 19.715 162.564 19.715M162.630 19.461Q162.970 19.461 163.263 19.270Q163.556 19.078 163.708 18.782L163.708 16.950Q163.560 16.676 163.298 16.520Q163.036 16.364 162.724 16.364Q162.099 16.364 161.816 16.811Q161.533 17.258 161.533 17.918Q161.533 18.563 161.784 19.012Q162.036 19.461 162.630 19.461M167.579 18.188L165.326 18.188L165.326 17.637L167.579 17.637L167.579 18.188M168.923 18.676L168.923 16.485L168.220 16.485L168.220 16.231Q168.576 16.231 168.818 15.998Q169.060 15.766 169.171 15.418Q169.283 15.071 169.283 14.715L169.564 14.715L169.564 16.188L170.740 16.188L170.740 16.485L169.564 16.485L169.564 18.660Q169.564 18.981 169.683 19.209Q169.802 19.438 170.083 19.438Q170.263 19.438 170.380 19.315Q170.497 19.192 170.550 19.012Q170.603 18.832 170.603 18.660L170.603 18.188L170.884 18.188L170.884 18.676Q170.884 18.930 170.779 19.170Q170.673 19.410 170.476 19.563Q170.279 19.715 170.021 19.715Q169.704 19.715 169.452 19.592Q169.201 19.469 169.062 19.235Q168.923 19 168.923 18.676M171.603 17.942Q171.603 17.438 171.859 17.006Q172.115 16.575 172.550 16.323Q172.986 16.071 173.486 16.071Q173.872 16.071 174.214 16.215Q174.556 16.360 174.818 16.621Q175.079 16.883 175.222 17.219Q175.365 17.555 175.365 17.942Q175.365 18.434 175.101 18.844Q174.837 19.254 174.408 19.485Q173.978 19.715 173.486 19.715Q172.993 19.715 172.560 19.483Q172.126 19.250 171.865 18.842Q171.603 18.434 171.603 17.942M173.486 19.438Q173.943 19.438 174.195 19.215Q174.447 18.992 174.534 18.641Q174.622 18.289 174.622 17.844Q174.622 17.414 174.529 17.076Q174.435 16.739 174.181 16.532Q173.927 16.325 173.486 16.325Q172.837 16.325 172.593 16.741Q172.349 17.157 172.349 17.844Q172.349 18.289 172.437 18.641Q172.525 18.992 172.777 19.215Q173.029 19.438 173.486 19.438M177.962 18.188L175.708 18.188L175.708 17.637L177.962 17.637L177.962 18.188M178.681 17.883Q178.681 17.403 178.913 16.987Q179.146 16.571 179.556 16.321Q179.966 16.071 180.443 16.071Q181.173 16.071 181.572 16.512Q181.970 16.953 181.970 17.684Q181.970 17.789 181.876 17.813L179.427 17.813L179.427 17.883Q179.427 18.293 179.548 18.649Q179.669 19.004 179.941 19.221Q180.212 19.438 180.642 19.438Q181.005 19.438 181.302 19.209Q181.599 18.981 181.701 18.629Q181.708 18.582 181.794 18.567L181.876 18.567Q181.970 18.594 181.970 18.676Q181.970 18.684 181.962 18.715Q181.900 18.942 181.761 19.125Q181.622 19.309 181.431 19.442Q181.240 19.575 181.021 19.645Q180.802 19.715 180.564 19.715Q180.193 19.715 179.855 19.578Q179.517 19.442 179.249 19.190Q178.982 18.938 178.831 18.598Q178.681 18.258 178.681 17.883M179.435 17.575L181.396 17.575Q181.396 17.270 181.294 16.979Q181.193 16.688 180.976 16.506Q180.759 16.325 180.443 16.325Q180.142 16.325 179.911 16.512Q179.681 16.700 179.558 16.991Q179.435 17.282 179.435 17.575M184.388 19.637L182.533 19.637L182.533 19.340Q182.806 19.340 182.974 19.293Q183.142 19.246 183.142 19.078L183.142 16.942Q183.142 16.727 183.079 16.631Q183.017 16.535 182.898 16.514Q182.779 16.492 182.533 16.492L182.533 16.196L183.724 16.110L183.724 16.844Q183.837 16.629 184.031 16.461Q184.224 16.293 184.462 16.201Q184.701 16.110 184.954 16.110Q186.122 16.110 186.122 17.188L186.122 19.078Q186.122 19.246 186.292 19.293Q186.462 19.340 186.732 19.340L186.732 19.637L184.876 19.637L184.876 19.340Q185.150 19.340 185.318 19.293Q185.486 19.246 185.486 19.078L185.486 17.203Q185.486 16.821 185.365 16.592Q185.243 16.364 184.892 16.364Q184.579 16.364 184.326 16.526Q184.072 16.688 183.925 16.957Q183.779 17.227 183.779 17.524L183.779 19.078Q183.779 19.246 183.949 19.293Q184.118 19.340 184.388 19.340L184.388 19.637M188.993 19.715Q188.513 19.715 188.105 19.471Q187.697 19.227 187.458 18.813Q187.220 18.399 187.220 17.910Q187.220 17.418 187.478 17.002Q187.736 16.586 188.167 16.348Q188.599 16.110 189.091 16.110Q189.712 16.110 190.161 16.547L190.161 14.918Q190.161 14.703 190.099 14.608Q190.036 14.512 189.919 14.491Q189.802 14.469 189.556 14.469L189.556 14.172L190.779 14.086L190.779 18.895Q190.779 19.106 190.841 19.201Q190.904 19.297 191.021 19.319Q191.138 19.340 191.388 19.340L191.388 19.637L190.138 19.715L190.138 19.231Q189.673 19.715 188.993 19.715M189.060 19.461Q189.400 19.461 189.693 19.270Q189.986 19.078 190.138 18.782L190.138 16.950Q189.990 16.676 189.728 16.520Q189.466 16.364 189.154 16.364Q188.529 16.364 188.245 16.811Q187.962 17.258 187.962 17.918Q187.962 18.563 188.214 19.012Q188.466 19.461 189.060 19.461\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-19.834 -18.08)\">\u003Cpath d=\"M158.336 29.137L158.055 29.137L158.055 24.418Q158.055 24.203 157.993 24.108Q157.930 24.012 157.813 23.991Q157.696 23.969 157.450 23.969L157.450 23.672L158.672 23.586L158.672 26.075Q159.149 25.610 159.848 25.610Q160.329 25.610 160.737 25.854Q161.145 26.098 161.381 26.512Q161.618 26.926 161.618 27.410Q161.618 27.785 161.469 28.114Q161.321 28.442 161.051 28.694Q160.782 28.946 160.438 29.080Q160.094 29.215 159.735 29.215Q159.414 29.215 159.116 29.067Q158.817 28.918 158.610 28.657L158.336 29.137M158.696 26.465L158.696 28.305Q158.848 28.602 159.108 28.782Q159.368 28.961 159.680 28.961Q160.106 28.961 160.373 28.742Q160.641 28.524 160.756 28.178Q160.871 27.832 160.871 27.410Q160.871 26.762 160.623 26.313Q160.375 25.864 159.778 25.864Q159.442 25.864 159.153 26.022Q158.864 26.180 158.696 26.465M162.239 28.305Q162.239 27.821 162.641 27.526Q163.043 27.231 163.594 27.112Q164.145 26.992 164.637 26.992L164.637 26.703Q164.637 26.477 164.522 26.270Q164.407 26.063 164.209 25.944Q164.012 25.825 163.782 25.825Q163.356 25.825 163.071 25.930Q163.141 25.957 163.188 26.012Q163.235 26.067 163.260 26.137Q163.286 26.207 163.286 26.282Q163.286 26.387 163.235 26.479Q163.184 26.571 163.092 26.621Q163 26.672 162.895 26.672Q162.789 26.672 162.698 26.621Q162.606 26.571 162.555 26.479Q162.504 26.387 162.504 26.282Q162.504 25.864 162.893 25.717Q163.282 25.571 163.782 25.571Q164.114 25.571 164.467 25.701Q164.821 25.832 165.049 26.086Q165.278 26.340 165.278 26.688L165.278 28.489Q165.278 28.621 165.350 28.731Q165.422 28.840 165.551 28.840Q165.676 28.840 165.745 28.735Q165.813 28.629 165.813 28.489L165.813 27.977L166.094 27.977L166.094 28.489Q166.094 28.692 165.977 28.850Q165.860 29.008 165.678 29.092Q165.496 29.176 165.293 29.176Q165.063 29.176 164.911 29.004Q164.758 28.832 164.727 28.602Q164.567 28.883 164.258 29.049Q163.950 29.215 163.598 29.215Q163.086 29.215 162.663 28.992Q162.239 28.770 162.239 28.305M162.926 28.305Q162.926 28.590 163.153 28.776Q163.379 28.961 163.672 28.961Q163.918 28.961 164.143 28.844Q164.368 28.727 164.502 28.524Q164.637 28.321 164.637 28.067L164.637 27.235Q164.371 27.235 164.086 27.289Q163.801 27.344 163.530 27.473Q163.258 27.602 163.092 27.809Q162.926 28.016 162.926 28.305M166.430 29.129L166.430 27.907Q166.430 27.879 166.461 27.848Q166.493 27.817 166.516 27.817L166.621 27.817Q166.692 27.817 166.707 27.879Q166.770 28.200 166.909 28.440Q167.047 28.680 167.280 28.821Q167.512 28.961 167.821 28.961Q168.059 28.961 168.268 28.901Q168.477 28.840 168.614 28.692Q168.750 28.543 168.750 28.297Q168.750 28.043 168.539 27.877Q168.329 27.711 168.059 27.657L167.438 27.543Q167.032 27.465 166.731 27.209Q166.430 26.953 166.430 26.578Q166.430 26.211 166.631 25.989Q166.832 25.766 167.157 25.668Q167.481 25.571 167.821 25.571Q168.286 25.571 168.582 25.778L168.805 25.594Q168.829 25.571 168.860 25.571L168.911 25.571Q168.942 25.571 168.969 25.598Q168.996 25.625 168.996 25.657L168.996 26.641Q168.996 26.672 168.971 26.701Q168.946 26.731 168.911 26.731L168.805 26.731Q168.770 26.731 168.743 26.703Q168.715 26.676 168.715 26.641Q168.715 26.242 168.463 26.022Q168.211 25.801 167.813 25.801Q167.457 25.801 167.174 25.924Q166.891 26.047 166.891 26.352Q166.891 26.571 167.092 26.703Q167.293 26.836 167.539 26.879L168.164 26.992Q168.594 27.082 168.903 27.379Q169.211 27.676 169.211 28.090Q169.211 28.660 168.813 28.938Q168.414 29.215 167.821 29.215Q167.270 29.215 166.918 28.879L166.621 29.192Q166.598 29.215 166.563 29.215L166.516 29.215Q166.493 29.215 166.461 29.184Q166.430 29.153 166.430 29.129M169.739 27.383Q169.739 26.903 169.971 26.487Q170.204 26.071 170.614 25.821Q171.024 25.571 171.500 25.571Q172.231 25.571 172.629 26.012Q173.028 26.453 173.028 27.184Q173.028 27.289 172.934 27.313L170.485 27.313L170.485 27.383Q170.485 27.793 170.606 28.149Q170.727 28.504 170.998 28.721Q171.270 28.938 171.700 28.938Q172.063 28.938 172.360 28.709Q172.657 28.481 172.758 28.129Q172.766 28.082 172.852 28.067L172.934 28.067Q173.028 28.094 173.028 28.176Q173.028 28.184 173.020 28.215Q172.957 28.442 172.819 28.625Q172.680 28.809 172.489 28.942Q172.297 29.075 172.079 29.145Q171.860 29.215 171.621 29.215Q171.250 29.215 170.913 29.078Q170.575 28.942 170.307 28.690Q170.039 28.438 169.889 28.098Q169.739 27.758 169.739 27.383M170.493 27.075L172.454 27.075Q172.454 26.770 172.352 26.479Q172.250 26.188 172.034 26.006Q171.817 25.825 171.500 25.825Q171.200 25.825 170.969 26.012Q170.739 26.200 170.616 26.491Q170.493 26.782 170.493 27.075M175.430 29.137L173.598 29.137L173.598 28.840Q173.871 28.840 174.039 28.793Q174.207 28.746 174.207 28.578L174.207 24.418Q174.207 24.203 174.145 24.108Q174.082 24.012 173.963 23.991Q173.844 23.969 173.598 23.969L173.598 23.672L174.821 23.586L174.821 28.578Q174.821 28.746 174.989 28.793Q175.157 28.840 175.430 28.840L175.430 29.137M177.735 29.137L175.957 29.137L175.957 28.840Q176.231 28.840 176.399 28.793Q176.567 28.746 176.567 28.578L176.567 26.442Q176.567 26.227 176.510 26.131Q176.454 26.035 176.340 26.014Q176.227 25.992 175.981 25.992L175.981 25.696L177.180 25.610L177.180 28.578Q177.180 28.746 177.327 28.793Q177.473 28.840 177.735 28.840L177.735 29.137M176.293 24.215Q176.293 24.024 176.428 23.893Q176.563 23.762 176.758 23.762Q176.879 23.762 176.983 23.825Q177.086 23.887 177.149 23.991Q177.211 24.094 177.211 24.215Q177.211 24.410 177.080 24.545Q176.950 24.680 176.758 24.680Q176.559 24.680 176.426 24.547Q176.293 24.414 176.293 24.215M180.164 29.137L178.309 29.137L178.309 28.840Q178.582 28.840 178.750 28.793Q178.918 28.746 178.918 28.578L178.918 26.442Q178.918 26.227 178.856 26.131Q178.793 26.035 178.674 26.014Q178.555 25.992 178.309 25.992L178.309 25.696L179.500 25.610L179.500 26.344Q179.614 26.129 179.807 25.961Q180 25.793 180.239 25.701Q180.477 25.610 180.731 25.610Q181.899 25.610 181.899 26.688L181.899 28.578Q181.899 28.746 182.069 28.793Q182.239 28.840 182.508 28.840L182.508 29.137L180.653 29.137L180.653 28.840Q180.926 28.840 181.094 28.793Q181.262 28.746 181.262 28.578L181.262 26.703Q181.262 26.321 181.141 26.092Q181.020 25.864 180.668 25.864Q180.356 25.864 180.102 26.026Q179.848 26.188 179.702 26.457Q179.555 26.727 179.555 27.024L179.555 28.578Q179.555 28.746 179.725 28.793Q179.895 28.840 180.164 28.840L180.164 29.137M182.954 27.383Q182.954 26.903 183.186 26.487Q183.418 26.071 183.829 25.821Q184.239 25.571 184.715 25.571Q185.446 25.571 185.844 26.012Q186.243 26.453 186.243 27.184Q186.243 27.289 186.149 27.313L183.700 27.313L183.700 27.383Q183.700 27.793 183.821 28.149Q183.942 28.504 184.213 28.721Q184.485 28.938 184.914 28.938Q185.278 28.938 185.575 28.709Q185.871 28.481 185.973 28.129Q185.981 28.082 186.067 28.067L186.149 28.067Q186.243 28.094 186.243 28.176Q186.243 28.184 186.235 28.215Q186.172 28.442 186.034 28.625Q185.895 28.809 185.704 28.942Q185.512 29.075 185.293 29.145Q185.075 29.215 184.836 29.215Q184.465 29.215 184.127 29.078Q183.789 28.942 183.522 28.690Q183.254 28.438 183.104 28.098Q182.954 27.758 182.954 27.383M183.707 27.075L185.668 27.075Q185.668 26.770 185.567 26.479Q185.465 26.188 185.248 26.006Q185.032 25.825 184.715 25.825Q184.414 25.825 184.184 26.012Q183.954 26.200 183.830 26.491Q183.707 26.782 183.707 27.075\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M113.602 78.93h76.823V47.63h-76.823Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M169.870 19.637L168.014 19.637L168.014 19.340Q168.288 19.340 168.456 19.293Q168.624 19.246 168.624 19.078L168.624 16.942Q168.624 16.727 168.561 16.631Q168.499 16.535 168.380 16.514Q168.261 16.492 168.014 16.492L168.014 16.196L169.206 16.110L169.206 16.844Q169.319 16.629 169.513 16.461Q169.706 16.293 169.944 16.201Q170.182 16.110 170.436 16.110Q171.397 16.110 171.573 16.821Q171.757 16.492 172.085 16.301Q172.413 16.110 172.792 16.110Q173.968 16.110 173.968 17.188L173.968 19.078Q173.968 19.246 174.136 19.293Q174.304 19.340 174.573 19.340L174.573 19.637L172.718 19.637L172.718 19.340Q172.991 19.340 173.159 19.295Q173.327 19.250 173.327 19.078L173.327 17.203Q173.327 16.817 173.202 16.590Q173.077 16.364 172.725 16.364Q172.421 16.364 172.165 16.526Q171.909 16.688 171.761 16.957Q171.612 17.227 171.612 17.524L171.612 19.078Q171.612 19.246 171.782 19.293Q171.952 19.340 172.222 19.340L172.222 19.637L170.366 19.637L170.366 19.340Q170.639 19.340 170.807 19.293Q170.975 19.246 170.975 19.078L170.975 17.203Q170.975 16.817 170.850 16.590Q170.725 16.364 170.374 16.364Q170.069 16.364 169.813 16.526Q169.557 16.688 169.409 16.957Q169.261 17.227 169.261 17.524L169.261 19.078Q169.261 19.246 169.431 19.293Q169.600 19.340 169.870 19.340L169.870 19.637M175.018 17.883Q175.018 17.403 175.251 16.987Q175.483 16.571 175.893 16.321Q176.304 16.071 176.780 16.071Q177.511 16.071 177.909 16.512Q178.307 16.953 178.307 17.684Q178.307 17.789 178.214 17.813L175.764 17.813L175.764 17.883Q175.764 18.293 175.886 18.649Q176.007 19.004 176.278 19.221Q176.550 19.438 176.979 19.438Q177.343 19.438 177.639 19.209Q177.936 18.981 178.038 18.629Q178.046 18.582 178.132 18.567L178.214 18.567Q178.307 18.594 178.307 18.676Q178.307 18.684 178.300 18.715Q178.237 18.942 178.098 19.125Q177.960 19.309 177.768 19.442Q177.577 19.575 177.358 19.645Q177.139 19.715 176.901 19.715Q176.530 19.715 176.192 19.578Q175.854 19.442 175.587 19.190Q175.319 18.938 175.169 18.598Q175.018 18.258 175.018 17.883M175.772 17.575L177.733 17.575Q177.733 17.270 177.632 16.979Q177.530 16.688 177.313 16.506Q177.097 16.325 176.780 16.325Q176.479 16.325 176.249 16.512Q176.018 16.700 175.895 16.991Q175.772 17.282 175.772 17.575M178.893 18.805Q178.893 18.321 179.296 18.026Q179.698 17.731 180.249 17.612Q180.800 17.492 181.292 17.492L181.292 17.203Q181.292 16.977 181.177 16.770Q181.061 16.563 180.864 16.444Q180.667 16.325 180.436 16.325Q180.011 16.325 179.725 16.430Q179.796 16.457 179.843 16.512Q179.889 16.567 179.915 16.637Q179.940 16.707 179.940 16.782Q179.940 16.887 179.889 16.979Q179.839 17.071 179.747 17.121Q179.655 17.172 179.550 17.172Q179.444 17.172 179.352 17.121Q179.261 17.071 179.210 16.979Q179.159 16.887 179.159 16.782Q179.159 16.364 179.548 16.217Q179.936 16.071 180.436 16.071Q180.768 16.071 181.122 16.201Q181.475 16.332 181.704 16.586Q181.932 16.840 181.932 17.188L181.932 18.989Q181.932 19.121 182.005 19.231Q182.077 19.340 182.206 19.340Q182.331 19.340 182.399 19.235Q182.468 19.129 182.468 18.989L182.468 18.477L182.749 18.477L182.749 18.989Q182.749 19.192 182.632 19.350Q182.514 19.508 182.333 19.592Q182.151 19.676 181.948 19.676Q181.718 19.676 181.565 19.504Q181.413 19.332 181.382 19.102Q181.222 19.383 180.913 19.549Q180.604 19.715 180.253 19.715Q179.741 19.715 179.317 19.492Q178.893 19.270 178.893 18.805M179.581 18.805Q179.581 19.090 179.807 19.276Q180.034 19.461 180.327 19.461Q180.573 19.461 180.798 19.344Q181.022 19.227 181.157 19.024Q181.292 18.821 181.292 18.567L181.292 17.735Q181.026 17.735 180.741 17.789Q180.456 17.844 180.184 17.973Q179.913 18.102 179.747 18.309Q179.581 18.516 179.581 18.805M183.085 19.629L183.085 18.407Q183.085 18.379 183.116 18.348Q183.147 18.317 183.171 18.317L183.276 18.317Q183.347 18.317 183.362 18.379Q183.425 18.700 183.563 18.940Q183.702 19.180 183.934 19.321Q184.167 19.461 184.475 19.461Q184.714 19.461 184.923 19.401Q185.132 19.340 185.268 19.192Q185.405 19.043 185.405 18.797Q185.405 18.543 185.194 18.377Q184.983 18.211 184.714 18.157L184.093 18.043Q183.686 17.965 183.386 17.709Q183.085 17.453 183.085 17.078Q183.085 16.711 183.286 16.489Q183.487 16.266 183.811 16.168Q184.136 16.071 184.475 16.071Q184.940 16.071 185.237 16.278L185.460 16.094Q185.483 16.071 185.514 16.071L185.565 16.071Q185.597 16.071 185.624 16.098Q185.651 16.125 185.651 16.157L185.651 17.141Q185.651 17.172 185.626 17.201Q185.600 17.231 185.565 17.231L185.460 17.231Q185.425 17.231 185.397 17.203Q185.370 17.176 185.370 17.141Q185.370 16.742 185.118 16.522Q184.866 16.301 184.468 16.301Q184.112 16.301 183.829 16.424Q183.546 16.547 183.546 16.852Q183.546 17.071 183.747 17.203Q183.948 17.336 184.194 17.379L184.819 17.492Q185.249 17.582 185.557 17.879Q185.866 18.176 185.866 18.590Q185.866 19.160 185.468 19.438Q185.069 19.715 184.475 19.715Q183.925 19.715 183.573 19.379L183.276 19.692Q183.253 19.715 183.218 19.715L183.171 19.715Q183.147 19.715 183.116 19.684Q183.085 19.653 183.085 19.629M187.077 18.684L187.077 16.942Q187.077 16.727 187.014 16.631Q186.952 16.535 186.833 16.514Q186.714 16.492 186.468 16.492L186.468 16.196L187.714 16.110L187.714 18.660L187.714 18.684Q187.714 18.996 187.768 19.158Q187.823 19.321 187.973 19.391Q188.124 19.461 188.444 19.461Q188.874 19.461 189.147 19.123Q189.421 18.785 189.421 18.340L189.421 16.942Q189.421 16.727 189.358 16.631Q189.296 16.535 189.177 16.514Q189.057 16.492 188.811 16.492L188.811 16.196L190.057 16.110L190.057 18.895Q190.057 19.106 190.120 19.201Q190.182 19.297 190.302 19.319Q190.421 19.340 190.667 19.340L190.667 19.637L189.444 19.715L189.444 19.094Q189.276 19.383 188.995 19.549Q188.714 19.715 188.393 19.715Q187.077 19.715 187.077 18.684M193.120 19.637L191.139 19.637L191.139 19.340Q191.409 19.340 191.577 19.295Q191.745 19.250 191.745 19.078L191.745 16.942Q191.745 16.727 191.682 16.631Q191.620 16.535 191.503 16.514Q191.386 16.492 191.139 16.492L191.139 16.196L192.307 16.110L192.307 16.895Q192.386 16.684 192.538 16.498Q192.690 16.313 192.889 16.211Q193.089 16.110 193.315 16.110Q193.561 16.110 193.753 16.254Q193.944 16.399 193.944 16.629Q193.944 16.785 193.839 16.895Q193.733 17.004 193.577 17.004Q193.421 17.004 193.311 16.895Q193.202 16.785 193.202 16.629Q193.202 16.469 193.307 16.364Q192.983 16.364 192.768 16.592Q192.554 16.821 192.458 17.160Q192.362 17.500 192.362 17.805L192.362 19.078Q192.362 19.246 192.589 19.293Q192.815 19.340 193.120 19.340L193.120 19.637M194.425 17.883Q194.425 17.403 194.657 16.987Q194.889 16.571 195.300 16.321Q195.710 16.071 196.186 16.071Q196.917 16.071 197.315 16.512Q197.714 16.953 197.714 17.684Q197.714 17.789 197.620 17.813L195.171 17.813L195.171 17.883Q195.171 18.293 195.292 18.649Q195.413 19.004 195.684 19.221Q195.956 19.438 196.386 19.438Q196.749 19.438 197.046 19.209Q197.343 18.981 197.444 18.629Q197.452 18.582 197.538 18.567L197.620 18.567Q197.714 18.594 197.714 18.676Q197.714 18.684 197.706 18.715Q197.643 18.942 197.505 19.125Q197.366 19.309 197.175 19.442Q196.983 19.575 196.764 19.645Q196.546 19.715 196.307 19.715Q195.936 19.715 195.598 19.578Q195.261 19.442 194.993 19.190Q194.725 18.938 194.575 18.598Q194.425 18.258 194.425 17.883M195.179 17.575L197.139 17.575Q197.139 17.270 197.038 16.979Q196.936 16.688 196.720 16.506Q196.503 16.325 196.186 16.325Q195.886 16.325 195.655 16.512Q195.425 16.700 195.302 16.991Q195.179 17.282 195.179 17.575\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M152.876 28.176L152.876 25.985L152.173 25.985L152.173 25.731Q152.529 25.731 152.771 25.498Q153.013 25.266 153.124 24.918Q153.236 24.571 153.236 24.215L153.517 24.215L153.517 25.688L154.693 25.688L154.693 25.985L153.517 25.985L153.517 28.160Q153.517 28.481 153.636 28.709Q153.755 28.938 154.036 28.938Q154.216 28.938 154.333 28.815Q154.451 28.692 154.503 28.512Q154.556 28.332 154.556 28.160L154.556 27.688L154.837 27.688L154.837 28.176Q154.837 28.430 154.732 28.670Q154.626 28.910 154.429 29.063Q154.232 29.215 153.974 29.215Q153.658 29.215 153.406 29.092Q153.154 28.969 153.015 28.735Q152.876 28.500 152.876 28.176M157.564 29.137L155.583 29.137L155.583 28.840Q155.853 28.840 156.021 28.795Q156.189 28.750 156.189 28.578L156.189 26.442Q156.189 26.227 156.126 26.131Q156.064 26.035 155.947 26.014Q155.829 25.992 155.583 25.992L155.583 25.696L156.751 25.610L156.751 26.395Q156.829 26.184 156.982 25.998Q157.134 25.813 157.333 25.711Q157.533 25.610 157.759 25.610Q158.005 25.610 158.197 25.754Q158.388 25.899 158.388 26.129Q158.388 26.285 158.283 26.395Q158.177 26.504 158.021 26.504Q157.865 26.504 157.755 26.395Q157.646 26.285 157.646 26.129Q157.646 25.969 157.751 25.864Q157.427 25.864 157.212 26.092Q156.997 26.321 156.902 26.660Q156.806 27 156.806 27.305L156.806 28.578Q156.806 28.746 157.033 28.793Q157.259 28.840 157.564 28.840L157.564 29.137M158.966 28.305Q158.966 27.821 159.368 27.526Q159.771 27.231 160.322 27.112Q160.872 26.992 161.365 26.992L161.365 26.703Q161.365 26.477 161.249 26.270Q161.134 26.063 160.937 25.944Q160.740 25.825 160.509 25.825Q160.083 25.825 159.798 25.930Q159.868 25.957 159.915 26.012Q159.962 26.067 159.988 26.137Q160.013 26.207 160.013 26.282Q160.013 26.387 159.962 26.479Q159.911 26.571 159.820 26.621Q159.728 26.672 159.622 26.672Q159.517 26.672 159.425 26.621Q159.333 26.571 159.283 26.479Q159.232 26.387 159.232 26.282Q159.232 25.864 159.620 25.717Q160.009 25.571 160.509 25.571Q160.841 25.571 161.195 25.701Q161.548 25.832 161.777 26.086Q162.005 26.340 162.005 26.688L162.005 28.489Q162.005 28.621 162.077 28.731Q162.150 28.840 162.279 28.840Q162.404 28.840 162.472 28.735Q162.540 28.629 162.540 28.489L162.540 27.977L162.822 27.977L162.822 28.489Q162.822 28.692 162.704 28.850Q162.587 29.008 162.406 29.092Q162.224 29.176 162.021 29.176Q161.790 29.176 161.638 29.004Q161.486 28.832 161.454 28.602Q161.294 28.883 160.986 29.049Q160.677 29.215 160.326 29.215Q159.814 29.215 159.390 28.992Q158.966 28.770 158.966 28.305M159.654 28.305Q159.654 28.590 159.880 28.776Q160.107 28.961 160.400 28.961Q160.646 28.961 160.870 28.844Q161.095 28.727 161.230 28.524Q161.365 28.321 161.365 28.067L161.365 27.235Q161.099 27.235 160.814 27.289Q160.529 27.344 160.257 27.473Q159.986 27.602 159.820 27.809Q159.654 28.016 159.654 28.305M164.974 29.137L163.197 29.137L163.197 28.840Q163.470 28.840 163.638 28.793Q163.806 28.746 163.806 28.578L163.806 26.442Q163.806 26.227 163.749 26.131Q163.693 26.035 163.579 26.014Q163.466 25.992 163.220 25.992L163.220 25.696L164.419 25.610L164.419 28.578Q164.419 28.746 164.566 28.793Q164.712 28.840 164.974 28.840L164.974 29.137M163.533 24.215Q163.533 24.024 163.667 23.893Q163.802 23.762 163.997 23.762Q164.118 23.762 164.222 23.825Q164.326 23.887 164.388 23.991Q164.451 24.094 164.451 24.215Q164.451 24.410 164.320 24.545Q164.189 24.680 163.997 24.680Q163.798 24.680 163.665 24.547Q163.533 24.414 163.533 24.215M167.404 29.137L165.548 29.137L165.548 28.840Q165.822 28.840 165.990 28.793Q166.158 28.746 166.158 28.578L166.158 26.442Q166.158 26.227 166.095 26.131Q166.033 26.035 165.913 26.014Q165.794 25.992 165.548 25.992L165.548 25.696L166.740 25.610L166.740 26.344Q166.853 26.129 167.046 25.961Q167.240 25.793 167.478 25.701Q167.716 25.610 167.970 25.610Q169.138 25.610 169.138 26.688L169.138 28.578Q169.138 28.746 169.308 28.793Q169.478 28.840 169.747 28.840L169.747 29.137L167.892 29.137L167.892 28.840Q168.165 28.840 168.333 28.793Q168.501 28.746 168.501 28.578L168.501 26.703Q168.501 26.321 168.380 26.092Q168.259 25.864 167.908 25.864Q167.595 25.864 167.341 26.026Q167.087 26.188 166.941 26.457Q166.794 26.727 166.794 27.024L166.794 28.578Q166.794 28.746 166.964 28.793Q167.134 28.840 167.404 28.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M175.919 27.321L173.446 27.321Q173.368 27.309 173.319 27.260Q173.271 27.211 173.271 27.137Q173.271 27.063 173.319 27.014Q173.368 26.965 173.446 26.953L175.919 26.953L175.919 24.473Q175.946 24.305 176.103 24.305Q176.177 24.305 176.226 24.354Q176.275 24.403 176.286 24.473L176.286 26.953L178.759 26.953Q178.927 26.985 178.927 27.137Q178.927 27.289 178.759 27.321L176.286 27.321L176.286 29.801Q176.275 29.871 176.226 29.920Q176.177 29.969 176.103 29.969Q175.946 29.969 175.919 29.801\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M184.282 29.106L183.059 26.250Q182.977 26.075 182.833 26.030Q182.688 25.985 182.419 25.985L182.419 25.688L184.130 25.688L184.130 25.985Q183.708 25.985 183.708 26.168Q183.708 26.203 183.723 26.250L184.669 28.442L185.509 26.465Q185.548 26.387 185.548 26.297Q185.548 26.157 185.442 26.071Q185.337 25.985 185.196 25.985L185.196 25.688L186.548 25.688L186.548 25.985Q186.024 25.985 185.809 26.465L184.684 29.106Q184.622 29.215 184.516 29.215L184.450 29.215Q184.337 29.215 184.282 29.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M186.593 28.305Q186.593 27.821 186.995 27.526Q187.398 27.231 187.948 27.112Q188.499 26.992 188.991 26.992L188.991 26.703Q188.991 26.477 188.876 26.270Q188.761 26.063 188.564 25.944Q188.366 25.825 188.136 25.825Q187.710 25.825 187.425 25.930Q187.495 25.957 187.542 26.012Q187.589 26.067 187.614 26.137Q187.640 26.207 187.640 26.282Q187.640 26.387 187.589 26.479Q187.538 26.571 187.446 26.621Q187.355 26.672 187.249 26.672Q187.144 26.672 187.052 26.621Q186.960 26.571 186.909 26.479Q186.859 26.387 186.859 26.282Q186.859 25.864 187.247 25.717Q187.636 25.571 188.136 25.571Q188.468 25.571 188.821 25.701Q189.175 25.832 189.403 26.086Q189.632 26.340 189.632 26.688L189.632 28.489Q189.632 28.621 189.704 28.731Q189.777 28.840 189.905 28.840Q190.030 28.840 190.099 28.735Q190.167 28.629 190.167 28.489L190.167 27.977L190.448 27.977L190.448 28.489Q190.448 28.692 190.331 28.850Q190.214 29.008 190.032 29.092Q189.851 29.176 189.648 29.176Q189.417 29.176 189.265 29.004Q189.112 28.832 189.081 28.602Q188.921 28.883 188.612 29.049Q188.304 29.215 187.952 29.215Q187.441 29.215 187.017 28.992Q186.593 28.770 186.593 28.305M187.280 28.305Q187.280 28.590 187.507 28.776Q187.734 28.961 188.027 28.961Q188.273 28.961 188.497 28.844Q188.722 28.727 188.857 28.524Q188.991 28.321 188.991 28.067L188.991 27.235Q188.726 27.235 188.441 27.289Q188.155 27.344 187.884 27.473Q187.612 27.602 187.446 27.809Q187.280 28.016 187.280 28.305M192.655 29.137L190.823 29.137L190.823 28.840Q191.097 28.840 191.265 28.793Q191.433 28.746 191.433 28.578L191.433 24.418Q191.433 24.203 191.370 24.108Q191.308 24.012 191.189 23.991Q191.070 23.969 190.823 23.969L190.823 23.672L192.046 23.586L192.046 28.578Q192.046 28.746 192.214 28.793Q192.382 28.840 192.655 28.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.827 40.199)\">\u003Cpath d=\"M195.940 27.383Q195.940 26.903 196.173 26.487Q196.405 26.071 196.815 25.821Q197.225 25.571 197.702 25.571Q198.432 25.571 198.831 26.012Q199.229 26.453 199.229 27.184Q199.229 27.289 199.136 27.313L196.686 27.313L196.686 27.383Q196.686 27.793 196.807 28.149Q196.929 28.504 197.200 28.721Q197.472 28.938 197.901 28.938Q198.264 28.938 198.561 28.709Q198.858 28.481 198.960 28.129Q198.968 28.082 199.054 28.067L199.136 28.067Q199.229 28.094 199.229 28.176Q199.229 28.184 199.222 28.215Q199.159 28.442 199.020 28.625Q198.882 28.809 198.690 28.942Q198.499 29.075 198.280 29.145Q198.061 29.215 197.823 29.215Q197.452 29.215 197.114 29.078Q196.776 28.942 196.509 28.690Q196.241 28.438 196.091 28.098Q195.940 27.758 195.940 27.383M196.694 27.075L198.655 27.075Q198.655 26.770 198.554 26.479Q198.452 26.188 198.235 26.006Q198.018 25.825 197.702 25.825Q197.401 25.825 197.171 26.012Q196.940 26.200 196.817 26.491Q196.694 26.782 196.694 27.075M201.725 29.137L199.745 29.137L199.745 28.840Q200.014 28.840 200.182 28.795Q200.350 28.750 200.350 28.578L200.350 26.442Q200.350 26.227 200.288 26.131Q200.225 26.035 200.108 26.014Q199.991 25.992 199.745 25.992L199.745 25.696L200.913 25.610L200.913 26.395Q200.991 26.184 201.143 25.998Q201.296 25.813 201.495 25.711Q201.694 25.610 201.921 25.610Q202.167 25.610 202.358 25.754Q202.550 25.899 202.550 26.129Q202.550 26.285 202.444 26.395Q202.339 26.504 202.182 26.504Q202.026 26.504 201.917 26.395Q201.807 26.285 201.807 26.129Q201.807 25.969 201.913 25.864Q201.589 25.864 201.374 26.092Q201.159 26.321 201.063 26.660Q200.968 27 200.968 27.305L200.968 28.578Q200.968 28.746 201.194 28.793Q201.421 28.840 201.725 28.840L201.725 29.137M205.038 29.137L203.057 29.137L203.057 28.840Q203.327 28.840 203.495 28.795Q203.663 28.750 203.663 28.578L203.663 26.442Q203.663 26.227 203.600 26.131Q203.538 26.035 203.421 26.014Q203.304 25.992 203.057 25.992L203.057 25.696L204.225 25.610L204.225 26.395Q204.304 26.184 204.456 25.998Q204.608 25.813 204.807 25.711Q205.007 25.610 205.233 25.610Q205.479 25.610 205.671 25.754Q205.862 25.899 205.862 26.129Q205.862 26.285 205.757 26.395Q205.651 26.504 205.495 26.504Q205.339 26.504 205.229 26.395Q205.120 26.285 205.120 26.129Q205.120 25.969 205.225 25.864Q204.901 25.864 204.686 26.092Q204.472 26.321 204.376 26.660Q204.280 27 204.280 27.305L204.280 28.578Q204.280 28.746 204.507 28.793Q204.733 28.840 205.038 28.840L205.038 29.137M206.343 27.442Q206.343 26.938 206.598 26.506Q206.854 26.075 207.290 25.823Q207.725 25.571 208.225 25.571Q208.612 25.571 208.954 25.715Q209.296 25.860 209.557 26.121Q209.819 26.383 209.962 26.719Q210.104 27.055 210.104 27.442Q210.104 27.934 209.841 28.344Q209.577 28.754 209.147 28.985Q208.718 29.215 208.225 29.215Q207.733 29.215 207.300 28.983Q206.866 28.750 206.604 28.342Q206.343 27.934 206.343 27.442M208.225 28.938Q208.682 28.938 208.934 28.715Q209.186 28.492 209.274 28.141Q209.362 27.789 209.362 27.344Q209.362 26.914 209.268 26.576Q209.175 26.239 208.921 26.032Q208.667 25.825 208.225 25.825Q207.577 25.825 207.333 26.241Q207.089 26.657 207.089 27.344Q207.089 27.789 207.177 28.141Q207.264 28.492 207.516 28.715Q207.768 28.938 208.225 28.938M212.597 29.137L210.616 29.137L210.616 28.840Q210.886 28.840 211.054 28.795Q211.222 28.750 211.222 28.578L211.222 26.442Q211.222 26.227 211.159 26.131Q211.097 26.035 210.979 26.014Q210.862 25.992 210.616 25.992L210.616 25.696L211.784 25.610L211.784 26.395Q211.862 26.184 212.014 25.998Q212.167 25.813 212.366 25.711Q212.565 25.610 212.792 25.610Q213.038 25.610 213.229 25.754Q213.421 25.899 213.421 26.129Q213.421 26.285 213.315 26.395Q213.210 26.504 213.054 26.504Q212.897 26.504 212.788 26.395Q212.679 26.285 212.679 26.129Q212.679 25.969 212.784 25.864Q212.460 25.864 212.245 26.092Q212.030 26.321 211.934 26.660Q211.839 27 211.839 27.305L211.839 28.578Q211.839 28.746 212.065 28.793Q212.292 28.840 212.597 28.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m177.989 137.258-25.976-15.246-25.975 15.246 25.975 15.245Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-11.1 115.33)\">\u003Cpath d=\"M152.876 18.676L152.876 16.485L152.173 16.485L152.173 16.231Q152.529 16.231 152.771 15.998Q153.013 15.766 153.124 15.418Q153.236 15.071 153.236 14.715L153.517 14.715L153.517 16.188L154.693 16.188L154.693 16.485L153.517 16.485L153.517 18.660Q153.517 18.981 153.636 19.209Q153.755 19.438 154.036 19.438Q154.216 19.438 154.333 19.315Q154.451 19.192 154.503 19.012Q154.556 18.832 154.556 18.660L154.556 18.188L154.837 18.188L154.837 18.676Q154.837 18.930 154.732 19.170Q154.626 19.410 154.429 19.563Q154.232 19.715 153.974 19.715Q153.658 19.715 153.406 19.592Q153.154 19.469 153.015 19.235Q152.876 19 152.876 18.676M155.654 18.805Q155.654 18.321 156.056 18.026Q156.458 17.731 157.009 17.612Q157.560 17.492 158.052 17.492L158.052 17.203Q158.052 16.977 157.937 16.770Q157.822 16.563 157.624 16.444Q157.427 16.325 157.197 16.325Q156.771 16.325 156.486 16.430Q156.556 16.457 156.603 16.512Q156.650 16.567 156.675 16.637Q156.701 16.707 156.701 16.782Q156.701 16.887 156.650 16.979Q156.599 17.071 156.507 17.121Q156.415 17.172 156.310 17.172Q156.204 17.172 156.113 17.121Q156.021 17.071 155.970 16.979Q155.919 16.887 155.919 16.782Q155.919 16.364 156.308 16.217Q156.697 16.071 157.197 16.071Q157.529 16.071 157.882 16.201Q158.236 16.332 158.464 16.586Q158.693 16.840 158.693 17.188L158.693 18.989Q158.693 19.121 158.765 19.231Q158.837 19.340 158.966 19.340Q159.091 19.340 159.159 19.235Q159.228 19.129 159.228 18.989L159.228 18.477L159.509 18.477L159.509 18.989Q159.509 19.192 159.392 19.350Q159.275 19.508 159.093 19.592Q158.911 19.676 158.708 19.676Q158.478 19.676 158.326 19.504Q158.173 19.332 158.142 19.102Q157.982 19.383 157.673 19.549Q157.365 19.715 157.013 19.715Q156.501 19.715 156.077 19.492Q155.654 19.270 155.654 18.805M156.341 18.805Q156.341 19.090 156.568 19.276Q156.794 19.461 157.087 19.461Q157.333 19.461 157.558 19.344Q157.783 19.227 157.917 19.024Q158.052 18.821 158.052 18.567L158.052 17.735Q157.786 17.735 157.501 17.789Q157.216 17.844 156.945 17.973Q156.673 18.102 156.507 18.309Q156.341 18.516 156.341 18.805M161.810 19.637L159.829 19.637L159.829 19.340Q160.099 19.340 160.267 19.295Q160.435 19.250 160.435 19.078L160.435 16.942Q160.435 16.727 160.372 16.631Q160.310 16.535 160.193 16.514Q160.076 16.492 159.829 16.492L159.829 16.196L160.997 16.110L160.997 16.895Q161.076 16.684 161.228 16.498Q161.380 16.313 161.579 16.211Q161.779 16.110 162.005 16.110Q162.251 16.110 162.443 16.254Q162.634 16.399 162.634 16.629Q162.634 16.785 162.529 16.895Q162.423 17.004 162.267 17.004Q162.111 17.004 162.001 16.895Q161.892 16.785 161.892 16.629Q161.892 16.469 161.997 16.364Q161.673 16.364 161.458 16.592Q161.243 16.821 161.148 17.160Q161.052 17.500 161.052 17.805L161.052 19.078Q161.052 19.246 161.279 19.293Q161.505 19.340 161.810 19.340L161.810 19.637M163.115 20.246Q163.115 19.965 163.326 19.754Q163.536 19.543 163.822 19.453Q163.665 19.328 163.587 19.139Q163.509 18.950 163.509 18.750Q163.509 18.395 163.740 18.102Q163.372 17.762 163.372 17.293Q163.372 16.942 163.576 16.672Q163.779 16.403 164.099 16.256Q164.419 16.110 164.763 16.110Q165.283 16.110 165.654 16.391Q166.017 16.020 166.564 16.020Q166.743 16.020 166.870 16.147Q166.997 16.274 166.997 16.453Q166.997 16.559 166.919 16.637Q166.841 16.715 166.732 16.715Q166.622 16.715 166.546 16.639Q166.470 16.563 166.470 16.453Q166.470 16.352 166.509 16.301Q166.517 16.293 166.521 16.287Q166.525 16.282 166.525 16.278Q166.150 16.278 165.829 16.532Q166.150 16.871 166.150 17.293Q166.150 17.563 166.033 17.780Q165.915 17.996 165.710 18.155Q165.505 18.313 165.263 18.395Q165.021 18.477 164.763 18.477Q164.544 18.477 164.331 18.418Q164.118 18.360 163.923 18.239Q163.829 18.379 163.829 18.559Q163.829 18.766 163.966 18.918Q164.103 19.071 164.310 19.071L165.005 19.071Q165.493 19.071 165.906 19.155Q166.318 19.239 166.597 19.496Q166.876 19.754 166.876 20.246Q166.876 20.610 166.556 20.842Q166.236 21.075 165.794 21.176Q165.353 21.278 164.997 21.278Q164.642 21.278 164.199 21.176Q163.755 21.075 163.435 20.842Q163.115 20.610 163.115 20.246M163.618 20.246Q163.618 20.442 163.763 20.590Q163.908 20.739 164.120 20.828Q164.333 20.918 164.574 20.965Q164.814 21.012 164.997 21.012Q165.240 21.012 165.570 20.934Q165.900 20.856 166.136 20.682Q166.372 20.508 166.372 20.246Q166.372 19.840 165.962 19.731Q165.552 19.621 164.990 19.621L164.310 19.621Q164.040 19.621 163.829 19.799Q163.618 19.977 163.618 20.246M164.763 18.211Q165.486 18.211 165.486 17.293Q165.486 16.371 164.763 16.371Q164.036 16.371 164.036 17.293Q164.036 18.211 164.763 18.211M167.361 17.883Q167.361 17.403 167.593 16.987Q167.826 16.571 168.236 16.321Q168.646 16.071 169.122 16.071Q169.853 16.071 170.251 16.512Q170.650 16.953 170.650 17.684Q170.650 17.789 170.556 17.813L168.107 17.813L168.107 17.883Q168.107 18.293 168.228 18.649Q168.349 19.004 168.620 19.221Q168.892 19.438 169.322 19.438Q169.685 19.438 169.982 19.209Q170.279 18.981 170.380 18.629Q170.388 18.582 170.474 18.567L170.556 18.567Q170.650 18.594 170.650 18.676Q170.650 18.684 170.642 18.715Q170.579 18.942 170.441 19.125Q170.302 19.309 170.111 19.442Q169.919 19.575 169.701 19.645Q169.482 19.715 169.243 19.715Q168.872 19.715 168.534 19.578Q168.197 19.442 167.929 19.190Q167.661 18.938 167.511 18.598Q167.361 18.258 167.361 17.883M168.115 17.575L170.076 17.575Q170.076 17.270 169.974 16.979Q169.872 16.688 169.656 16.506Q169.439 16.325 169.122 16.325Q168.822 16.325 168.591 16.512Q168.361 16.700 168.238 16.991Q168.115 17.282 168.115 17.575M171.763 18.676L171.763 16.485L171.060 16.485L171.060 16.231Q171.415 16.231 171.658 15.998Q171.900 15.766 172.011 15.418Q172.122 15.071 172.122 14.715L172.404 14.715L172.404 16.188L173.579 16.188L173.579 16.485L172.404 16.485L172.404 18.660Q172.404 18.981 172.523 19.209Q172.642 19.438 172.923 19.438Q173.103 19.438 173.220 19.315Q173.337 19.192 173.390 19.012Q173.443 18.832 173.443 18.660L173.443 18.188L173.724 18.188L173.724 18.676Q173.724 18.930 173.618 19.170Q173.513 19.410 173.316 19.563Q173.118 19.715 172.861 19.715Q172.544 19.715 172.292 19.592Q172.040 19.469 171.902 19.235Q171.763 19 171.763 18.676\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-11.1 115.33)\">\u003Cpath d=\"M156.192 29.137L154.337 29.137L154.337 28.840Q154.610 28.840 154.778 28.793Q154.946 28.746 154.946 28.578L154.946 26.442Q154.946 26.227 154.883 26.131Q154.821 26.035 154.702 26.014Q154.583 25.992 154.337 25.992L154.337 25.696L155.528 25.610L155.528 26.344Q155.641 26.129 155.835 25.961Q156.028 25.793 156.266 25.701Q156.504 25.610 156.758 25.610Q157.719 25.610 157.895 26.321Q158.079 25.992 158.407 25.801Q158.735 25.610 159.114 25.610Q160.290 25.610 160.290 26.688L160.290 28.578Q160.290 28.746 160.458 28.793Q160.626 28.840 160.895 28.840L160.895 29.137L159.040 29.137L159.040 28.840Q159.313 28.840 159.481 28.795Q159.649 28.750 159.649 28.578L159.649 26.703Q159.649 26.317 159.524 26.090Q159.399 25.864 159.047 25.864Q158.743 25.864 158.487 26.026Q158.231 26.188 158.083 26.457Q157.934 26.727 157.934 27.024L157.934 28.578Q157.934 28.746 158.104 28.793Q158.274 28.840 158.544 28.840L158.544 29.137L156.688 29.137L156.688 28.840Q156.962 28.840 157.129 28.793Q157.297 28.746 157.297 28.578L157.297 26.703Q157.297 26.317 157.172 26.090Q157.047 25.864 156.696 25.864Q156.391 25.864 156.135 26.026Q155.879 26.188 155.731 26.457Q155.583 26.727 155.583 27.024L155.583 28.578Q155.583 28.746 155.753 28.793Q155.922 28.840 156.192 28.840L156.192 29.137M161.340 27.383Q161.340 26.903 161.573 26.487Q161.805 26.071 162.215 25.821Q162.626 25.571 163.102 25.571Q163.833 25.571 164.231 26.012Q164.629 26.453 164.629 27.184Q164.629 27.289 164.536 27.313L162.087 27.313L162.087 27.383Q162.087 27.793 162.208 28.149Q162.329 28.504 162.600 28.721Q162.872 28.938 163.301 28.938Q163.665 28.938 163.962 28.709Q164.258 28.481 164.360 28.129Q164.368 28.082 164.454 28.067L164.536 28.067Q164.629 28.094 164.629 28.176Q164.629 28.184 164.622 28.215Q164.559 28.442 164.420 28.625Q164.282 28.809 164.090 28.942Q163.899 29.075 163.680 29.145Q163.462 29.215 163.223 29.215Q162.852 29.215 162.514 29.078Q162.176 28.942 161.909 28.690Q161.641 28.438 161.491 28.098Q161.340 27.758 161.340 27.383M162.094 27.075L164.055 27.075Q164.055 26.770 163.954 26.479Q163.852 26.188 163.635 26.006Q163.419 25.825 163.102 25.825Q162.801 25.825 162.571 26.012Q162.340 26.200 162.217 26.491Q162.094 26.782 162.094 27.075M165.743 28.176L165.743 25.985L165.040 25.985L165.040 25.731Q165.395 25.731 165.637 25.498Q165.879 25.266 165.991 24.918Q166.102 24.571 166.102 24.215L166.383 24.215L166.383 25.688L167.559 25.688L167.559 25.985L166.383 25.985L166.383 28.160Q166.383 28.481 166.503 28.709Q166.622 28.938 166.903 28.938Q167.083 28.938 167.200 28.815Q167.317 28.692 167.370 28.512Q167.422 28.332 167.422 28.160L167.422 27.688L167.704 27.688L167.704 28.176Q167.704 28.430 167.598 28.670Q167.493 28.910 167.295 29.063Q167.098 29.215 166.840 29.215Q166.524 29.215 166.272 29.092Q166.020 28.969 165.881 28.735Q165.743 28.500 165.743 28.176M169.610 28.672Q169.610 28.481 169.743 28.348Q169.876 28.215 170.071 28.215Q170.262 28.215 170.395 28.348Q170.528 28.481 170.528 28.672Q170.528 28.871 170.395 29.004Q170.262 29.137 170.071 29.137Q169.876 29.137 169.743 29.004Q169.610 28.871 169.610 28.672M169.926 27.496L169.926 27.098Q169.926 26.700 170.055 26.299Q170.184 25.899 170.430 25.563Q170.508 25.457 170.674 25.282Q170.840 25.106 170.909 24.969Q170.977 24.832 170.977 24.594Q170.977 24.106 170.774 23.934Q170.571 23.762 170.071 23.762Q169.762 23.762 169.485 23.873Q169.208 23.985 169.055 24.207Q169.227 24.207 169.335 24.321Q169.442 24.434 169.442 24.602Q169.442 24.703 169.391 24.795Q169.340 24.887 169.251 24.940Q169.161 24.992 169.047 24.992Q168.938 24.992 168.848 24.940Q168.758 24.887 168.708 24.795Q168.657 24.703 168.657 24.602Q168.657 24.254 168.868 24.004Q169.079 23.754 169.403 23.629Q169.727 23.504 170.071 23.504Q170.731 23.504 171.225 23.754Q171.719 24.004 171.719 24.602Q171.719 24.852 171.596 25.067Q171.473 25.282 171.262 25.418Q170.950 25.621 170.717 25.877Q170.485 26.133 170.346 26.450Q170.208 26.766 170.208 27.114L170.208 27.496Q170.208 27.532 170.180 27.559Q170.153 27.586 170.122 27.586L170.016 27.586Q169.985 27.586 169.956 27.561Q169.926 27.535 169.926 27.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\">\u003Cg transform=\"translate(117.613 110.12)\">\u003Cpath d=\"M152.294 29.129L152.294 27.907Q152.294 27.879 152.326 27.848Q152.357 27.817 152.380 27.817L152.486 27.817Q152.556 27.817 152.572 27.879Q152.634 28.200 152.773 28.440Q152.911 28.680 153.144 28.821Q153.376 28.961 153.685 28.961Q153.923 28.961 154.132 28.901Q154.341 28.840 154.478 28.692Q154.615 28.543 154.615 28.297Q154.615 28.043 154.404 27.877Q154.193 27.711 153.923 27.657L153.302 27.543Q152.896 27.465 152.595 27.209Q152.294 26.953 152.294 26.578Q152.294 26.211 152.495 25.989Q152.697 25.766 153.021 25.668Q153.345 25.571 153.685 25.571Q154.150 25.571 154.447 25.778L154.669 25.594Q154.693 25.571 154.724 25.571L154.775 25.571Q154.806 25.571 154.833 25.598Q154.861 25.625 154.861 25.657L154.861 26.641Q154.861 26.672 154.835 26.701Q154.810 26.731 154.775 26.731L154.669 26.731Q154.634 26.731 154.607 26.703Q154.579 26.676 154.579 26.641Q154.579 26.242 154.327 26.022Q154.076 25.801 153.677 25.801Q153.322 25.801 153.038 25.924Q152.755 26.047 152.755 26.352Q152.755 26.571 152.956 26.703Q153.158 26.836 153.404 26.879L154.029 26.992Q154.458 27.082 154.767 27.379Q155.076 27.676 155.076 28.090Q155.076 28.660 154.677 28.938Q154.279 29.215 153.685 29.215Q153.134 29.215 152.783 28.879L152.486 29.192Q152.462 29.215 152.427 29.215L152.380 29.215Q152.357 29.215 152.326 29.184Q152.294 29.153 152.294 29.129M157.533 29.137L155.677 29.137L155.677 28.840Q155.951 28.840 156.118 28.793Q156.286 28.746 156.286 28.578L156.286 24.418Q156.286 24.203 156.224 24.108Q156.161 24.012 156.042 23.991Q155.923 23.969 155.677 23.969L155.677 23.672L156.900 23.586L156.900 26.289Q157.025 26.078 157.212 25.928Q157.400 25.778 157.626 25.694Q157.853 25.610 158.099 25.610Q159.267 25.610 159.267 26.688L159.267 28.578Q159.267 28.746 159.437 28.793Q159.607 28.840 159.876 28.840L159.876 29.137L158.021 29.137L158.021 28.840Q158.294 28.840 158.462 28.793Q158.630 28.746 158.630 28.578L158.630 26.703Q158.630 26.321 158.509 26.092Q158.388 25.864 158.036 25.864Q157.724 25.864 157.470 26.026Q157.216 26.188 157.070 26.457Q156.923 26.727 156.923 27.024L156.923 28.578Q156.923 28.746 157.093 28.793Q157.263 28.840 157.533 28.840L157.533 29.137M162.181 29.137L160.404 29.137L160.404 28.840Q160.677 28.840 160.845 28.793Q161.013 28.746 161.013 28.578L161.013 26.442Q161.013 26.227 160.956 26.131Q160.900 26.035 160.786 26.014Q160.673 25.992 160.427 25.992L160.427 25.696L161.626 25.610L161.626 28.578Q161.626 28.746 161.773 28.793Q161.919 28.840 162.181 28.840L162.181 29.137M160.740 24.215Q160.740 24.024 160.874 23.893Q161.009 23.762 161.204 23.762Q161.326 23.762 161.429 23.825Q161.533 23.887 161.595 23.991Q161.658 24.094 161.658 24.215Q161.658 24.410 161.527 24.545Q161.396 24.680 161.204 24.680Q161.005 24.680 160.872 24.547Q160.740 24.414 160.740 24.215M164.564 30.688L162.708 30.688L162.708 30.395Q162.978 30.395 163.146 30.350Q163.314 30.305 163.314 30.129L163.314 26.305Q163.314 26.098 163.158 26.045Q163.001 25.992 162.708 25.992L162.708 25.696L163.931 25.610L163.931 26.075Q164.161 25.852 164.476 25.731Q164.790 25.610 165.130 25.610Q165.603 25.610 166.007 25.856Q166.411 26.102 166.644 26.518Q166.876 26.934 166.876 27.410Q166.876 27.785 166.728 28.114Q166.579 28.442 166.310 28.694Q166.040 28.946 165.697 29.080Q165.353 29.215 164.993 29.215Q164.704 29.215 164.433 29.094Q164.161 28.973 163.954 28.762L163.954 30.129Q163.954 30.305 164.122 30.350Q164.290 30.395 164.564 30.395L164.564 30.688M163.954 26.473L163.954 28.313Q164.107 28.602 164.368 28.782Q164.630 28.961 164.939 28.961Q165.224 28.961 165.447 28.823Q165.669 28.684 165.822 28.453Q165.974 28.223 166.052 27.951Q166.130 27.680 166.130 27.410Q166.130 27.078 166.005 26.721Q165.880 26.364 165.632 26.127Q165.384 25.891 165.036 25.891Q164.712 25.891 164.417 26.047Q164.122 26.203 163.954 26.473\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M24.081 137.258-1.63 122.167l-25.713 15.09L-1.63 152.35Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-162.62 114.87)\">\u003Cpath d=\"M154.165 19.637L152.333 19.637L152.333 19.340Q152.607 19.340 152.775 19.293Q152.943 19.246 152.943 19.078L152.943 14.918Q152.943 14.703 152.880 14.608Q152.818 14.512 152.699 14.491Q152.579 14.469 152.333 14.469L152.333 14.172L153.556 14.086L153.556 19.078Q153.556 19.246 153.724 19.293Q153.892 19.340 154.165 19.340L154.165 19.637M154.708 18.805Q154.708 18.321 155.111 18.026Q155.513 17.731 156.064 17.612Q156.615 17.492 157.107 17.492L157.107 17.203Q157.107 16.977 156.992 16.770Q156.876 16.563 156.679 16.444Q156.482 16.325 156.251 16.325Q155.826 16.325 155.540 16.430Q155.611 16.457 155.658 16.512Q155.704 16.567 155.730 16.637Q155.755 16.707 155.755 16.782Q155.755 16.887 155.704 16.979Q155.654 17.071 155.562 17.121Q155.470 17.172 155.365 17.172Q155.259 17.172 155.167 17.121Q155.076 17.071 155.025 16.979Q154.974 16.887 154.974 16.782Q154.974 16.364 155.363 16.217Q155.751 16.071 156.251 16.071Q156.583 16.071 156.937 16.201Q157.290 16.332 157.519 16.586Q157.747 16.840 157.747 17.188L157.747 18.989Q157.747 19.121 157.820 19.231Q157.892 19.340 158.021 19.340Q158.146 19.340 158.214 19.235Q158.283 19.129 158.283 18.989L158.283 18.477L158.564 18.477L158.564 18.989Q158.564 19.192 158.447 19.350Q158.329 19.508 158.148 19.592Q157.966 19.676 157.763 19.676Q157.533 19.676 157.380 19.504Q157.228 19.332 157.197 19.102Q157.036 19.383 156.728 19.549Q156.419 19.715 156.068 19.715Q155.556 19.715 155.132 19.492Q154.708 19.270 154.708 18.805M155.396 18.805Q155.396 19.090 155.622 19.276Q155.849 19.461 156.142 19.461Q156.388 19.461 156.613 19.344Q156.837 19.227 156.972 19.024Q157.107 18.821 157.107 18.567L157.107 17.735Q156.841 17.735 156.556 17.789Q156.271 17.844 155.999 17.973Q155.728 18.102 155.562 18.309Q155.396 18.516 155.396 18.805M160.865 19.637L158.884 19.637L158.884 19.340Q159.154 19.340 159.322 19.295Q159.490 19.250 159.490 19.078L159.490 16.942Q159.490 16.727 159.427 16.631Q159.365 16.535 159.247 16.514Q159.130 16.492 158.884 16.492L158.884 16.196L160.052 16.110L160.052 16.895Q160.130 16.684 160.283 16.498Q160.435 16.313 160.634 16.211Q160.833 16.110 161.060 16.110Q161.306 16.110 161.497 16.254Q161.689 16.399 161.689 16.629Q161.689 16.785 161.583 16.895Q161.478 17.004 161.322 17.004Q161.165 17.004 161.056 16.895Q160.947 16.785 160.947 16.629Q160.947 16.469 161.052 16.364Q160.728 16.364 160.513 16.592Q160.298 16.821 160.202 17.160Q160.107 17.500 160.107 17.805L160.107 19.078Q160.107 19.246 160.333 19.293Q160.560 19.340 160.865 19.340L160.865 19.637M162.169 20.246Q162.169 19.965 162.380 19.754Q162.591 19.543 162.876 19.453Q162.720 19.328 162.642 19.139Q162.564 18.950 162.564 18.750Q162.564 18.395 162.794 18.102Q162.427 17.762 162.427 17.293Q162.427 16.942 162.630 16.672Q162.833 16.403 163.154 16.256Q163.474 16.110 163.818 16.110Q164.337 16.110 164.708 16.391Q165.072 16.020 165.618 16.020Q165.798 16.020 165.925 16.147Q166.052 16.274 166.052 16.453Q166.052 16.559 165.974 16.637Q165.896 16.715 165.786 16.715Q165.677 16.715 165.601 16.639Q165.525 16.563 165.525 16.453Q165.525 16.352 165.564 16.301Q165.572 16.293 165.576 16.287Q165.579 16.282 165.579 16.278Q165.204 16.278 164.884 16.532Q165.204 16.871 165.204 17.293Q165.204 17.563 165.087 17.780Q164.970 17.996 164.765 18.155Q164.560 18.313 164.318 18.395Q164.076 18.477 163.818 18.477Q163.599 18.477 163.386 18.418Q163.173 18.360 162.978 18.239Q162.884 18.379 162.884 18.559Q162.884 18.766 163.021 18.918Q163.158 19.071 163.365 19.071L164.060 19.071Q164.548 19.071 164.960 19.155Q165.372 19.239 165.652 19.496Q165.931 19.754 165.931 20.246Q165.931 20.610 165.611 20.842Q165.290 21.075 164.849 21.176Q164.408 21.278 164.052 21.278Q163.697 21.278 163.253 21.176Q162.810 21.075 162.490 20.842Q162.169 20.610 162.169 20.246M162.673 20.246Q162.673 20.442 162.818 20.590Q162.962 20.739 163.175 20.828Q163.388 20.918 163.628 20.965Q163.868 21.012 164.052 21.012Q164.294 21.012 164.624 20.934Q164.954 20.856 165.191 20.682Q165.427 20.508 165.427 20.246Q165.427 19.840 165.017 19.731Q164.607 19.621 164.044 19.621L163.365 19.621Q163.095 19.621 162.884 19.799Q162.673 19.977 162.673 20.246M163.818 18.211Q164.540 18.211 164.540 17.293Q164.540 16.371 163.818 16.371Q163.091 16.371 163.091 17.293Q163.091 18.211 163.818 18.211M166.415 17.883Q166.415 17.403 166.648 16.987Q166.880 16.571 167.290 16.321Q167.701 16.071 168.177 16.071Q168.908 16.071 169.306 16.512Q169.704 16.953 169.704 17.684Q169.704 17.789 169.611 17.813L167.161 17.813L167.161 17.883Q167.161 18.293 167.283 18.649Q167.404 19.004 167.675 19.221Q167.947 19.438 168.376 19.438Q168.740 19.438 169.036 19.209Q169.333 18.981 169.435 18.629Q169.443 18.582 169.529 18.567L169.611 18.567Q169.704 18.594 169.704 18.676Q169.704 18.684 169.697 18.715Q169.634 18.942 169.495 19.125Q169.357 19.309 169.165 19.442Q168.974 19.575 168.755 19.645Q168.536 19.715 168.298 19.715Q167.927 19.715 167.589 19.578Q167.251 19.442 166.984 19.190Q166.716 18.938 166.566 18.598Q166.415 18.258 166.415 17.883M167.169 17.575L169.130 17.575Q169.130 17.270 169.029 16.979Q168.927 16.688 168.710 16.506Q168.493 16.325 168.177 16.325Q167.876 16.325 167.646 16.512Q167.415 16.700 167.292 16.991Q167.169 17.282 167.169 17.575\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-162.62 114.87)\">\u003Cpath d=\"M152.609 29.746Q152.609 29.465 152.820 29.254Q153.031 29.043 153.316 28.953Q153.160 28.828 153.082 28.639Q153.004 28.450 153.004 28.250Q153.004 27.895 153.234 27.602Q152.867 27.262 152.867 26.793Q152.867 26.442 153.070 26.172Q153.273 25.903 153.594 25.756Q153.914 25.610 154.258 25.610Q154.777 25.610 155.148 25.891Q155.512 25.520 156.059 25.520Q156.238 25.520 156.365 25.647Q156.492 25.774 156.492 25.953Q156.492 26.059 156.414 26.137Q156.336 26.215 156.226 26.215Q156.117 26.215 156.041 26.139Q155.965 26.063 155.965 25.953Q155.965 25.852 156.004 25.801Q156.012 25.793 156.016 25.787Q156.019 25.782 156.019 25.778Q155.644 25.778 155.324 26.032Q155.644 26.371 155.644 26.793Q155.644 27.063 155.527 27.280Q155.410 27.496 155.205 27.655Q155 27.813 154.758 27.895Q154.516 27.977 154.258 27.977Q154.039 27.977 153.826 27.918Q153.613 27.860 153.418 27.739Q153.324 27.879 153.324 28.059Q153.324 28.266 153.461 28.418Q153.598 28.571 153.805 28.571L154.500 28.571Q154.988 28.571 155.400 28.655Q155.812 28.739 156.092 28.996Q156.371 29.254 156.371 29.746Q156.371 30.110 156.051 30.342Q155.730 30.575 155.289 30.676Q154.848 30.778 154.492 30.778Q154.137 30.778 153.693 30.676Q153.250 30.575 152.930 30.342Q152.609 30.110 152.609 29.746M153.113 29.746Q153.113 29.942 153.258 30.090Q153.402 30.239 153.615 30.328Q153.828 30.418 154.068 30.465Q154.309 30.512 154.492 30.512Q154.734 30.512 155.064 30.434Q155.394 30.356 155.631 30.182Q155.867 30.008 155.867 29.746Q155.867 29.340 155.457 29.231Q155.047 29.121 154.484 29.121L153.805 29.121Q153.535 29.121 153.324 29.299Q153.113 29.477 153.113 29.746M154.258 27.711Q154.980 27.711 154.980 26.793Q154.980 25.871 154.258 25.871Q153.531 25.871 153.531 26.793Q153.531 27.711 154.258 27.711M156.953 28.305Q156.953 27.821 157.355 27.526Q157.758 27.231 158.309 27.112Q158.859 26.992 159.351 26.992L159.351 26.703Q159.351 26.477 159.236 26.270Q159.121 26.063 158.924 25.944Q158.726 25.825 158.496 25.825Q158.070 25.825 157.785 25.930Q157.855 25.957 157.902 26.012Q157.949 26.067 157.975 26.137Q158 26.207 158 26.282Q158 26.387 157.949 26.479Q157.898 26.571 157.807 26.621Q157.715 26.672 157.609 26.672Q157.504 26.672 157.412 26.621Q157.320 26.571 157.269 26.479Q157.219 26.387 157.219 26.282Q157.219 25.864 157.607 25.717Q157.996 25.571 158.496 25.571Q158.828 25.571 159.182 25.701Q159.535 25.832 159.764 26.086Q159.992 26.340 159.992 26.688L159.992 28.489Q159.992 28.621 160.064 28.731Q160.137 28.840 160.266 28.840Q160.391 28.840 160.459 28.735Q160.527 28.629 160.527 28.489L160.527 27.977L160.809 27.977L160.809 28.489Q160.809 28.692 160.691 28.850Q160.574 29.008 160.392 29.092Q160.211 29.176 160.008 29.176Q159.777 29.176 159.625 29.004Q159.473 28.832 159.441 28.602Q159.281 28.883 158.973 29.049Q158.664 29.215 158.312 29.215Q157.801 29.215 157.377 28.992Q156.953 28.770 156.953 28.305M157.641 28.305Q157.641 28.590 157.867 28.776Q158.094 28.961 158.387 28.961Q158.633 28.961 158.857 28.844Q159.082 28.727 159.217 28.524Q159.351 28.321 159.351 28.067L159.351 27.235Q159.086 27.235 158.801 27.289Q158.516 27.344 158.244 27.473Q157.973 27.602 157.807 27.809Q157.641 28.016 157.641 28.305M162.984 30.688L161.129 30.688L161.129 30.395Q161.398 30.395 161.566 30.350Q161.734 30.305 161.734 30.129L161.734 26.305Q161.734 26.098 161.578 26.045Q161.422 25.992 161.129 25.992L161.129 25.696L162.351 25.610L162.351 26.075Q162.582 25.852 162.896 25.731Q163.211 25.610 163.551 25.610Q164.023 25.610 164.428 25.856Q164.832 26.102 165.064 26.518Q165.297 26.934 165.297 27.410Q165.297 27.785 165.148 28.114Q165 28.442 164.730 28.694Q164.461 28.946 164.117 29.080Q163.773 29.215 163.414 29.215Q163.125 29.215 162.853 29.094Q162.582 28.973 162.375 28.762L162.375 30.129Q162.375 30.305 162.543 30.350Q162.711 30.395 162.984 30.395L162.984 30.688M162.375 26.473L162.375 28.313Q162.527 28.602 162.789 28.782Q163.051 28.961 163.359 28.961Q163.644 28.961 163.867 28.823Q164.090 28.684 164.242 28.453Q164.394 28.223 164.473 27.951Q164.551 27.680 164.551 27.410Q164.551 27.078 164.426 26.721Q164.301 26.364 164.053 26.127Q163.805 25.891 163.457 25.891Q163.133 25.891 162.838 26.047Q162.543 26.203 162.375 26.473M167.008 28.672Q167.008 28.481 167.141 28.348Q167.273 28.215 167.469 28.215Q167.660 28.215 167.793 28.348Q167.926 28.481 167.926 28.672Q167.926 28.871 167.793 29.004Q167.660 29.137 167.469 29.137Q167.273 29.137 167.141 29.004Q167.008 28.871 167.008 28.672M167.324 27.496L167.324 27.098Q167.324 26.700 167.453 26.299Q167.582 25.899 167.828 25.563Q167.906 25.457 168.072 25.282Q168.238 25.106 168.307 24.969Q168.375 24.832 168.375 24.594Q168.375 24.106 168.172 23.934Q167.969 23.762 167.469 23.762Q167.160 23.762 166.883 23.873Q166.605 23.985 166.453 24.207Q166.625 24.207 166.732 24.321Q166.840 24.434 166.840 24.602Q166.840 24.703 166.789 24.795Q166.738 24.887 166.648 24.940Q166.559 24.992 166.445 24.992Q166.336 24.992 166.246 24.940Q166.156 24.887 166.105 24.795Q166.055 24.703 166.055 24.602Q166.055 24.254 166.266 24.004Q166.476 23.754 166.801 23.629Q167.125 23.504 167.469 23.504Q168.129 23.504 168.623 23.754Q169.117 24.004 169.117 24.602Q169.117 24.852 168.994 25.067Q168.871 25.282 168.660 25.418Q168.348 25.621 168.115 25.877Q167.883 26.133 167.744 26.450Q167.605 26.766 167.605 27.114L167.605 27.496Q167.605 27.532 167.578 27.559Q167.551 27.586 167.519 27.586L167.414 27.586Q167.383 27.586 167.353 27.561Q167.324 27.535 167.324 27.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-38.62 16.334h73.977V-9.274H-38.62Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-174.707 -19.663)\">\u003Cpath d=\"M154.009 21.137L152.375 21.137L152.375 20.857Q152.604 20.857 152.753 20.823Q152.902 20.788 152.902 20.648L152.902 18.799Q152.902 18.529 152.794 18.468Q152.686 18.406 152.375 18.406L152.375 18.126L153.435 18.051L153.435 18.700Q153.606 18.392 153.910 18.221Q154.214 18.051 154.559 18.051Q154.959 18.051 155.236 18.191Q155.513 18.331 155.598 18.679Q155.766 18.386 156.065 18.218Q156.364 18.051 156.709 18.051Q157.215 18.051 157.499 18.274Q157.783 18.498 157.783 18.994L157.783 20.648Q157.783 20.785 157.931 20.821Q158.080 20.857 158.305 20.857L158.305 21.137L156.675 21.137L156.675 20.857Q156.901 20.857 157.051 20.821Q157.201 20.785 157.201 20.648L157.201 19.008Q157.201 18.673 157.082 18.473Q156.962 18.273 156.648 18.273Q156.378 18.273 156.144 18.409Q155.909 18.546 155.771 18.780Q155.633 19.014 155.633 19.288L155.633 20.648Q155.633 20.785 155.781 20.821Q155.930 20.857 156.156 20.857L156.156 21.137L154.525 21.137L154.525 20.857Q154.754 20.857 154.903 20.823Q155.052 20.788 155.052 20.648L155.052 19.008Q155.052 18.673 154.932 18.473Q154.812 18.273 154.498 18.273Q154.228 18.273 153.994 18.409Q153.760 18.546 153.621 18.780Q153.483 19.014 153.483 19.288L153.483 20.648Q153.483 20.785 153.633 20.821Q153.784 20.857 154.009 20.857L154.009 21.137M158.852 19.654Q158.852 19.312 158.987 19.013Q159.122 18.714 159.362 18.490Q159.601 18.266 159.919 18.141Q160.237 18.016 160.568 18.016Q161.013 18.016 161.412 18.232Q161.812 18.447 162.046 18.825Q162.281 19.202 162.281 19.654Q162.281 19.995 162.139 20.279Q161.997 20.563 161.753 20.770Q161.508 20.976 161.199 21.091Q160.889 21.205 160.568 21.205Q160.138 21.205 159.736 21.004Q159.334 20.802 159.093 20.450Q158.852 20.098 158.852 19.654M160.568 20.956Q161.170 20.956 161.394 20.578Q161.617 20.200 161.617 19.568Q161.617 18.956 161.383 18.597Q161.149 18.239 160.568 18.239Q159.515 18.239 159.515 19.568Q159.515 20.200 159.741 20.578Q159.967 20.956 160.568 20.956M164.625 21.137L162.889 21.137L162.889 20.857Q163.118 20.857 163.267 20.823Q163.415 20.788 163.415 20.648L163.415 18.799Q163.415 18.529 163.308 18.468Q163.200 18.406 162.889 18.406L162.889 18.126L163.918 18.051L163.918 18.758Q164.048 18.450 164.290 18.251Q164.533 18.051 164.851 18.051Q165.070 18.051 165.241 18.175Q165.411 18.300 165.411 18.512Q165.411 18.649 165.312 18.748Q165.213 18.847 165.080 18.847Q164.943 18.847 164.844 18.748Q164.745 18.649 164.745 18.512Q164.745 18.372 164.844 18.273Q164.554 18.273 164.354 18.469Q164.154 18.666 164.061 18.960Q163.969 19.254 163.969 19.534L163.969 20.648Q163.969 20.857 164.625 20.857L164.625 21.137M165.955 19.602Q165.955 19.281 166.080 18.992Q166.204 18.703 166.430 18.480Q166.656 18.256 166.951 18.136Q167.247 18.016 167.565 18.016Q167.893 18.016 168.154 18.116Q168.416 18.215 168.592 18.397Q168.768 18.580 168.862 18.838Q168.956 19.096 168.956 19.428Q168.956 19.520 168.874 19.541L166.618 19.541L166.618 19.602Q166.618 20.190 166.902 20.573Q167.185 20.956 167.753 20.956Q168.074 20.956 168.342 20.763Q168.611 20.570 168.700 20.255Q168.706 20.214 168.782 20.200L168.874 20.200Q168.956 20.224 168.956 20.296Q168.956 20.303 168.949 20.330Q168.836 20.727 168.465 20.966Q168.095 21.205 167.671 21.205Q167.233 21.205 166.833 20.997Q166.433 20.788 166.194 20.421Q165.955 20.054 165.955 19.602M166.625 19.332L168.440 19.332Q168.440 19.055 168.342 18.803Q168.245 18.550 168.047 18.394Q167.848 18.239 167.565 18.239Q167.288 18.239 167.074 18.397Q166.861 18.556 166.743 18.811Q166.625 19.066 166.625 19.332\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-174.707 -19.663)\">\u003Cpath d=\"M172.258 19.626Q172.258 19.288 172.399 18.997Q172.539 18.707 172.783 18.493Q173.027 18.280 173.332 18.165Q173.636 18.051 173.961 18.051Q174.231 18.051 174.494 18.150Q174.757 18.249 174.948 18.427L174.948 17.029Q174.948 16.759 174.841 16.697Q174.733 16.636 174.422 16.636L174.422 16.355L175.499 16.280L175.499 20.464Q175.499 20.652 175.553 20.735Q175.608 20.819 175.709 20.838Q175.810 20.857 176.025 20.857L176.025 21.137L174.918 21.205L174.918 20.788Q174.501 21.205 173.875 21.205Q173.444 21.205 173.072 20.993Q172.699 20.782 172.479 20.421Q172.258 20.060 172.258 19.626M173.933 20.983Q174.142 20.983 174.328 20.911Q174.514 20.840 174.668 20.703Q174.822 20.566 174.918 20.388L174.918 18.779Q174.832 18.632 174.687 18.512Q174.542 18.392 174.372 18.333Q174.203 18.273 174.022 18.273Q173.462 18.273 173.193 18.662Q172.925 19.052 172.925 19.633Q172.925 20.204 173.159 20.594Q173.393 20.983 173.933 20.983M176.733 20.409Q176.733 20.077 176.956 19.850Q177.180 19.623 177.524 19.495Q177.867 19.366 178.240 19.314Q178.612 19.261 178.917 19.261L178.917 19.008Q178.917 18.803 178.809 18.623Q178.701 18.444 178.520 18.341Q178.339 18.239 178.131 18.239Q177.724 18.239 177.488 18.331Q177.577 18.368 177.623 18.452Q177.669 18.536 177.669 18.638Q177.669 18.734 177.623 18.813Q177.577 18.891 177.496 18.936Q177.416 18.980 177.327 18.980Q177.177 18.980 177.076 18.883Q176.975 18.785 176.975 18.638Q176.975 18.016 178.131 18.016Q178.342 18.016 178.592 18.080Q178.841 18.143 179.043 18.262Q179.245 18.382 179.371 18.567Q179.498 18.751 179.498 18.994L179.498 20.570Q179.498 20.686 179.559 20.782Q179.621 20.877 179.734 20.877Q179.843 20.877 179.908 20.783Q179.973 20.689 179.973 20.570L179.973 20.122L180.239 20.122L180.239 20.570Q180.239 20.840 180.012 21.005Q179.785 21.171 179.505 21.171Q179.296 21.171 179.159 21.017Q179.023 20.864 178.999 20.648Q178.852 20.915 178.570 21.060Q178.288 21.205 177.963 21.205Q177.686 21.205 177.402 21.130Q177.119 21.055 176.926 20.876Q176.733 20.696 176.733 20.409M177.348 20.409Q177.348 20.583 177.449 20.713Q177.549 20.843 177.705 20.913Q177.861 20.983 178.025 20.983Q178.243 20.983 178.452 20.886Q178.660 20.788 178.788 20.607Q178.917 20.426 178.917 20.200L178.917 19.472Q178.592 19.472 178.226 19.563Q177.861 19.654 177.604 19.866Q177.348 20.077 177.348 20.409M181.183 20.296L181.183 18.399L180.544 18.399L180.544 18.177Q180.861 18.177 181.079 17.967Q181.296 17.757 181.396 17.447Q181.497 17.138 181.497 16.830L181.764 16.830L181.764 18.119L182.840 18.119L182.840 18.399L181.764 18.399L181.764 20.283Q181.764 20.559 181.868 20.758Q181.972 20.956 182.232 20.956Q182.389 20.956 182.495 20.852Q182.601 20.747 182.651 20.594Q182.700 20.440 182.700 20.283L182.700 19.869L182.967 19.869L182.967 20.296Q182.967 20.522 182.868 20.732Q182.769 20.942 182.584 21.074Q182.400 21.205 182.171 21.205Q181.733 21.205 181.458 20.968Q181.183 20.730 181.183 20.296M183.835 20.409Q183.835 20.077 184.059 19.850Q184.283 19.623 184.626 19.495Q184.970 19.366 185.342 19.314Q185.715 19.261 186.019 19.261L186.019 19.008Q186.019 18.803 185.912 18.623Q185.804 18.444 185.623 18.341Q185.442 18.239 185.233 18.239Q184.826 18.239 184.590 18.331Q184.679 18.368 184.725 18.452Q184.772 18.536 184.772 18.638Q184.772 18.734 184.725 18.813Q184.679 18.891 184.599 18.936Q184.519 18.980 184.430 18.980Q184.279 18.980 184.179 18.883Q184.078 18.785 184.078 18.638Q184.078 18.016 185.233 18.016Q185.445 18.016 185.694 18.080Q185.944 18.143 186.146 18.262Q186.347 18.382 186.474 18.567Q186.600 18.751 186.600 18.994L186.600 20.570Q186.600 20.686 186.662 20.782Q186.723 20.877 186.836 20.877Q186.945 20.877 187.010 20.783Q187.075 20.689 187.075 20.570L187.075 20.122L187.342 20.122L187.342 20.570Q187.342 20.840 187.115 21.005Q186.887 21.171 186.607 21.171Q186.399 21.171 186.262 21.017Q186.125 20.864 186.101 20.648Q185.954 20.915 185.672 21.060Q185.390 21.205 185.066 21.205Q184.789 21.205 184.505 21.130Q184.221 21.055 184.028 20.876Q183.835 20.696 183.835 20.409M184.450 20.409Q184.450 20.583 184.551 20.713Q184.652 20.843 184.808 20.913Q184.963 20.983 185.127 20.983Q185.346 20.983 185.554 20.886Q185.763 20.788 185.891 20.607Q186.019 20.426 186.019 20.200L186.019 19.472Q185.694 19.472 185.329 19.563Q184.963 19.654 184.707 19.866Q184.450 20.077 184.450 20.409\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-174.707 -19.663)\">\u003Cpath d=\"M190.642 22.720Q190.642 22.702 190.655 22.655L193.311 15.993Q193.366 15.887 193.472 15.887Q193.537 15.887 193.588 15.938Q193.639 15.990 193.639 16.054Q193.639 16.078 193.638 16.090Q193.636 16.102 193.632 16.119L190.980 22.781Q190.908 22.887 190.820 22.887Q190.751 22.887 190.696 22.836Q190.642 22.784 190.642 22.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-174.707 -19.663)\">\u003Cpath d=\"M158.223 29.137L156.487 29.137L156.487 28.857Q156.716 28.857 156.865 28.823Q157.013 28.788 157.013 28.648L157.013 26.799Q157.013 26.529 156.906 26.468Q156.798 26.406 156.487 26.406L156.487 26.126L157.516 26.051L157.516 26.758Q157.646 26.450 157.888 26.251Q158.131 26.051 158.449 26.051Q158.668 26.051 158.839 26.175Q159.010 26.300 159.010 26.512Q159.010 26.649 158.910 26.748Q158.811 26.847 158.678 26.847Q158.541 26.847 158.442 26.748Q158.343 26.649 158.343 26.512Q158.343 26.372 158.442 26.273Q158.152 26.273 157.952 26.469Q157.752 26.666 157.659 26.960Q157.567 27.254 157.567 27.534L157.567 28.648Q157.567 28.857 158.223 28.857L158.223 29.137M159.553 27.602Q159.553 27.281 159.678 26.992Q159.803 26.703 160.028 26.480Q160.254 26.256 160.549 26.136Q160.845 26.016 161.163 26.016Q161.491 26.016 161.753 26.116Q162.014 26.215 162.190 26.397Q162.366 26.580 162.460 26.838Q162.554 27.096 162.554 27.428Q162.554 27.520 162.472 27.541L160.216 27.541L160.216 27.602Q160.216 28.190 160.500 28.573Q160.784 28.956 161.351 28.956Q161.672 28.956 161.940 28.763Q162.209 28.570 162.298 28.255Q162.305 28.214 162.380 28.200L162.472 28.200Q162.554 28.224 162.554 28.296Q162.554 28.303 162.547 28.330Q162.434 28.727 162.064 28.966Q161.693 29.205 161.269 29.205Q160.831 29.205 160.431 28.997Q160.032 28.788 159.792 28.421Q159.553 28.054 159.553 27.602M160.223 27.332L162.038 27.332Q162.038 27.055 161.940 26.803Q161.843 26.550 161.645 26.394Q161.447 26.239 161.163 26.239Q160.886 26.239 160.672 26.397Q160.459 26.556 160.341 26.811Q160.223 27.066 160.223 27.332M163.101 29.670Q163.101 29.424 163.297 29.240Q163.494 29.055 163.750 28.976Q163.614 28.864 163.542 28.703Q163.470 28.542 163.470 28.361Q163.470 28.040 163.682 27.794Q163.347 27.496 163.347 27.086Q163.347 26.625 163.737 26.338Q164.126 26.051 164.605 26.051Q165.076 26.051 165.411 26.297Q165.586 26.143 165.796 26.061Q166.006 25.979 166.235 25.979Q166.399 25.979 166.521 26.086Q166.642 26.194 166.642 26.358Q166.642 26.454 166.570 26.526Q166.498 26.597 166.406 26.597Q166.307 26.597 166.237 26.524Q166.167 26.450 166.167 26.351Q166.167 26.297 166.180 26.266L166.187 26.252Q166.194 26.232 166.203 26.221Q166.211 26.211 166.215 26.204Q165.859 26.204 165.572 26.427Q165.859 26.720 165.859 27.086Q165.859 27.401 165.675 27.633Q165.490 27.866 165.201 27.994Q164.912 28.122 164.605 28.122Q164.403 28.122 164.212 28.072Q164.020 28.023 163.843 27.913Q163.750 28.040 163.750 28.183Q163.750 28.365 163.878 28.500Q164.007 28.635 164.191 28.635L164.824 28.635Q165.271 28.635 165.640 28.706Q166.010 28.778 166.269 29.007Q166.529 29.236 166.529 29.670Q166.529 29.991 166.233 30.193Q165.938 30.395 165.534 30.484Q165.131 30.573 164.817 30.573Q164.499 30.573 164.096 30.484Q163.692 30.395 163.397 30.193Q163.101 29.991 163.101 29.670M163.555 29.670Q163.555 29.899 163.774 30.048Q163.993 30.197 164.285 30.265Q164.577 30.333 164.817 30.333Q164.981 30.333 165.189 30.297Q165.398 30.262 165.605 30.181Q165.811 30.101 165.943 29.973Q166.075 29.845 166.075 29.670Q166.075 29.318 165.693 29.224Q165.312 29.130 164.810 29.130L164.191 29.130Q163.952 29.130 163.754 29.281Q163.555 29.431 163.555 29.670M164.605 27.883Q165.271 27.883 165.271 27.086Q165.271 26.286 164.605 26.286Q163.935 26.286 163.935 27.086Q163.935 27.883 164.605 27.883M167.698 28.303L167.698 26.799Q167.698 26.529 167.590 26.468Q167.483 26.406 167.172 26.406L167.172 26.126L168.279 26.051L168.279 28.283L168.279 28.303Q168.279 28.583 168.330 28.727Q168.382 28.870 168.524 28.927Q168.665 28.983 168.952 28.983Q169.205 28.983 169.410 28.843Q169.616 28.703 169.732 28.477Q169.848 28.252 169.848 28.002L169.848 26.799Q169.848 26.529 169.740 26.468Q169.633 26.406 169.322 26.406L169.322 26.126L170.429 26.051L170.429 28.464Q170.429 28.655 170.482 28.737Q170.535 28.819 170.636 28.838Q170.737 28.857 170.952 28.857L170.952 29.137L169.875 29.205L169.875 28.641Q169.766 28.823 169.621 28.946Q169.475 29.069 169.289 29.137Q169.103 29.205 168.901 29.205Q167.698 29.205 167.698 28.303M173.208 29.137L171.605 29.137L171.605 28.857Q171.830 28.857 171.979 28.823Q172.128 28.788 172.128 28.648L172.128 25.029Q172.128 24.759 172.020 24.697Q171.912 24.636 171.605 24.636L171.605 24.355L172.681 24.280L172.681 28.648Q172.681 28.785 172.832 28.821Q172.982 28.857 173.208 28.857L173.208 29.137M173.861 28.409Q173.861 28.077 174.085 27.850Q174.308 27.623 174.652 27.495Q174.995 27.366 175.368 27.314Q175.741 27.261 176.045 27.261L176.045 27.008Q176.045 26.803 175.937 26.623Q175.829 26.444 175.648 26.341Q175.467 26.239 175.259 26.239Q174.852 26.239 174.616 26.331Q174.705 26.368 174.751 26.452Q174.797 26.536 174.797 26.638Q174.797 26.734 174.751 26.813Q174.705 26.891 174.625 26.936Q174.544 26.980 174.455 26.980Q174.305 26.980 174.204 26.883Q174.103 26.785 174.103 26.638Q174.103 26.016 175.259 26.016Q175.471 26.016 175.720 26.080Q175.970 26.143 176.171 26.262Q176.373 26.382 176.499 26.567Q176.626 26.751 176.626 26.994L176.626 28.570Q176.626 28.686 176.687 28.782Q176.749 28.877 176.862 28.877Q176.971 28.877 177.036 28.783Q177.101 28.689 177.101 28.570L177.101 28.122L177.367 28.122L177.367 28.570Q177.367 28.840 177.140 29.005Q176.913 29.171 176.633 29.171Q176.424 29.171 176.287 29.017Q176.151 28.864 176.127 28.648Q175.980 28.915 175.698 29.060Q175.416 29.205 175.091 29.205Q174.814 29.205 174.531 29.130Q174.247 29.055 174.054 28.876Q173.861 28.696 173.861 28.409M174.476 28.409Q174.476 28.583 174.577 28.713Q174.678 28.843 174.833 28.913Q174.989 28.983 175.153 28.983Q175.371 28.983 175.580 28.886Q175.788 28.788 175.917 28.607Q176.045 28.426 176.045 28.200L176.045 27.472Q175.720 27.472 175.354 27.563Q174.989 27.654 174.732 27.866Q174.476 28.077 174.476 28.409M179.534 29.137L177.798 29.137L177.798 28.857Q178.027 28.857 178.176 28.823Q178.325 28.788 178.325 28.648L178.325 26.799Q178.325 26.529 178.217 26.468Q178.109 26.406 177.798 26.406L177.798 26.126L178.827 26.051L178.827 26.758Q178.957 26.450 179.200 26.251Q179.442 26.051 179.760 26.051Q179.979 26.051 180.150 26.175Q180.321 26.300 180.321 26.512Q180.321 26.649 180.221 26.748Q180.122 26.847 179.989 26.847Q179.852 26.847 179.753 26.748Q179.654 26.649 179.654 26.512Q179.654 26.372 179.753 26.273Q179.463 26.273 179.263 26.469Q179.063 26.666 178.971 26.960Q178.878 27.254 178.878 27.534L178.878 28.648Q178.878 28.857 179.534 28.857L179.534 29.137M182.522 29.137L180.970 29.137L180.970 28.857Q181.196 28.857 181.344 28.823Q181.493 28.788 181.493 28.648L181.493 26.799Q181.493 26.611 181.445 26.527Q181.397 26.444 181.300 26.425Q181.202 26.406 180.991 26.406L180.991 26.126L182.047 26.051L182.047 28.648Q182.047 28.788 182.178 28.823Q182.310 28.857 182.522 28.857L182.522 29.137M181.250 24.830Q181.250 24.659 181.373 24.540Q181.496 24.420 181.667 24.420Q181.835 24.420 181.958 24.540Q182.081 24.659 182.081 24.830Q182.081 25.005 181.958 25.128Q181.835 25.251 181.667 25.251Q181.496 25.251 181.373 25.128Q181.250 25.005 181.250 24.830M185.899 29.137L183.226 29.137Q183.181 29.137 183.154 29.110Q183.127 29.082 183.127 29.038L183.127 28.970Q183.127 28.929 183.154 28.898L185.263 26.345L184.624 26.345Q184.200 26.345 183.968 26.411Q183.735 26.478 183.616 26.688Q183.496 26.898 183.496 27.319L183.233 27.319L183.315 26.119L185.906 26.119Q185.947 26.119 185.976 26.146Q186.005 26.174 186.005 26.218L186.005 26.266Q186.005 26.310 185.981 26.338L183.875 28.884L184.555 28.884Q184.884 28.884 185.101 28.848Q185.318 28.812 185.485 28.662Q185.625 28.525 185.678 28.301Q185.731 28.077 185.759 27.749L186.025 27.749L185.899 29.137M186.675 27.602Q186.675 27.281 186.799 26.992Q186.924 26.703 187.150 26.480Q187.375 26.256 187.671 26.136Q187.967 26.016 188.284 26.016Q188.613 26.016 188.874 26.116Q189.136 26.215 189.312 26.397Q189.488 26.580 189.582 26.838Q189.676 27.096 189.676 27.428Q189.676 27.520 189.594 27.541L187.338 27.541L187.338 27.602Q187.338 28.190 187.621 28.573Q187.905 28.956 188.472 28.956Q188.794 28.956 189.062 28.763Q189.330 28.570 189.419 28.255Q189.426 28.214 189.501 28.200L189.594 28.200Q189.676 28.224 189.676 28.296Q189.676 28.303 189.669 28.330Q189.556 28.727 189.185 28.966Q188.814 29.205 188.390 29.205Q187.953 29.205 187.553 28.997Q187.153 28.788 186.914 28.421Q186.675 28.054 186.675 27.602M187.345 27.332L189.159 27.332Q189.159 27.055 189.062 26.803Q188.965 26.550 188.766 26.394Q188.568 26.239 188.284 26.239Q188.008 26.239 187.794 26.397Q187.580 26.556 187.462 26.811Q187.345 27.066 187.345 27.332\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-38.62 76.084h73.977V50.477H-38.62Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M153.134 21.137L152.867 21.137L152.867 17.029Q152.867 16.759 152.760 16.697Q152.652 16.636 152.341 16.636L152.341 16.355L153.421 16.280L153.421 18.450Q153.630 18.259 153.915 18.155Q154.201 18.051 154.498 18.051Q154.816 18.051 155.113 18.172Q155.410 18.293 155.633 18.509Q155.855 18.724 155.981 19.009Q156.108 19.295 156.108 19.626Q156.108 20.071 155.868 20.435Q155.629 20.799 155.236 21.002Q154.843 21.205 154.399 21.205Q154.204 21.205 154.014 21.149Q153.825 21.093 153.664 20.988Q153.503 20.884 153.363 20.723L153.134 21.137M153.449 18.792L153.449 20.409Q153.585 20.669 153.826 20.826Q154.067 20.983 154.344 20.983Q154.638 20.983 154.850 20.876Q155.062 20.768 155.195 20.576Q155.328 20.385 155.387 20.146Q155.445 19.907 155.445 19.626Q155.445 19.267 155.351 18.963Q155.257 18.659 155.029 18.466Q154.802 18.273 154.436 18.273Q154.136 18.273 153.869 18.409Q153.602 18.546 153.449 18.792M158.360 21.137L156.808 21.137L156.808 20.857Q157.034 20.857 157.183 20.823Q157.331 20.788 157.331 20.648L157.331 18.799Q157.331 18.611 157.284 18.527Q157.236 18.444 157.138 18.425Q157.041 18.406 156.829 18.406L156.829 18.126L157.885 18.051L157.885 20.648Q157.885 20.788 158.017 20.823Q158.148 20.857 158.360 20.857L158.360 21.137M157.089 16.830Q157.089 16.659 157.212 16.540Q157.335 16.420 157.506 16.420Q157.673 16.420 157.796 16.540Q157.919 16.659 157.919 16.830Q157.919 17.005 157.796 17.128Q157.673 17.251 157.506 17.251Q157.335 17.251 157.212 17.128Q157.089 17.005 157.089 16.830M158.965 21.670Q158.965 21.424 159.162 21.240Q159.358 21.055 159.615 20.976Q159.478 20.864 159.406 20.703Q159.334 20.542 159.334 20.361Q159.334 20.040 159.546 19.794Q159.211 19.496 159.211 19.086Q159.211 18.625 159.601 18.338Q159.991 18.051 160.469 18.051Q160.941 18.051 161.276 18.297Q161.450 18.143 161.660 18.061Q161.870 17.979 162.099 17.979Q162.263 17.979 162.385 18.086Q162.506 18.194 162.506 18.358Q162.506 18.454 162.434 18.526Q162.363 18.597 162.270 18.597Q162.171 18.597 162.101 18.524Q162.031 18.450 162.031 18.351Q162.031 18.297 162.045 18.266L162.052 18.252Q162.058 18.232 162.067 18.221Q162.076 18.211 162.079 18.204Q161.723 18.204 161.436 18.427Q161.723 18.720 161.723 19.086Q161.723 19.401 161.539 19.633Q161.354 19.866 161.065 19.994Q160.777 20.122 160.469 20.122Q160.267 20.122 160.076 20.072Q159.885 20.023 159.707 19.913Q159.615 20.040 159.615 20.183Q159.615 20.365 159.743 20.500Q159.871 20.635 160.055 20.635L160.688 20.635Q161.136 20.635 161.505 20.706Q161.874 20.778 162.134 21.007Q162.393 21.236 162.393 21.670Q162.393 21.991 162.098 22.193Q161.802 22.395 161.399 22.484Q160.995 22.573 160.681 22.573Q160.363 22.573 159.960 22.484Q159.556 22.395 159.261 22.193Q158.965 21.991 158.965 21.670M159.420 21.670Q159.420 21.899 159.638 22.048Q159.857 22.197 160.149 22.265Q160.442 22.333 160.681 22.333Q160.845 22.333 161.054 22.297Q161.262 22.262 161.469 22.181Q161.676 22.101 161.807 21.973Q161.939 21.845 161.939 21.670Q161.939 21.318 161.558 21.224Q161.177 21.130 160.674 21.130L160.055 21.130Q159.816 21.130 159.618 21.281Q159.420 21.431 159.420 21.670M160.469 19.883Q161.136 19.883 161.136 19.086Q161.136 18.286 160.469 18.286Q159.799 18.286 159.799 19.086Q159.799 19.883 160.469 19.883M162.947 21.670Q162.947 21.424 163.144 21.240Q163.340 21.055 163.596 20.976Q163.460 20.864 163.388 20.703Q163.316 20.542 163.316 20.361Q163.316 20.040 163.528 19.794Q163.193 19.496 163.193 19.086Q163.193 18.625 163.583 18.338Q163.972 18.051 164.451 18.051Q164.923 18.051 165.258 18.297Q165.432 18.143 165.642 18.061Q165.852 17.979 166.081 17.979Q166.245 17.979 166.367 18.086Q166.488 18.194 166.488 18.358Q166.488 18.454 166.416 18.526Q166.345 18.597 166.252 18.597Q166.153 18.597 166.083 18.524Q166.013 18.450 166.013 18.351Q166.013 18.297 166.027 18.266L166.034 18.252Q166.040 18.232 166.049 18.221Q166.057 18.211 166.061 18.204Q165.705 18.204 165.418 18.427Q165.705 18.720 165.705 19.086Q165.705 19.401 165.521 19.633Q165.336 19.866 165.047 19.994Q164.759 20.122 164.451 20.122Q164.249 20.122 164.058 20.072Q163.867 20.023 163.689 19.913Q163.596 20.040 163.596 20.183Q163.596 20.365 163.725 20.500Q163.853 20.635 164.037 20.635L164.670 20.635Q165.117 20.635 165.487 20.706Q165.856 20.778 166.116 21.007Q166.375 21.236 166.375 21.670Q166.375 21.991 166.080 22.193Q165.784 22.395 165.381 22.484Q164.977 22.573 164.663 22.573Q164.345 22.573 163.942 22.484Q163.538 22.395 163.243 22.193Q162.947 21.991 162.947 21.670M163.402 21.670Q163.402 21.899 163.620 22.048Q163.839 22.197 164.131 22.265Q164.424 22.333 164.663 22.333Q164.827 22.333 165.035 22.297Q165.244 22.262 165.451 22.181Q165.658 22.101 165.789 21.973Q165.921 21.845 165.921 21.670Q165.921 21.318 165.540 21.224Q165.159 21.130 164.656 21.130L164.037 21.130Q163.798 21.130 163.600 21.281Q163.402 21.431 163.402 21.670M164.451 19.883Q165.117 19.883 165.117 19.086Q165.117 18.286 164.451 18.286Q163.781 18.286 163.781 19.086Q163.781 19.883 164.451 19.883M166.929 19.602Q166.929 19.281 167.054 18.992Q167.179 18.703 167.404 18.480Q167.630 18.256 167.925 18.136Q168.221 18.016 168.539 18.016Q168.867 18.016 169.128 18.116Q169.390 18.215 169.566 18.397Q169.742 18.580 169.836 18.838Q169.930 19.096 169.930 19.428Q169.930 19.520 169.848 19.541L167.592 19.541L167.592 19.602Q167.592 20.190 167.876 20.573Q168.159 20.956 168.727 20.956Q169.048 20.956 169.316 20.763Q169.585 20.570 169.674 20.255Q169.680 20.214 169.756 20.200L169.848 20.200Q169.930 20.224 169.930 20.296Q169.930 20.303 169.923 20.330Q169.810 20.727 169.440 20.966Q169.069 21.205 168.645 21.205Q168.207 21.205 167.807 20.997Q167.408 20.788 167.168 20.421Q166.929 20.054 166.929 19.602M167.599 19.332L169.414 19.332Q169.414 19.055 169.316 18.803Q169.219 18.550 169.021 18.394Q168.823 18.239 168.539 18.239Q168.262 18.239 168.048 18.397Q167.835 18.556 167.717 18.811Q167.599 19.066 167.599 19.332M172.268 21.137L170.532 21.137L170.532 20.857Q170.761 20.857 170.909 20.823Q171.058 20.788 171.058 20.648L171.058 18.799Q171.058 18.529 170.950 18.468Q170.843 18.406 170.532 18.406L170.532 18.126L171.560 18.051L171.560 18.758Q171.690 18.450 171.933 18.251Q172.176 18.051 172.493 18.051Q172.712 18.051 172.883 18.175Q173.054 18.300 173.054 18.512Q173.054 18.649 172.955 18.748Q172.856 18.847 172.722 18.847Q172.586 18.847 172.487 18.748Q172.388 18.649 172.388 18.512Q172.388 18.372 172.487 18.273Q172.196 18.273 171.996 18.469Q171.796 18.666 171.704 18.960Q171.612 19.254 171.612 19.534L171.612 20.648Q171.612 20.857 172.268 20.857\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M178.037 21.137L176.403 21.137L176.403 20.857Q176.632 20.857 176.781 20.823Q176.930 20.788 176.930 20.648L176.930 18.799Q176.930 18.529 176.822 18.468Q176.714 18.406 176.403 18.406L176.403 18.126L177.463 18.051L177.463 18.700Q177.634 18.392 177.938 18.221Q178.242 18.051 178.587 18.051Q178.987 18.051 179.264 18.191Q179.541 18.331 179.626 18.679Q179.794 18.386 180.093 18.218Q180.392 18.051 180.737 18.051Q181.243 18.051 181.527 18.274Q181.811 18.498 181.811 18.994L181.811 20.648Q181.811 20.785 181.959 20.821Q182.108 20.857 182.333 20.857L182.333 21.137L180.703 21.137L180.703 20.857Q180.929 20.857 181.079 20.821Q181.229 20.785 181.229 20.648L181.229 19.008Q181.229 18.673 181.110 18.473Q180.990 18.273 180.676 18.273Q180.406 18.273 180.172 18.409Q179.937 18.546 179.799 18.780Q179.661 19.014 179.661 19.288L179.661 20.648Q179.661 20.785 179.809 20.821Q179.958 20.857 180.184 20.857L180.184 21.137L178.553 21.137L178.553 20.857Q178.782 20.857 178.931 20.823Q179.080 20.788 179.080 20.648L179.080 19.008Q179.080 18.673 178.960 18.473Q178.840 18.273 178.526 18.273Q178.256 18.273 178.022 18.409Q177.788 18.546 177.649 18.780Q177.511 19.014 177.511 19.288L177.511 20.648Q177.511 20.785 177.661 20.821Q177.812 20.857 178.037 20.857L178.037 21.137M182.880 19.654Q182.880 19.312 183.015 19.013Q183.150 18.714 183.390 18.490Q183.629 18.266 183.947 18.141Q184.265 18.016 184.596 18.016Q185.041 18.016 185.440 18.232Q185.840 18.447 186.074 18.825Q186.309 19.202 186.309 19.654Q186.309 19.995 186.167 20.279Q186.025 20.563 185.781 20.770Q185.536 20.976 185.227 21.091Q184.917 21.205 184.596 21.205Q184.166 21.205 183.764 21.004Q183.362 20.802 183.121 20.450Q182.880 20.098 182.880 19.654M184.596 20.956Q185.198 20.956 185.422 20.578Q185.645 20.200 185.645 19.568Q185.645 18.956 185.411 18.597Q185.177 18.239 184.596 18.239Q183.543 18.239 183.543 19.568Q183.543 20.200 183.769 20.578Q183.995 20.956 184.596 20.956\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M187.126 19.626Q187.126 19.288 187.267 18.997Q187.407 18.707 187.651 18.493Q187.895 18.280 188.200 18.165Q188.504 18.051 188.829 18.051Q189.099 18.051 189.362 18.150Q189.625 18.249 189.816 18.427L189.816 17.029Q189.816 16.759 189.709 16.697Q189.601 16.636 189.290 16.636L189.290 16.355L190.367 16.280L190.367 20.464Q190.367 20.652 190.421 20.735Q190.476 20.819 190.577 20.838Q190.678 20.857 190.893 20.857L190.893 21.137L189.786 21.205L189.786 20.788Q189.369 21.205 188.743 21.205Q188.312 21.205 187.940 20.993Q187.567 20.782 187.347 20.421Q187.126 20.060 187.126 19.626M188.801 20.983Q189.010 20.983 189.196 20.911Q189.382 20.840 189.536 20.703Q189.690 20.566 189.786 20.388L189.786 18.779Q189.700 18.632 189.555 18.512Q189.410 18.392 189.240 18.333Q189.071 18.273 188.890 18.273Q188.330 18.273 188.061 18.662Q187.793 19.052 187.793 19.633Q187.793 20.204 188.027 20.594Q188.261 20.983 188.801 20.983M191.501 19.602Q191.501 19.281 191.626 18.992Q191.751 18.703 191.977 18.480Q192.202 18.256 192.498 18.136Q192.793 18.016 193.111 18.016Q193.439 18.016 193.701 18.116Q193.962 18.215 194.138 18.397Q194.314 18.580 194.408 18.838Q194.502 19.096 194.502 19.428Q194.502 19.520 194.420 19.541L192.165 19.541L192.165 19.602Q192.165 20.190 192.448 20.573Q192.732 20.956 193.299 20.956Q193.621 20.956 193.889 20.763Q194.157 20.570 194.246 20.255Q194.253 20.214 194.328 20.200L194.420 20.200Q194.502 20.224 194.502 20.296Q194.502 20.303 194.496 20.330Q194.383 20.727 194.012 20.966Q193.641 21.205 193.217 21.205Q192.780 21.205 192.380 20.997Q191.980 20.788 191.741 20.421Q191.501 20.054 191.501 19.602M192.171 19.332L193.986 19.332Q193.986 19.055 193.889 18.803Q193.791 18.550 193.593 18.394Q193.395 18.239 193.111 18.239Q192.834 18.239 192.621 18.397Q192.407 18.556 192.289 18.811Q192.171 19.066 192.171 19.332M196.758 21.137L195.155 21.137L195.155 20.857Q195.381 20.857 195.530 20.823Q195.678 20.788 195.678 20.648L195.678 17.029Q195.678 16.759 195.571 16.697Q195.463 16.636 195.155 16.636L195.155 16.355L196.232 16.280L196.232 20.648Q196.232 20.785 196.382 20.821Q196.533 20.857 196.758 20.857\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M200.232 22.720Q200.232 22.702 200.245 22.655L202.901 15.993Q202.956 15.887 203.062 15.887Q203.127 15.887 203.178 15.938Q203.229 15.990 203.229 16.054Q203.229 16.078 203.228 16.090Q203.226 16.102 203.222 16.119L200.570 22.781Q200.498 22.887 200.410 22.887Q200.341 22.887 200.286 22.836Q200.232 22.784 200.232 22.720\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M156.905 29.137L156.638 29.137L156.638 25.029Q156.638 24.759 156.531 24.697Q156.423 24.636 156.112 24.636L156.112 24.355L157.192 24.280L157.192 26.450Q157.401 26.259 157.686 26.155Q157.971 26.051 158.269 26.051Q158.587 26.051 158.884 26.172Q159.181 26.293 159.404 26.509Q159.626 26.724 159.752 27.009Q159.879 27.295 159.879 27.626Q159.879 28.071 159.639 28.435Q159.400 28.799 159.007 29.002Q158.614 29.205 158.170 29.205Q157.975 29.205 157.785 29.149Q157.596 29.093 157.435 28.988Q157.274 28.884 157.134 28.723L156.905 29.137M157.220 26.792L157.220 28.409Q157.356 28.669 157.597 28.826Q157.838 28.983 158.115 28.983Q158.409 28.983 158.621 28.876Q158.833 28.768 158.966 28.576Q159.099 28.385 159.158 28.146Q159.216 27.907 159.216 27.626Q159.216 27.267 159.122 26.963Q159.028 26.659 158.800 26.466Q158.573 26.273 158.207 26.273Q157.907 26.273 157.640 26.409Q157.373 26.546 157.220 26.792\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M160.689 27.602Q160.689 27.281 160.814 26.992Q160.939 26.703 161.165 26.480Q161.390 26.256 161.686 26.136Q161.981 26.016 162.299 26.016Q162.627 26.016 162.889 26.116Q163.150 26.215 163.326 26.397Q163.502 26.580 163.596 26.838Q163.690 27.096 163.690 27.428Q163.690 27.520 163.608 27.541L161.353 27.541L161.353 27.602Q161.353 28.190 161.636 28.573Q161.920 28.956 162.487 28.956Q162.809 28.956 163.077 28.763Q163.345 28.570 163.434 28.255Q163.441 28.214 163.516 28.200L163.608 28.200Q163.690 28.224 163.690 28.296Q163.690 28.303 163.684 28.330Q163.571 28.727 163.200 28.966Q162.829 29.205 162.405 29.205Q161.968 29.205 161.568 28.997Q161.168 28.788 160.929 28.421Q160.689 28.054 160.689 27.602M161.359 27.332L163.174 27.332Q163.174 27.055 163.077 26.803Q162.979 26.550 162.781 26.394Q162.583 26.239 162.299 26.239Q162.022 26.239 161.809 26.397Q161.595 26.556 161.477 26.811Q161.359 27.066 161.359 27.332M164.805 28.296L164.805 26.399L164.166 26.399L164.166 26.177Q164.483 26.177 164.700 25.967Q164.917 25.757 165.018 25.447Q165.119 25.138 165.119 24.830L165.386 24.830L165.386 26.119L166.462 26.119L166.462 26.399L165.386 26.399L165.386 28.283Q165.386 28.559 165.490 28.758Q165.594 28.956 165.854 28.956Q166.011 28.956 166.117 28.852Q166.223 28.747 166.273 28.594Q166.322 28.440 166.322 28.283L166.322 27.869L166.589 27.869L166.589 28.296Q166.589 28.522 166.490 28.732Q166.391 28.942 166.206 29.074Q166.021 29.205 165.792 29.205Q165.355 29.205 165.080 28.968Q164.805 28.730 164.805 28.296M167.925 28.296L167.925 26.399L167.286 26.399L167.286 26.177Q167.604 26.177 167.821 25.967Q168.038 25.757 168.139 25.447Q168.240 25.138 168.240 24.830L168.506 24.830L168.506 26.119L169.583 26.119L169.583 26.399L168.506 26.399L168.506 28.283Q168.506 28.559 168.611 28.758Q168.715 28.956 168.975 28.956Q169.132 28.956 169.238 28.852Q169.344 28.747 169.393 28.594Q169.443 28.440 169.443 28.283L169.443 27.869L169.709 27.869L169.709 28.296Q169.709 28.522 169.610 28.732Q169.511 28.942 169.327 29.074Q169.142 29.205 168.913 29.205Q168.476 29.205 168.200 28.968Q167.925 28.730 167.925 28.296M170.478 27.602Q170.478 27.281 170.603 26.992Q170.728 26.703 170.954 26.480Q171.179 26.256 171.475 26.136Q171.770 26.016 172.088 26.016Q172.416 26.016 172.678 26.116Q172.939 26.215 173.115 26.397Q173.291 26.580 173.385 26.838Q173.479 27.096 173.479 27.428Q173.479 27.520 173.397 27.541L171.142 27.541L171.142 27.602Q171.142 28.190 171.425 28.573Q171.709 28.956 172.276 28.956Q172.598 28.956 172.866 28.763Q173.134 28.570 173.223 28.255Q173.230 28.214 173.305 28.200L173.397 28.200Q173.479 28.224 173.479 28.296Q173.479 28.303 173.473 28.330Q173.360 28.727 172.989 28.966Q172.618 29.205 172.194 29.205Q171.757 29.205 171.357 28.997Q170.957 28.788 170.718 28.421Q170.478 28.054 170.478 27.602M171.148 27.332L172.963 27.332Q172.963 27.055 172.866 26.803Q172.769 26.550 172.570 26.394Q172.372 26.239 172.088 26.239Q171.812 26.239 171.598 26.397Q171.384 26.556 171.266 26.811Q171.148 27.066 171.148 27.332M175.817 29.137L174.081 29.137L174.081 28.857Q174.310 28.857 174.459 28.823Q174.607 28.788 174.607 28.648L174.607 26.799Q174.607 26.529 174.500 26.468Q174.392 26.406 174.081 26.406L174.081 26.126L175.110 26.051L175.110 26.758Q175.240 26.450 175.482 26.251Q175.725 26.051 176.043 26.051Q176.262 26.051 176.433 26.175Q176.603 26.300 176.603 26.512Q176.603 26.649 176.504 26.748Q176.405 26.847 176.272 26.847Q176.135 26.847 176.036 26.748Q175.937 26.649 175.937 26.512Q175.937 26.372 176.036 26.273Q175.746 26.273 175.546 26.469Q175.346 26.666 175.253 26.960Q175.161 27.254 175.161 27.534L175.161 28.648Q175.161 28.857 175.817 28.857\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-179.502 40.088)\">\u003Cpath d=\"M179.870 27.654Q179.870 27.312 180.005 27.013Q180.140 26.714 180.380 26.490Q180.619 26.266 180.937 26.141Q181.255 26.016 181.586 26.016Q182.031 26.016 182.430 26.232Q182.830 26.447 183.065 26.825Q183.299 27.202 183.299 27.654Q183.299 27.995 183.157 28.279Q183.015 28.563 182.771 28.770Q182.526 28.976 182.217 29.091Q181.908 29.205 181.586 29.205Q181.156 29.205 180.754 29.004Q180.352 28.802 180.111 28.450Q179.870 28.098 179.870 27.654M181.586 28.956Q182.188 28.956 182.412 28.578Q182.636 28.200 182.636 27.568Q182.636 26.956 182.401 26.597Q182.167 26.239 181.586 26.239Q180.534 26.239 180.534 27.568Q180.534 28.200 180.759 28.578Q180.985 28.956 181.586 28.956M185.537 30.494L183.907 30.494L183.907 30.214Q184.136 30.214 184.285 30.179Q184.433 30.145 184.433 30.005L184.433 26.659Q184.433 26.488 184.297 26.447Q184.160 26.406 183.907 26.406L183.907 26.126L184.987 26.051L184.987 26.457Q185.209 26.256 185.496 26.153Q185.784 26.051 186.091 26.051Q186.518 26.051 186.882 26.264Q187.246 26.478 187.460 26.842Q187.674 27.206 187.674 27.626Q187.674 28.071 187.434 28.435Q187.195 28.799 186.802 29.002Q186.409 29.205 185.965 29.205Q185.698 29.205 185.450 29.105Q185.202 29.004 185.014 28.823L185.014 30.005Q185.014 30.142 185.163 30.178Q185.312 30.214 185.537 30.214L185.537 30.494M185.014 26.806L185.014 28.416Q185.148 28.669 185.390 28.826Q185.633 28.983 185.910 28.983Q186.238 28.983 186.491 28.782Q186.744 28.580 186.877 28.262Q187.011 27.944 187.011 27.626Q187.011 27.397 186.946 27.168Q186.881 26.939 186.753 26.741Q186.624 26.543 186.430 26.423Q186.235 26.304 186.002 26.304Q185.708 26.304 185.440 26.433Q185.172 26.563 185.014 26.806M188.836 28.296L188.836 26.399L188.197 26.399L188.197 26.177Q188.514 26.177 188.732 25.967Q188.949 25.757 189.049 25.447Q189.150 25.138 189.150 24.830L189.417 24.830L189.417 26.119L190.493 26.119L190.493 26.399L189.417 26.399L189.417 28.283Q189.417 28.559 189.521 28.758Q189.625 28.956 189.885 28.956Q190.042 28.956 190.148 28.852Q190.254 28.747 190.304 28.594Q190.353 28.440 190.353 28.283L190.353 27.869L190.620 27.869L190.620 28.296Q190.620 28.522 190.521 28.732Q190.422 28.942 190.237 29.074Q190.053 29.205 189.824 29.205Q189.386 29.205 189.111 28.968Q188.836 28.730 188.836 28.296M193.047 29.137L191.495 29.137L191.495 28.857Q191.721 28.857 191.869 28.823Q192.018 28.788 192.018 28.648L192.018 26.799Q192.018 26.611 191.970 26.527Q191.922 26.444 191.825 26.425Q191.727 26.406 191.515 26.406L191.515 26.126L192.572 26.051L192.572 28.648Q192.572 28.788 192.703 28.823Q192.835 28.857 193.047 28.857L193.047 29.137M191.775 24.830Q191.775 24.659 191.898 24.540Q192.021 24.420 192.192 24.420Q192.360 24.420 192.483 24.540Q192.606 24.659 192.606 24.830Q192.606 25.005 192.483 25.128Q192.360 25.251 192.192 25.251Q192.021 25.251 191.898 25.128Q191.775 25.005 191.775 24.830M195.374 29.137L193.741 29.137L193.741 28.857Q193.970 28.857 194.118 28.823Q194.267 28.788 194.267 28.648L194.267 26.799Q194.267 26.529 194.159 26.468Q194.052 26.406 193.741 26.406L193.741 26.126L194.800 26.051L194.800 26.700Q194.971 26.392 195.275 26.221Q195.579 26.051 195.925 26.051Q196.325 26.051 196.601 26.191Q196.878 26.331 196.964 26.679Q197.131 26.386 197.430 26.218Q197.729 26.051 198.075 26.051Q198.580 26.051 198.864 26.274Q199.148 26.498 199.148 26.994L199.148 28.648Q199.148 28.785 199.296 28.821Q199.445 28.857 199.671 28.857L199.671 29.137L198.040 29.137L198.040 28.857Q198.266 28.857 198.416 28.821Q198.567 28.785 198.567 28.648L198.567 27.008Q198.567 26.673 198.447 26.473Q198.327 26.273 198.013 26.273Q197.743 26.273 197.509 26.409Q197.275 26.546 197.136 26.780Q196.998 27.014 196.998 27.288L196.998 28.648Q196.998 28.785 197.147 28.821Q197.295 28.857 197.521 28.857L197.521 29.137L195.890 29.137L195.890 28.857Q196.119 28.857 196.268 28.823Q196.417 28.788 196.417 28.648L196.417 27.008Q196.417 26.673 196.297 26.473Q196.178 26.273 195.863 26.273Q195.593 26.273 195.359 26.409Q195.125 26.546 194.986 26.780Q194.848 27.014 194.848 27.288L194.848 28.648Q194.848 28.785 194.998 28.821Q195.149 28.857 195.374 28.857\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M152.013-40.172v25.253\"\u002F>\u003Cpath stroke=\"none\" d=\"m152.013-12.32 2.08-4.159-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M152.013 19.379V44.83\"\u002F>\u003Cpath stroke=\"none\" d=\"m152.013 47.431 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M152.013 79.13v39.998\"\u002F>\u003Cpath stroke=\"none\" d=\"m152.013 121.728 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M178.273 137.258h85.22\"\u002F>\u003Cpath stroke=\"none\" d=\"m266.093 137.258-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg fill=\"var(--tk-good)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(64.815 103.026)\">\u003Cpath d=\"M152.662 30.272Q152.792 30.340 152.929 30.340Q153.100 30.340 153.250 30.251Q153.401 30.162 153.512 30.017Q153.623 29.872 153.701 29.704L153.965 29.137L152.796 26.611Q152.721 26.464 152.591 26.432Q152.461 26.399 152.228 26.399L152.228 26.119L153.749 26.119L153.749 26.399Q153.401 26.399 153.401 26.546Q153.404 26.567 153.406 26.584Q153.408 26.601 153.408 26.611L154.265 28.470L155.038 26.799Q155.072 26.731 155.072 26.652Q155.072 26.539 154.988 26.469Q154.905 26.399 154.792 26.399L154.792 26.119L155.988 26.119L155.988 26.399Q155.769 26.399 155.597 26.503Q155.424 26.608 155.332 26.799L153.995 29.704Q153.825 30.074 153.555 30.320Q153.284 30.566 152.929 30.566Q152.659 30.566 152.440 30.400Q152.221 30.234 152.221 29.971Q152.221 29.834 152.314 29.745Q152.406 29.657 152.546 29.657Q152.683 29.657 152.772 29.745Q152.861 29.834 152.861 29.971Q152.861 30.074 152.808 30.152Q152.755 30.231 152.662 30.272\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.815 103.026)\">\u003Cpath d=\"M156.273 27.602Q156.273 27.281 156.398 26.992Q156.523 26.703 156.749 26.480Q156.974 26.256 157.270 26.136Q157.565 26.016 157.883 26.016Q158.211 26.016 158.473 26.116Q158.734 26.215 158.910 26.397Q159.086 26.580 159.180 26.838Q159.274 27.096 159.274 27.428Q159.274 27.520 159.192 27.541L156.937 27.541L156.937 27.602Q156.937 28.190 157.220 28.573Q157.504 28.956 158.071 28.956Q158.393 28.956 158.661 28.763Q158.929 28.570 159.018 28.255Q159.025 28.214 159.100 28.200L159.192 28.200Q159.274 28.224 159.274 28.296Q159.274 28.303 159.268 28.330Q159.155 28.727 158.784 28.966Q158.413 29.205 157.989 29.205Q157.552 29.205 157.152 28.997Q156.752 28.788 156.513 28.421Q156.273 28.054 156.273 27.602M156.943 27.332L158.758 27.332Q158.758 27.055 158.661 26.803Q158.563 26.550 158.365 26.394Q158.167 26.239 157.883 26.239Q157.606 26.239 157.393 26.397Q157.179 26.556 157.061 26.811Q156.943 27.066 156.943 27.332M159.862 29.130L159.862 28.067Q159.862 28.043 159.890 28.016Q159.917 27.989 159.941 27.989L160.050 27.989Q160.115 27.989 160.129 28.047Q160.225 28.481 160.471 28.732Q160.717 28.983 161.130 28.983Q161.472 28.983 161.725 28.850Q161.978 28.717 161.978 28.409Q161.978 28.252 161.884 28.137Q161.790 28.023 161.652 27.954Q161.513 27.886 161.346 27.848L160.765 27.749Q160.409 27.681 160.136 27.460Q159.862 27.240 159.862 26.898Q159.862 26.649 159.973 26.474Q160.084 26.300 160.271 26.201Q160.457 26.102 160.672 26.059Q160.888 26.016 161.130 26.016Q161.544 26.016 161.824 26.198L162.040 26.023Q162.050 26.020 162.057 26.018Q162.063 26.016 162.074 26.016L162.125 26.016Q162.152 26.016 162.176 26.040Q162.200 26.064 162.200 26.092L162.200 26.939Q162.200 26.960 162.176 26.987Q162.152 27.014 162.125 27.014L162.012 27.014Q161.985 27.014 161.959 26.989Q161.934 26.963 161.934 26.939Q161.934 26.703 161.828 26.539Q161.722 26.375 161.539 26.293Q161.356 26.211 161.124 26.211Q160.795 26.211 160.539 26.314Q160.283 26.416 160.283 26.693Q160.283 26.888 160.466 26.997Q160.648 27.107 160.877 27.148L161.452 27.254Q161.698 27.302 161.911 27.430Q162.125 27.558 162.262 27.761Q162.398 27.965 162.398 28.214Q162.398 28.727 162.033 28.966Q161.667 29.205 161.130 29.205Q160.635 29.205 160.303 28.911L160.037 29.185Q160.016 29.205 159.989 29.205L159.941 29.205Q159.917 29.205 159.890 29.178Q159.862 29.151 159.862 29.130\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M125.753 137.258H26.965\"\u002F>\u003Cpath stroke=\"none\" d=\"m24.365 137.258 4.16 2.08-1.56-2.08 1.56-2.08\"\u002F>\u003Cg transform=\"translate(-81.156 104.388)\">\u003Cpath d=\"M154.009 29.137L152.375 29.137L152.375 28.857Q152.604 28.857 152.753 28.823Q152.902 28.788 152.902 28.648L152.902 26.799Q152.902 26.529 152.794 26.468Q152.686 26.406 152.375 26.406L152.375 26.126L153.435 26.051L153.435 26.700Q153.606 26.392 153.910 26.221Q154.214 26.051 154.559 26.051Q155.065 26.051 155.349 26.274Q155.633 26.498 155.633 26.994L155.633 28.648Q155.633 28.785 155.781 28.821Q155.930 28.857 156.156 28.857L156.156 29.137L154.525 29.137L154.525 28.857Q154.754 28.857 154.903 28.823Q155.052 28.788 155.052 28.648L155.052 27.008Q155.052 26.673 154.932 26.473Q154.812 26.273 154.498 26.273Q154.228 26.273 153.994 26.409Q153.760 26.546 153.621 26.780Q153.483 27.014 153.483 27.288L153.483 28.648Q153.483 28.785 153.633 28.821Q153.784 28.857 154.009 28.857L154.009 29.137M156.702 27.654Q156.702 27.312 156.837 27.013Q156.972 26.714 157.212 26.490Q157.451 26.266 157.769 26.141Q158.087 26.016 158.418 26.016Q158.863 26.016 159.263 26.232Q159.662 26.447 159.897 26.825Q160.131 27.202 160.131 27.654Q160.131 27.995 159.989 28.279Q159.847 28.563 159.603 28.770Q159.358 28.976 159.049 29.091Q158.740 29.205 158.418 29.205Q157.988 29.205 157.586 29.004Q157.184 28.802 156.943 28.450Q156.702 28.098 156.702 27.654M158.418 28.956Q159.020 28.956 159.244 28.578Q159.468 28.200 159.468 27.568Q159.468 26.956 159.233 26.597Q158.999 26.239 158.418 26.239Q157.366 26.239 157.366 27.568Q157.366 28.200 157.591 28.578Q157.817 28.956 158.418 28.956\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-27.626 137.258C-58.536 80.352-58.536 23.447-40.65 5.378\"\u002F>\u003Cpath stroke=\"none\" d=\"m-38.82 3.53-4.404 1.493 2.575.355.38 2.571\"\u002F>\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-182.738 89.388)\">\u003Cpath d=\"M152.662 30.272Q152.792 30.340 152.929 30.340Q153.100 30.340 153.250 30.251Q153.401 30.162 153.512 30.017Q153.623 29.872 153.701 29.704L153.965 29.137L152.796 26.611Q152.721 26.464 152.591 26.432Q152.461 26.399 152.228 26.399L152.228 26.119L153.749 26.119L153.749 26.399Q153.401 26.399 153.401 26.546Q153.404 26.567 153.406 26.584Q153.408 26.601 153.408 26.611L154.265 28.470L155.038 26.799Q155.072 26.731 155.072 26.652Q155.072 26.539 154.988 26.469Q154.905 26.399 154.792 26.399L154.792 26.119L155.988 26.119L155.988 26.399Q155.769 26.399 155.597 26.503Q155.424 26.608 155.332 26.799L153.995 29.704Q153.825 30.074 153.555 30.320Q153.284 30.566 152.929 30.566Q152.659 30.566 152.440 30.400Q152.221 30.234 152.221 29.971Q152.221 29.834 152.314 29.745Q152.406 29.657 152.546 29.657Q152.683 29.657 152.772 29.745Q152.861 29.834 152.861 29.971Q152.861 30.074 152.808 30.152Q152.755 30.231 152.662 30.272\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-182.738 89.388)\">\u003Cpath d=\"M156.273 27.602Q156.273 27.281 156.398 26.992Q156.523 26.703 156.749 26.480Q156.974 26.256 157.270 26.136Q157.565 26.016 157.883 26.016Q158.211 26.016 158.473 26.116Q158.734 26.215 158.910 26.397Q159.086 26.580 159.180 26.838Q159.274 27.096 159.274 27.428Q159.274 27.520 159.192 27.541L156.937 27.541L156.937 27.602Q156.937 28.190 157.220 28.573Q157.504 28.956 158.071 28.956Q158.393 28.956 158.661 28.763Q158.929 28.570 159.018 28.255Q159.025 28.214 159.100 28.200L159.192 28.200Q159.274 28.224 159.274 28.296Q159.274 28.303 159.268 28.330Q159.155 28.727 158.784 28.966Q158.413 29.205 157.989 29.205Q157.552 29.205 157.152 28.997Q156.752 28.788 156.513 28.421Q156.273 28.054 156.273 27.602M156.943 27.332L158.758 27.332Q158.758 27.055 158.661 26.803Q158.563 26.550 158.365 26.394Q158.167 26.239 157.883 26.239Q157.606 26.239 157.393 26.397Q157.179 26.556 157.061 26.811Q156.943 27.066 156.943 27.332M159.862 29.130L159.862 28.067Q159.862 28.043 159.890 28.016Q159.917 27.989 159.941 27.989L160.050 27.989Q160.115 27.989 160.129 28.047Q160.225 28.481 160.471 28.732Q160.717 28.983 161.130 28.983Q161.472 28.983 161.725 28.850Q161.978 28.717 161.978 28.409Q161.978 28.252 161.884 28.137Q161.790 28.023 161.652 27.954Q161.513 27.886 161.346 27.848L160.765 27.749Q160.409 27.681 160.136 27.460Q159.862 27.240 159.862 26.898Q159.862 26.649 159.973 26.474Q160.084 26.300 160.271 26.201Q160.457 26.102 160.672 26.059Q160.888 26.016 161.130 26.016Q161.544 26.016 161.824 26.198L162.040 26.023Q162.050 26.020 162.057 26.018Q162.063 26.016 162.074 26.016L162.125 26.016Q162.152 26.016 162.176 26.040Q162.200 26.064 162.200 26.092L162.200 26.939Q162.200 26.960 162.176 26.987Q162.152 27.014 162.125 27.014L162.012 27.014Q161.985 27.014 161.959 26.989Q161.934 26.963 161.934 26.939Q161.934 26.703 161.828 26.539Q161.722 26.375 161.539 26.293Q161.356 26.211 161.124 26.211Q160.795 26.211 160.539 26.314Q160.283 26.416 160.283 26.693Q160.283 26.888 160.466 26.997Q160.648 27.107 160.877 27.148L161.452 27.254Q161.698 27.302 161.911 27.430Q162.125 27.558 162.262 27.761Q162.398 27.965 162.398 28.214Q162.398 28.727 162.033 28.966Q161.667 29.205 161.130 29.205Q160.635 29.205 160.303 28.911L160.037 29.185Q160.016 29.205 159.989 29.205L159.941 29.205Q159.917 29.205 159.890 29.178Q159.862 29.151 159.862 29.130\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-1.631 121.884v-43\"\u002F>\u003Cpath stroke=\"none\" d=\"m-1.631 76.284-2.08 4.16 2.08-1.56 2.08 1.56\"\u002F>\u003Cg transform=\"translate(-149.912 71.454)\">\u003Cpath d=\"M154.009 29.137L152.375 29.137L152.375 28.857Q152.604 28.857 152.753 28.823Q152.902 28.788 152.902 28.648L152.902 26.799Q152.902 26.529 152.794 26.468Q152.686 26.406 152.375 26.406L152.375 26.126L153.435 26.051L153.435 26.700Q153.606 26.392 153.910 26.221Q154.214 26.051 154.559 26.051Q155.065 26.051 155.349 26.274Q155.633 26.498 155.633 26.994L155.633 28.648Q155.633 28.785 155.781 28.821Q155.930 28.857 156.156 28.857L156.156 29.137L154.525 29.137L154.525 28.857Q154.754 28.857 154.903 28.823Q155.052 28.788 155.052 28.648L155.052 27.008Q155.052 26.673 154.932 26.473Q154.812 26.273 154.498 26.273Q154.228 26.273 153.994 26.409Q153.760 26.546 153.621 26.780Q153.483 27.014 153.483 27.288L153.483 28.648Q153.483 28.785 153.633 28.821Q153.784 28.857 154.009 28.857L154.009 29.137M156.702 27.654Q156.702 27.312 156.837 27.013Q156.972 26.714 157.212 26.490Q157.451 26.266 157.769 26.141Q158.087 26.016 158.418 26.016Q158.863 26.016 159.263 26.232Q159.662 26.447 159.897 26.825Q160.131 27.202 160.131 27.654Q160.131 27.995 159.989 28.279Q159.847 28.563 159.603 28.770Q159.358 28.976 159.049 29.091Q158.740 29.205 158.418 29.205Q157.988 29.205 157.586 29.004Q157.184 28.802 156.943 28.450Q156.702 28.098 156.702 27.654M158.418 28.956Q159.020 28.956 159.244 28.578Q159.468 28.200 159.468 27.568Q159.468 26.956 159.233 26.597Q158.999 26.239 158.418 26.239Q157.366 26.239 157.366 27.568Q157.366 28.200 157.591 28.578Q157.817 28.956 158.418 28.956\" 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)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-1.631-9.474C78.036-44.84 78.036-44.84 111.868 1.431\"\u002F>\u003Cpath stroke=\"none\" d=\"m113.402 3.53-.776-4.586-.758 2.487-2.6-.031\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M35.557 63.28h75.245\"\u002F>\u003Cpath stroke=\"none\" d=\"m113.402 63.28-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The methodology loop. Measure a baseline, let the train\u002Fvalidation gap diagnose bias versus variance, apply the one remedy the diagnosis names, and re-measure. The loop exits only when the target metric is met.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:214.286px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 160.714 146.276\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"var(--tk-soft-good)\" stroke=\"var(--tk-good)\" d=\"M-31.967 67.406V10.5H24.94v56.906ZM24.939 10.5v-56.905h56.905V10.5Zm56.905-56.905\" style=\"stroke-width:1.2\"\u002F>\u003Cpath fill=\"var(--tk-soft-warn)\" stroke=\"var(--tk-warn)\" d=\"M24.939 67.406V10.5h56.905v56.906ZM-31.967 10.5v-56.905H24.94V10.5ZM24.94-46.405\" style=\"stroke-width:1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-31.967 67.406V-46.405H81.844v113.81ZM81.844-46.405\"\u002F>\u003Cg transform=\"translate(22.497 -82.625)\">\u003Cpath d=\"M-29.045 67.406L-31.631 67.406L-31.631 67.109Q-31.311 67.109-31.067 67.062Q-30.822 67.015-30.822 66.847L-30.822 62.504Q-30.822 62.332-31.067 62.285Q-31.311 62.238-31.631 62.238L-31.631 61.941L-27.014 61.941L-26.783 63.789L-27.065 63.789Q-27.151 63.105-27.313 62.785Q-27.475 62.465-27.815 62.351Q-28.154 62.238-28.846 62.238L-29.654 62.238Q-29.873 62.238-29.965 62.281Q-30.057 62.324-30.057 62.504L-30.057 64.527L-29.447 64.527Q-29.022 64.527-28.824 64.461Q-28.627 64.394-28.545 64.201Q-28.463 64.008-28.463 63.590L-28.182 63.590L-28.182 65.758L-28.463 65.758Q-28.463 65.340-28.545 65.146Q-28.627 64.953-28.824 64.886Q-29.022 64.820-29.447 64.820L-30.057 64.820L-30.057 66.847Q-30.057 67.011-29.738 67.060Q-29.420 67.109-29.045 67.109L-29.045 67.406M-24.166 67.406L-26.088 67.406L-26.088 67.109Q-25.279 67.109-25.279 66.629L-25.279 62.285Q-25.537 62.238-26.088 62.238L-26.088 61.941L-24.592 61.941Q-24.533 61.961-24.522 61.972L-21.514 66.160L-21.514 62.719Q-21.514 62.238-22.319 62.238L-22.319 61.941L-20.401 61.941L-20.401 62.238Q-21.209 62.238-21.209 62.719L-21.209 67.301Q-21.229 67.386-21.303 67.406L-21.408 67.406Q-21.463 67.394-21.479 67.367L-24.975 62.511L-24.975 66.629Q-24.975 67.109-24.166 67.109\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(79.398 -82.625)\">\u003Cpath d=\"M-27.381 67.406L-30.424 67.406L-30.424 67.109Q-29.662 67.109-29.479 67.070Q-29.436 67.058-29.387 67.025Q-29.338 66.992-29.313 66.949Q-29.287 66.906-29.287 66.847L-29.287 62.504Q-29.287 62.328-29.379 62.283Q-29.471 62.238-29.686 62.238L-30.080 62.238Q-30.776 62.238-31.065 62.527Q-31.213 62.676-31.276 62.996Q-31.338 63.316-31.381 63.789L-31.662 63.789L-31.502 61.941L-26.303 61.941L-26.143 63.789L-26.424 63.789Q-26.467 63.281-26.529 62.978Q-26.592 62.676-26.744 62.527Q-27.029 62.238-27.729 62.238L-28.119 62.238Q-28.334 62.238-28.426 62.281Q-28.518 62.324-28.518 62.504L-28.518 66.847Q-28.518 66.922-28.463 66.986Q-28.408 67.051-28.326 67.070Q-28.143 67.109-27.381 67.109L-27.381 67.406M-23.096 67.406L-25.479 67.406L-25.479 67.109Q-25.154 67.109-24.912 67.062Q-24.670 67.015-24.670 66.847L-24.670 62.504Q-24.670 62.332-24.912 62.285Q-25.154 62.238-25.479 62.238L-25.479 61.941L-22.533 61.941Q-22.190 61.941-21.834 62.041Q-21.479 62.140-21.184 62.332Q-20.889 62.523-20.707 62.808Q-20.526 63.094-20.526 63.453Q-20.526 63.926-20.836 64.261Q-21.147 64.597-21.612 64.769Q-22.076 64.941-22.533 64.941L-23.901 64.941L-23.901 66.847Q-23.901 67.015-23.658 67.062Q-23.416 67.109-23.096 67.109L-23.096 67.406M-23.928 62.504L-23.928 64.672L-22.752 64.672Q-22.065 64.672-21.727 64.396Q-21.389 64.121-21.389 63.453Q-21.389 62.789-21.727 62.513Q-22.065 62.238-22.752 62.238L-23.526 62.238Q-23.744 62.238-23.836 62.281Q-23.928 62.324-23.928 62.504\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(22.2 -25.72)\">\u003Cpath d=\"M-27.381 67.406L-30.424 67.406L-30.424 67.109Q-29.662 67.109-29.479 67.070Q-29.436 67.058-29.387 67.025Q-29.338 66.992-29.313 66.949Q-29.287 66.906-29.287 66.847L-29.287 62.504Q-29.287 62.328-29.379 62.283Q-29.471 62.238-29.686 62.238L-30.080 62.238Q-30.776 62.238-31.065 62.527Q-31.213 62.676-31.276 62.996Q-31.338 63.316-31.381 63.789L-31.662 63.789L-31.502 61.941L-26.303 61.941L-26.143 63.789L-26.424 63.789Q-26.467 63.281-26.529 62.978Q-26.592 62.676-26.744 62.527Q-27.029 62.238-27.729 62.238L-28.119 62.238Q-28.334 62.238-28.426 62.281Q-28.518 62.324-28.518 62.504L-28.518 66.847Q-28.518 66.922-28.463 66.986Q-28.408 67.051-28.326 67.070Q-28.143 67.109-27.381 67.109L-27.381 67.406M-23.572 67.406L-25.494 67.406L-25.494 67.109Q-24.686 67.109-24.686 66.629L-24.686 62.285Q-24.944 62.238-25.494 62.238L-25.494 61.941L-23.998 61.941Q-23.940 61.961-23.928 61.972L-20.920 66.160L-20.920 62.719Q-20.920 62.238-21.725 62.238L-21.725 61.941L-19.807 61.941L-19.807 62.238Q-20.615 62.238-20.615 62.719L-20.615 67.301Q-20.635 67.386-20.709 67.406L-20.815 67.406Q-20.869 67.394-20.885 67.367L-24.381 62.511L-24.381 66.629Q-24.381 67.109-23.572 67.109\" fill=\"var(--tk-good)\" stroke=\"var(--tk-good)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(79.696 -25.72)\">\u003Cpath d=\"M-29.045 67.406L-31.631 67.406L-31.631 67.109Q-31.311 67.109-31.067 67.062Q-30.822 67.015-30.822 66.847L-30.822 62.504Q-30.822 62.332-31.067 62.285Q-31.311 62.238-31.631 62.238L-31.631 61.941L-27.014 61.941L-26.783 63.789L-27.065 63.789Q-27.151 63.105-27.313 62.785Q-27.475 62.465-27.815 62.351Q-28.154 62.238-28.846 62.238L-29.654 62.238Q-29.873 62.238-29.965 62.281Q-30.057 62.324-30.057 62.504L-30.057 64.527L-29.447 64.527Q-29.022 64.527-28.824 64.461Q-28.627 64.394-28.545 64.201Q-28.463 64.008-28.463 63.590L-28.182 63.590L-28.182 65.758L-28.463 65.758Q-28.463 65.340-28.545 65.146Q-28.627 64.953-28.824 64.886Q-29.022 64.820-29.447 64.820L-30.057 64.820L-30.057 66.847Q-30.057 67.011-29.738 67.060Q-29.420 67.109-29.045 67.109L-29.045 67.406M-23.690 67.406L-26.072 67.406L-26.072 67.109Q-25.748 67.109-25.506 67.062Q-25.264 67.015-25.264 66.847L-25.264 62.504Q-25.264 62.332-25.506 62.285Q-25.748 62.238-26.072 62.238L-26.072 61.941L-23.127 61.941Q-22.783 61.941-22.428 62.041Q-22.072 62.140-21.778 62.332Q-21.483 62.523-21.301 62.808Q-21.119 63.094-21.119 63.453Q-21.119 63.926-21.430 64.261Q-21.740 64.597-22.205 64.769Q-22.670 64.941-23.127 64.941L-24.494 64.941L-24.494 66.847Q-24.494 67.015-24.252 67.062Q-24.010 67.109-23.690 67.109L-23.690 67.406M-24.522 62.504L-24.522 64.672L-23.346 64.672Q-22.658 64.672-22.321 64.396Q-21.983 64.121-21.983 63.453Q-21.983 62.789-22.321 62.513Q-22.658 62.238-23.346 62.238L-24.119 62.238Q-24.338 62.238-24.430 62.281Q-24.522 62.324-24.522 62.504\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(19.005 -121.287)\">\u003Cpath d=\"M-29.846 59.457L-31.701 59.457L-31.701 59.164Q-31.432 59.164-31.264 59.119Q-31.096 59.074-31.096 58.898L-31.096 55.074Q-31.096 54.867-31.252 54.814Q-31.408 54.761-31.701 54.761L-31.701 54.465L-30.479 54.379L-30.479 54.843Q-30.248 54.621-29.934 54.500Q-29.619 54.379-29.279 54.379Q-28.807 54.379-28.403 54.625Q-27.998 54.871-27.766 55.287Q-27.533 55.703-27.533 56.179Q-27.533 56.554-27.682 56.883Q-27.830 57.211-28.100 57.463Q-28.369 57.715-28.713 57.849Q-29.057 57.984-29.416 57.984Q-29.705 57.984-29.977 57.863Q-30.248 57.742-30.455 57.531L-30.455 58.898Q-30.455 59.074-30.287 59.119Q-30.119 59.164-29.846 59.164L-29.846 59.457M-30.455 55.242L-30.455 57.082Q-30.303 57.371-30.041 57.551Q-29.779 57.730-29.471 57.730Q-29.186 57.730-28.963 57.592Q-28.740 57.453-28.588 57.222Q-28.436 56.992-28.358 56.720Q-28.279 56.449-28.279 56.179Q-28.279 55.847-28.404 55.490Q-28.529 55.133-28.778 54.896Q-29.026 54.660-29.373 54.660Q-29.697 54.660-29.992 54.816Q-30.287 54.972-30.455 55.242M-25.002 57.906L-26.983 57.906L-26.983 57.609Q-26.713 57.609-26.545 57.564Q-26.377 57.519-26.377 57.347L-26.377 55.211Q-26.377 54.996-26.440 54.900Q-26.502 54.804-26.619 54.783Q-26.737 54.761-26.983 54.761L-26.983 54.465L-25.815 54.379L-25.815 55.164Q-25.737 54.953-25.584 54.767Q-25.432 54.582-25.233 54.480Q-25.033 54.379-24.807 54.379Q-24.561 54.379-24.369 54.523Q-24.178 54.668-24.178 54.898Q-24.178 55.054-24.283 55.164Q-24.389 55.273-24.545 55.273Q-24.701 55.273-24.811 55.164Q-24.920 55.054-24.920 54.898Q-24.920 54.738-24.815 54.633Q-25.139 54.633-25.354 54.861Q-25.569 55.090-25.664 55.429Q-25.760 55.769-25.760 56.074L-25.760 57.347Q-25.760 57.515-25.533 57.562Q-25.307 57.609-25.002 57.609L-25.002 57.906M-23.697 56.152Q-23.697 55.672-23.465 55.256Q-23.233 54.840-22.822 54.590Q-22.412 54.340-21.936 54.340Q-21.205 54.340-20.807 54.781Q-20.408 55.222-20.408 55.953Q-20.408 56.058-20.502 56.082L-22.951 56.082L-22.951 56.152Q-22.951 56.562-22.830 56.918Q-22.709 57.273-22.438 57.490Q-22.166 57.707-21.737 57.707Q-21.373 57.707-21.076 57.478Q-20.779 57.250-20.678 56.898Q-20.670 56.851-20.584 56.836L-20.502 56.836Q-20.408 56.863-20.408 56.945Q-20.408 56.953-20.416 56.984Q-20.479 57.211-20.617 57.394Q-20.756 57.578-20.947 57.711Q-21.139 57.843-21.358 57.914Q-21.576 57.984-21.815 57.984Q-22.186 57.984-22.524 57.847Q-22.862 57.711-23.129 57.459Q-23.397 57.207-23.547 56.867Q-23.697 56.527-23.697 56.152M-22.944 55.843L-20.983 55.843Q-20.983 55.539-21.084 55.248Q-21.186 54.957-21.403 54.775Q-21.619 54.593-21.936 54.593Q-22.237 54.593-22.467 54.781Q-22.697 54.968-22.821 55.260Q-22.944 55.551-22.944 55.843M-18.104 57.984Q-18.584 57.984-18.992 57.740Q-19.401 57.496-19.639 57.082Q-19.877 56.668-19.877 56.179Q-19.877 55.687-19.619 55.271Q-19.362 54.855-18.930 54.617Q-18.498 54.379-18.006 54.379Q-17.385 54.379-16.936 54.816L-16.936 53.187Q-16.936 52.972-16.998 52.877Q-17.061 52.781-17.178 52.760Q-17.295 52.738-17.541 52.738L-17.541 52.441L-16.319 52.355L-16.319 57.164Q-16.319 57.375-16.256 57.470Q-16.194 57.566-16.076 57.588Q-15.959 57.609-15.709 57.609L-15.709 57.906L-16.959 57.984L-16.959 57.500Q-17.424 57.984-18.104 57.984M-18.037 57.730Q-17.697 57.730-17.404 57.539Q-17.112 57.347-16.959 57.051L-16.959 55.218Q-17.108 54.945-17.369 54.789Q-17.631 54.633-17.944 54.633Q-18.569 54.633-18.852 55.080Q-19.135 55.527-19.135 56.187Q-19.135 56.832-18.883 57.281Q-18.631 57.730-18.037 57.730M-14.721 57.441Q-14.721 57.258-14.584 57.121Q-14.447 56.984-14.256 56.984Q-14.065 56.984-13.932 57.117Q-13.799 57.250-13.799 57.441Q-13.799 57.640-13.932 57.773Q-14.065 57.906-14.256 57.906Q-14.447 57.906-14.584 57.769Q-14.721 57.633-14.721 57.441\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(19.005 -121.287)\">\u003Cpath d=\"M-26.726 67.406L-28.581 67.406L-28.581 67.109Q-28.308 67.109-28.140 67.062Q-27.972 67.015-27.972 66.847L-27.972 64.711Q-27.972 64.496-28.035 64.400Q-28.097 64.304-28.216 64.283Q-28.335 64.261-28.581 64.261L-28.581 63.965L-27.390 63.879L-27.390 64.613Q-27.277 64.398-27.083 64.230Q-26.890 64.062-26.652 63.970Q-26.414 63.879-26.160 63.879Q-24.992 63.879-24.992 64.957L-24.992 66.847Q-24.992 67.015-24.822 67.062Q-24.652 67.109-24.382 67.109L-24.382 67.406L-26.238 67.406L-26.238 67.109Q-25.964 67.109-25.796 67.062Q-25.628 67.015-25.628 66.847L-25.628 64.972Q-25.628 64.590-25.749 64.361Q-25.871 64.133-26.222 64.133Q-26.535 64.133-26.789 64.295Q-27.042 64.457-27.189 64.726Q-27.335 64.996-27.335 65.293L-27.335 66.847Q-27.335 67.015-27.165 67.062Q-26.996 67.109-26.726 67.109L-26.726 67.406M-23.937 65.652Q-23.937 65.172-23.705 64.756Q-23.472 64.340-23.062 64.090Q-22.652 63.840-22.175 63.840Q-21.445 63.840-21.046 64.281Q-20.648 64.722-20.648 65.453Q-20.648 65.558-20.742 65.582L-23.191 65.582L-23.191 65.652Q-23.191 66.062-23.070 66.418Q-22.949 66.773-22.677 66.990Q-22.406 67.207-21.976 67.207Q-21.613 67.207-21.316 66.978Q-21.019 66.750-20.917 66.398Q-20.910 66.351-20.824 66.336L-20.742 66.336Q-20.648 66.363-20.648 66.445Q-20.648 66.453-20.656 66.484Q-20.718 66.711-20.857 66.894Q-20.996 67.078-21.187 67.211Q-21.378 67.344-21.597 67.414Q-21.816 67.484-22.054 67.484Q-22.425 67.484-22.763 67.347Q-23.101 67.211-23.369 66.959Q-23.636 66.707-23.787 66.367Q-23.937 66.027-23.937 65.652M-23.183 65.344L-21.222 65.344Q-21.222 65.039-21.324 64.748Q-21.425 64.457-21.642 64.275Q-21.859 64.094-22.175 64.094Q-22.476 64.094-22.706 64.281Q-22.937 64.469-23.060 64.760Q-23.183 65.051-23.183 65.344M-20.160 68.015Q-20.160 67.734-19.949 67.523Q-19.738 67.312-19.453 67.222Q-19.609 67.097-19.687 66.908Q-19.765 66.719-19.765 66.519Q-19.765 66.164-19.535 65.871Q-19.902 65.531-19.902 65.062Q-19.902 64.711-19.699 64.441Q-19.496 64.172-19.175 64.025Q-18.855 63.879-18.511 63.879Q-17.992 63.879-17.621 64.160Q-17.257 63.789-16.710 63.789Q-16.531 63.789-16.404 63.916Q-16.277 64.043-16.277 64.222Q-16.277 64.328-16.355 64.406Q-16.433 64.484-16.542 64.484Q-16.652 64.484-16.728 64.408Q-16.804 64.332-16.804 64.222Q-16.804 64.121-16.765 64.070Q-16.757 64.062-16.753 64.056Q-16.749 64.051-16.749 64.047Q-17.124 64.047-17.445 64.301Q-17.124 64.640-17.124 65.062Q-17.124 65.332-17.242 65.549Q-17.359 65.765-17.564 65.924Q-17.769 66.082-18.011 66.164Q-18.253 66.246-18.511 66.246Q-18.730 66.246-18.943 66.187Q-19.156 66.129-19.351 66.008Q-19.445 66.148-19.445 66.328Q-19.445 66.535-19.308 66.687Q-19.171 66.840-18.964 66.840L-18.269 66.840Q-17.781 66.840-17.369 66.924Q-16.956 67.008-16.677 67.265Q-16.398 67.523-16.398 68.015Q-16.398 68.379-16.718 68.611Q-17.039 68.844-17.480 68.945Q-17.921 69.047-18.277 69.047Q-18.632 69.047-19.076 68.945Q-19.519 68.844-19.839 68.611Q-20.160 68.379-20.160 68.015M-19.656 68.015Q-19.656 68.211-19.511 68.359Q-19.367 68.508-19.154 68.597Q-18.941 68.687-18.701 68.734Q-18.460 68.781-18.277 68.781Q-18.035 68.781-17.705 68.703Q-17.374 68.625-17.138 68.451Q-16.902 68.277-16.902 68.015Q-16.902 67.609-17.312 67.500Q-17.722 67.390-18.285 67.390L-18.964 67.390Q-19.234 67.390-19.445 67.568Q-19.656 67.746-19.656 68.015M-18.511 65.980Q-17.789 65.980-17.789 65.062Q-17.789 64.140-18.511 64.140Q-19.238 64.140-19.238 65.062Q-19.238 65.980-18.511 65.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(75.91 -121.287)\">\u003Cpath d=\"M-29.846 59.457L-31.701 59.457L-31.701 59.164Q-31.432 59.164-31.264 59.119Q-31.096 59.074-31.096 58.898L-31.096 55.074Q-31.096 54.867-31.252 54.814Q-31.408 54.761-31.701 54.761L-31.701 54.465L-30.479 54.379L-30.479 54.843Q-30.248 54.621-29.934 54.500Q-29.619 54.379-29.279 54.379Q-28.807 54.379-28.403 54.625Q-27.998 54.871-27.766 55.287Q-27.533 55.703-27.533 56.179Q-27.533 56.554-27.682 56.883Q-27.830 57.211-28.100 57.463Q-28.369 57.715-28.713 57.849Q-29.057 57.984-29.416 57.984Q-29.705 57.984-29.977 57.863Q-30.248 57.742-30.455 57.531L-30.455 58.898Q-30.455 59.074-30.287 59.119Q-30.119 59.164-29.846 59.164L-29.846 59.457M-30.455 55.242L-30.455 57.082Q-30.303 57.371-30.041 57.551Q-29.779 57.730-29.471 57.730Q-29.186 57.730-28.963 57.592Q-28.740 57.453-28.588 57.222Q-28.436 56.992-28.358 56.720Q-28.279 56.449-28.279 56.179Q-28.279 55.847-28.404 55.490Q-28.529 55.133-28.778 54.896Q-29.026 54.660-29.373 54.660Q-29.697 54.660-29.992 54.816Q-30.287 54.972-30.455 55.242M-25.002 57.906L-26.983 57.906L-26.983 57.609Q-26.713 57.609-26.545 57.564Q-26.377 57.519-26.377 57.347L-26.377 55.211Q-26.377 54.996-26.440 54.900Q-26.502 54.804-26.619 54.783Q-26.737 54.761-26.983 54.761L-26.983 54.465L-25.815 54.379L-25.815 55.164Q-25.737 54.953-25.584 54.767Q-25.432 54.582-25.233 54.480Q-25.033 54.379-24.807 54.379Q-24.561 54.379-24.369 54.523Q-24.178 54.668-24.178 54.898Q-24.178 55.054-24.283 55.164Q-24.389 55.273-24.545 55.273Q-24.701 55.273-24.811 55.164Q-24.920 55.054-24.920 54.898Q-24.920 54.738-24.815 54.633Q-25.139 54.633-25.354 54.861Q-25.569 55.090-25.664 55.429Q-25.760 55.769-25.760 56.074L-25.760 57.347Q-25.760 57.515-25.533 57.562Q-25.307 57.609-25.002 57.609L-25.002 57.906M-23.697 56.152Q-23.697 55.672-23.465 55.256Q-23.233 54.840-22.822 54.590Q-22.412 54.340-21.936 54.340Q-21.205 54.340-20.807 54.781Q-20.408 55.222-20.408 55.953Q-20.408 56.058-20.502 56.082L-22.951 56.082L-22.951 56.152Q-22.951 56.562-22.830 56.918Q-22.709 57.273-22.438 57.490Q-22.166 57.707-21.737 57.707Q-21.373 57.707-21.076 57.478Q-20.779 57.250-20.678 56.898Q-20.670 56.851-20.584 56.836L-20.502 56.836Q-20.408 56.863-20.408 56.945Q-20.408 56.953-20.416 56.984Q-20.479 57.211-20.617 57.394Q-20.756 57.578-20.947 57.711Q-21.139 57.843-21.358 57.914Q-21.576 57.984-21.815 57.984Q-22.186 57.984-22.524 57.847Q-22.862 57.711-23.129 57.459Q-23.397 57.207-23.547 56.867Q-23.697 56.527-23.697 56.152M-22.944 55.843L-20.983 55.843Q-20.983 55.539-21.084 55.248Q-21.186 54.957-21.403 54.775Q-21.619 54.593-21.936 54.593Q-22.237 54.593-22.467 54.781Q-22.697 54.968-22.821 55.260Q-22.944 55.551-22.944 55.843M-18.104 57.984Q-18.584 57.984-18.992 57.740Q-19.401 57.496-19.639 57.082Q-19.877 56.668-19.877 56.179Q-19.877 55.687-19.619 55.271Q-19.362 54.855-18.930 54.617Q-18.498 54.379-18.006 54.379Q-17.385 54.379-16.936 54.816L-16.936 53.187Q-16.936 52.972-16.998 52.877Q-17.061 52.781-17.178 52.760Q-17.295 52.738-17.541 52.738L-17.541 52.441L-16.319 52.355L-16.319 57.164Q-16.319 57.375-16.256 57.470Q-16.194 57.566-16.076 57.588Q-15.959 57.609-15.709 57.609L-15.709 57.906L-16.959 57.984L-16.959 57.500Q-17.424 57.984-18.104 57.984M-18.037 57.730Q-17.697 57.730-17.404 57.539Q-17.112 57.347-16.959 57.051L-16.959 55.218Q-17.108 54.945-17.369 54.789Q-17.631 54.633-17.944 54.633Q-18.569 54.633-18.852 55.080Q-19.135 55.527-19.135 56.187Q-19.135 56.832-18.883 57.281Q-18.631 57.730-18.037 57.730M-14.721 57.441Q-14.721 57.258-14.584 57.121Q-14.447 56.984-14.256 56.984Q-14.065 56.984-13.932 57.117Q-13.799 57.250-13.799 57.441Q-13.799 57.640-13.932 57.773Q-14.065 57.906-14.256 57.906Q-14.447 57.906-14.584 57.769Q-14.721 57.633-14.721 57.441\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(75.91 -121.287)\">\u003Cpath d=\"M-26.678 68.957L-28.533 68.957L-28.533 68.664Q-28.264 68.664-28.096 68.619Q-27.928 68.574-27.928 68.398L-27.928 64.574Q-27.928 64.367-28.084 64.314Q-28.240 64.261-28.533 64.261L-28.533 63.965L-27.311 63.879L-27.311 64.344Q-27.080 64.121-26.766 64Q-26.451 63.879-26.111 63.879Q-25.639 63.879-25.235 64.125Q-24.830 64.371-24.598 64.787Q-24.365 65.203-24.365 65.679Q-24.365 66.054-24.514 66.383Q-24.662 66.711-24.932 66.963Q-25.201 67.215-25.545 67.349Q-25.889 67.484-26.248 67.484Q-26.537 67.484-26.809 67.363Q-27.080 67.242-27.287 67.031L-27.287 68.398Q-27.287 68.574-27.119 68.619Q-26.951 68.664-26.678 68.664L-26.678 68.957M-27.287 64.742L-27.287 66.582Q-27.135 66.871-26.873 67.051Q-26.611 67.230-26.303 67.230Q-26.018 67.230-25.795 67.092Q-25.572 66.953-25.420 66.722Q-25.268 66.492-25.190 66.220Q-25.111 65.949-25.111 65.679Q-25.111 65.347-25.236 64.990Q-25.361 64.633-25.610 64.396Q-25.858 64.160-26.205 64.160Q-26.529 64.160-26.824 64.316Q-27.119 64.472-27.287 64.742\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(75.91 -121.287)\">\u003Cpath d=\"M-23.603 65.711Q-23.603 65.207-23.347 64.775Q-23.091 64.344-22.655 64.092Q-22.220 63.840-21.720 63.840Q-21.333 63.840-20.991 63.984Q-20.650 64.129-20.388 64.390Q-20.126 64.652-19.984 64.988Q-19.841 65.324-19.841 65.711Q-19.841 66.203-20.105 66.613Q-20.368 67.023-20.798 67.254Q-21.228 67.484-21.720 67.484Q-22.212 67.484-22.646 67.252Q-23.079 67.019-23.341 66.611Q-23.603 66.203-23.603 65.711M-21.720 67.207Q-21.263 67.207-21.011 66.984Q-20.759 66.761-20.671 66.410Q-20.583 66.058-20.583 65.613Q-20.583 65.183-20.677 64.845Q-20.771 64.508-21.025 64.301Q-21.279 64.094-21.720 64.094Q-22.368 64.094-22.612 64.510Q-22.857 64.926-22.857 65.613Q-22.857 66.058-22.769 66.410Q-22.681 66.761-22.429 66.984Q-22.177 67.207-21.720 67.207M-19.314 67.398L-19.314 66.176Q-19.314 66.148-19.282 66.117Q-19.251 66.086-19.228 66.086L-19.122 66.086Q-19.052 66.086-19.036 66.148Q-18.974 66.469-18.835 66.709Q-18.696 66.949-18.464 67.090Q-18.232 67.230-17.923 67.230Q-17.685 67.230-17.476 67.170Q-17.267 67.109-17.130 66.961Q-16.993 66.812-16.993 66.566Q-16.993 66.312-17.204 66.146Q-17.415 65.980-17.685 65.926L-18.306 65.812Q-18.712 65.734-19.013 65.478Q-19.314 65.222-19.314 64.847Q-19.314 64.480-19.112 64.258Q-18.911 64.035-18.587 63.937Q-18.263 63.840-17.923 63.840Q-17.458 63.840-17.161 64.047L-16.939 63.863Q-16.915 63.840-16.884 63.840L-16.833 63.840Q-16.802 63.840-16.775 63.867Q-16.747 63.894-16.747 63.926L-16.747 64.910Q-16.747 64.941-16.773 64.970Q-16.798 65-16.833 65L-16.939 65Q-16.974 65-17.001 64.972Q-17.029 64.945-17.029 64.910Q-17.029 64.511-17.280 64.291Q-17.532 64.070-17.931 64.070Q-18.286 64.070-18.570 64.193Q-18.853 64.316-18.853 64.621Q-18.853 64.840-18.652 64.972Q-18.450 65.105-18.204 65.148L-17.579 65.261Q-17.150 65.351-16.841 65.648Q-16.532 65.945-16.532 66.359Q-16.532 66.929-16.931 67.207Q-17.329 67.484-17.923 67.484Q-18.474 67.484-18.825 67.148L-19.122 67.461Q-19.146 67.484-19.181 67.484L-19.228 67.484Q-19.251 67.484-19.282 67.453Q-19.314 67.422-19.314 67.398\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 -75.474 33.115)\">\u003Cpath d=\"M-31.104 56.945L-31.104 54.754L-31.807 54.754L-31.807 54.500Q-31.451 54.500-31.209 54.267Q-30.967 54.035-30.856 53.687Q-30.744 53.340-30.744 52.984L-30.463 52.984L-30.463 54.457L-29.287 54.457L-29.287 54.754L-30.463 54.754L-30.463 56.929Q-30.463 57.250-30.344 57.478Q-30.225 57.707-29.944 57.707Q-29.764 57.707-29.647 57.584Q-29.529 57.461-29.477 57.281Q-29.424 57.101-29.424 56.929L-29.424 56.457L-29.143 56.457L-29.143 56.945Q-29.143 57.199-29.248 57.439Q-29.354 57.679-29.551 57.832Q-29.748 57.984-30.006 57.984Q-30.322 57.984-30.574 57.861Q-30.826 57.738-30.965 57.504Q-31.104 57.269-31.104 56.945M-26.416 57.906L-28.397 57.906L-28.397 57.609Q-28.127 57.609-27.959 57.564Q-27.791 57.519-27.791 57.347L-27.791 55.211Q-27.791 54.996-27.854 54.900Q-27.916 54.804-28.033 54.783Q-28.151 54.761-28.397 54.761L-28.397 54.465L-27.229 54.379L-27.229 55.164Q-27.151 54.953-26.998 54.767Q-26.846 54.582-26.647 54.480Q-26.447 54.379-26.221 54.379Q-25.975 54.379-25.783 54.523Q-25.592 54.668-25.592 54.898Q-25.592 55.054-25.697 55.164Q-25.803 55.273-25.959 55.273Q-26.115 55.273-26.225 55.164Q-26.334 55.054-26.334 54.898Q-26.334 54.738-26.229 54.633Q-26.553 54.633-26.768 54.861Q-26.983 55.090-27.078 55.429Q-27.174 55.769-27.174 56.074L-27.174 57.347Q-27.174 57.515-26.947 57.562Q-26.721 57.609-26.416 57.609L-26.416 57.906M-24.428 56.953L-24.428 55.211Q-24.428 54.996-24.490 54.900Q-24.553 54.804-24.672 54.783Q-24.791 54.761-25.037 54.761L-25.037 54.465L-23.791 54.379L-23.791 56.929L-23.791 56.953Q-23.791 57.265-23.737 57.427Q-23.682 57.590-23.531 57.660Q-23.381 57.730-23.061 57.730Q-22.631 57.730-22.358 57.392Q-22.084 57.054-22.084 56.609L-22.084 55.211Q-22.084 54.996-22.147 54.900Q-22.209 54.804-22.328 54.783Q-22.447 54.761-22.694 54.761L-22.694 54.465L-21.447 54.379L-21.447 57.164Q-21.447 57.375-21.385 57.470Q-21.322 57.566-21.203 57.588Q-21.084 57.609-20.838 57.609L-20.838 57.906L-22.061 57.984L-22.061 57.363Q-22.229 57.652-22.510 57.818Q-22.791 57.984-23.112 57.984Q-24.428 57.984-24.428 56.953M-20.393 56.152Q-20.393 55.672-20.160 55.256Q-19.928 54.840-19.518 54.590Q-19.108 54.340-18.631 54.340Q-17.901 54.340-17.502 54.781Q-17.104 55.222-17.104 55.953Q-17.104 56.058-17.197 56.082L-19.647 56.082L-19.647 56.152Q-19.647 56.562-19.526 56.918Q-19.404 57.273-19.133 57.490Q-18.862 57.707-18.432 57.707Q-18.069 57.707-17.772 57.478Q-17.475 57.250-17.373 56.898Q-17.365 56.851-17.279 56.836L-17.197 56.836Q-17.104 56.863-17.104 56.945Q-17.104 56.953-17.112 56.984Q-17.174 57.211-17.313 57.394Q-17.451 57.578-17.643 57.711Q-17.834 57.843-18.053 57.914Q-18.272 57.984-18.510 57.984Q-18.881 57.984-19.219 57.847Q-19.557 57.711-19.824 57.459Q-20.092 57.207-20.242 56.867Q-20.393 56.527-20.393 56.152M-19.639 55.843L-17.678 55.843Q-17.678 55.539-17.779 55.248Q-17.881 54.957-18.098 54.775Q-18.315 54.593-18.631 54.593Q-18.932 54.593-19.162 54.781Q-19.393 54.968-19.516 55.260Q-19.639 55.551-19.639 55.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -75.474 33.115)\">\u003Cpath d=\"M-28.567 68.957L-30.422 68.957L-30.422 68.664Q-30.153 68.664-29.985 68.619Q-29.817 68.574-29.817 68.398L-29.817 64.574Q-29.817 64.367-29.973 64.314Q-30.129 64.261-30.422 64.261L-30.422 63.965L-29.200 63.879L-29.200 64.344Q-28.969 64.121-28.655 64Q-28.340 63.879-28 63.879Q-27.528 63.879-27.124 64.125Q-26.719 64.371-26.487 64.787Q-26.254 65.203-26.254 65.679Q-26.254 66.054-26.403 66.383Q-26.551 66.711-26.821 66.963Q-27.090 67.215-27.434 67.349Q-27.778 67.484-28.137 67.484Q-28.426 67.484-28.698 67.363Q-28.969 67.242-29.176 67.031L-29.176 68.398Q-29.176 68.574-29.008 68.619Q-28.840 68.664-28.567 68.664L-28.567 68.957M-29.176 64.742L-29.176 66.582Q-29.024 66.871-28.762 67.051Q-28.500 67.230-28.192 67.230Q-27.907 67.230-27.684 67.092Q-27.461 66.953-27.309 66.722Q-27.157 66.492-27.079 66.220Q-27 65.949-27 65.679Q-27 65.347-27.125 64.990Q-27.250 64.633-27.499 64.396Q-27.747 64.160-28.094 64.160Q-28.418 64.160-28.713 64.316Q-29.008 64.472-29.176 64.742\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -75.474 33.115)\">\u003Cpath d=\"M-25.492 65.711Q-25.492 65.207-25.236 64.775Q-24.980 64.344-24.544 64.092Q-24.109 63.840-23.609 63.840Q-23.222 63.840-22.880 63.984Q-22.539 64.129-22.277 64.390Q-22.015 64.652-21.873 64.988Q-21.730 65.324-21.730 65.711Q-21.730 66.203-21.994 66.613Q-22.257 67.023-22.687 67.254Q-23.117 67.484-23.609 67.484Q-24.101 67.484-24.535 67.252Q-24.968 67.019-25.230 66.611Q-25.492 66.203-25.492 65.711M-23.609 67.207Q-23.152 67.207-22.900 66.984Q-22.648 66.761-22.560 66.410Q-22.472 66.058-22.472 65.613Q-22.472 65.183-22.566 64.845Q-22.660 64.508-22.914 64.301Q-23.168 64.094-23.609 64.094Q-24.257 64.094-24.501 64.510Q-24.746 64.926-24.746 65.613Q-24.746 66.058-24.658 66.410Q-24.570 66.761-24.318 66.984Q-24.066 67.207-23.609 67.207M-21.203 67.398L-21.203 66.176Q-21.203 66.148-21.171 66.117Q-21.140 66.086-21.117 66.086L-21.011 66.086Q-20.941 66.086-20.925 66.148Q-20.863 66.469-20.724 66.709Q-20.585 66.949-20.353 67.090Q-20.121 67.230-19.812 67.230Q-19.574 67.230-19.365 67.170Q-19.156 67.109-19.019 66.961Q-18.882 66.812-18.882 66.566Q-18.882 66.312-19.093 66.146Q-19.304 65.980-19.574 65.926L-20.195 65.812Q-20.601 65.734-20.902 65.478Q-21.203 65.222-21.203 64.847Q-21.203 64.480-21.001 64.258Q-20.800 64.035-20.476 63.937Q-20.152 63.840-19.812 63.840Q-19.347 63.840-19.050 64.047L-18.828 63.863Q-18.804 63.840-18.773 63.840L-18.722 63.840Q-18.691 63.840-18.664 63.867Q-18.636 63.894-18.636 63.926L-18.636 64.910Q-18.636 64.941-18.662 64.970Q-18.687 65-18.722 65L-18.828 65Q-18.863 65-18.890 64.972Q-18.918 64.945-18.918 64.910Q-18.918 64.511-19.169 64.291Q-19.421 64.070-19.820 64.070Q-20.175 64.070-20.459 64.193Q-20.742 64.316-20.742 64.621Q-20.742 64.840-20.541 64.972Q-20.339 65.105-20.093 65.148L-19.468 65.261Q-19.039 65.351-18.730 65.648Q-18.421 65.945-18.421 66.359Q-18.421 66.929-18.820 67.207Q-19.218 67.484-19.812 67.484Q-20.363 67.484-20.714 67.148L-21.011 67.461Q-21.035 67.484-21.070 67.484L-21.117 67.484Q-21.140 67.484-21.171 67.453Q-21.203 67.422-21.203 67.398\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 -47.022 61.567)\">\u003Cpath d=\"M-31.104 56.945L-31.104 54.754L-31.807 54.754L-31.807 54.500Q-31.451 54.500-31.209 54.267Q-30.967 54.035-30.856 53.687Q-30.744 53.340-30.744 52.984L-30.463 52.984L-30.463 54.457L-29.287 54.457L-29.287 54.754L-30.463 54.754L-30.463 56.929Q-30.463 57.250-30.344 57.478Q-30.225 57.707-29.944 57.707Q-29.764 57.707-29.647 57.584Q-29.529 57.461-29.477 57.281Q-29.424 57.101-29.424 56.929L-29.424 56.457L-29.143 56.457L-29.143 56.945Q-29.143 57.199-29.248 57.439Q-29.354 57.679-29.551 57.832Q-29.748 57.984-30.006 57.984Q-30.322 57.984-30.574 57.861Q-30.826 57.738-30.965 57.504Q-31.104 57.269-31.104 56.945M-26.416 57.906L-28.397 57.906L-28.397 57.609Q-28.127 57.609-27.959 57.564Q-27.791 57.519-27.791 57.347L-27.791 55.211Q-27.791 54.996-27.854 54.900Q-27.916 54.804-28.033 54.783Q-28.151 54.761-28.397 54.761L-28.397 54.465L-27.229 54.379L-27.229 55.164Q-27.151 54.953-26.998 54.767Q-26.846 54.582-26.647 54.480Q-26.447 54.379-26.221 54.379Q-25.975 54.379-25.783 54.523Q-25.592 54.668-25.592 54.898Q-25.592 55.054-25.697 55.164Q-25.803 55.273-25.959 55.273Q-26.115 55.273-26.225 55.164Q-26.334 55.054-26.334 54.898Q-26.334 54.738-26.229 54.633Q-26.553 54.633-26.768 54.861Q-26.983 55.090-27.078 55.429Q-27.174 55.769-27.174 56.074L-27.174 57.347Q-27.174 57.515-26.947 57.562Q-26.721 57.609-26.416 57.609L-26.416 57.906M-24.428 56.953L-24.428 55.211Q-24.428 54.996-24.490 54.900Q-24.553 54.804-24.672 54.783Q-24.791 54.761-25.037 54.761L-25.037 54.465L-23.791 54.379L-23.791 56.929L-23.791 56.953Q-23.791 57.265-23.737 57.427Q-23.682 57.590-23.531 57.660Q-23.381 57.730-23.061 57.730Q-22.631 57.730-22.358 57.392Q-22.084 57.054-22.084 56.609L-22.084 55.211Q-22.084 54.996-22.147 54.900Q-22.209 54.804-22.328 54.783Q-22.447 54.761-22.694 54.761L-22.694 54.465L-21.447 54.379L-21.447 57.164Q-21.447 57.375-21.385 57.470Q-21.322 57.566-21.203 57.588Q-21.084 57.609-20.838 57.609L-20.838 57.906L-22.061 57.984L-22.061 57.363Q-22.229 57.652-22.510 57.818Q-22.791 57.984-23.112 57.984Q-24.428 57.984-24.428 56.953M-20.393 56.152Q-20.393 55.672-20.160 55.256Q-19.928 54.840-19.518 54.590Q-19.108 54.340-18.631 54.340Q-17.901 54.340-17.502 54.781Q-17.104 55.222-17.104 55.953Q-17.104 56.058-17.197 56.082L-19.647 56.082L-19.647 56.152Q-19.647 56.562-19.526 56.918Q-19.404 57.273-19.133 57.490Q-18.862 57.707-18.432 57.707Q-18.069 57.707-17.772 57.478Q-17.475 57.250-17.373 56.898Q-17.365 56.851-17.279 56.836L-17.197 56.836Q-17.104 56.863-17.104 56.945Q-17.104 56.953-17.112 56.984Q-17.174 57.211-17.313 57.394Q-17.451 57.578-17.643 57.711Q-17.834 57.843-18.053 57.914Q-18.272 57.984-18.510 57.984Q-18.881 57.984-19.219 57.847Q-19.557 57.711-19.824 57.459Q-20.092 57.207-20.242 56.867Q-20.393 56.527-20.393 56.152M-19.639 55.843L-17.678 55.843Q-17.678 55.539-17.779 55.248Q-17.881 54.957-18.098 54.775Q-18.315 54.593-18.631 54.593Q-18.932 54.593-19.162 54.781Q-19.393 54.968-19.516 55.260Q-19.639 55.551-19.639 55.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -47.022 61.567)\">\u003Cpath d=\"M-28.614 67.406L-30.469 67.406L-30.469 67.109Q-30.196 67.109-30.028 67.062Q-29.860 67.015-29.860 66.847L-29.860 64.711Q-29.860 64.496-29.923 64.400Q-29.985 64.304-30.104 64.283Q-30.223 64.261-30.469 64.261L-30.469 63.965L-29.278 63.879L-29.278 64.613Q-29.165 64.398-28.971 64.230Q-28.778 64.062-28.540 63.970Q-28.302 63.879-28.048 63.879Q-26.880 63.879-26.880 64.957L-26.880 66.847Q-26.880 67.015-26.710 67.062Q-26.540 67.109-26.270 67.109L-26.270 67.406L-28.126 67.406L-28.126 67.109Q-27.852 67.109-27.684 67.062Q-27.516 67.015-27.516 66.847L-27.516 64.972Q-27.516 64.590-27.637 64.361Q-27.759 64.133-28.110 64.133Q-28.423 64.133-28.677 64.295Q-28.930 64.457-29.077 64.726Q-29.223 64.996-29.223 65.293L-29.223 66.847Q-29.223 67.015-29.053 67.062Q-28.884 67.109-28.614 67.109L-28.614 67.406M-25.825 65.652Q-25.825 65.172-25.593 64.756Q-25.360 64.340-24.950 64.090Q-24.540 63.840-24.063 63.840Q-23.333 63.840-22.934 64.281Q-22.536 64.722-22.536 65.453Q-22.536 65.558-22.630 65.582L-25.079 65.582L-25.079 65.652Q-25.079 66.062-24.958 66.418Q-24.837 66.773-24.565 66.990Q-24.294 67.207-23.864 67.207Q-23.501 67.207-23.204 66.978Q-22.907 66.750-22.805 66.398Q-22.798 66.351-22.712 66.336L-22.630 66.336Q-22.536 66.363-22.536 66.445Q-22.536 66.453-22.544 66.484Q-22.606 66.711-22.745 66.894Q-22.884 67.078-23.075 67.211Q-23.266 67.344-23.485 67.414Q-23.704 67.484-23.942 67.484Q-24.313 67.484-24.651 67.347Q-24.989 67.211-25.257 66.959Q-25.524 66.707-25.675 66.367Q-25.825 66.027-25.825 65.652M-25.071 65.344L-23.110 65.344Q-23.110 65.039-23.212 64.748Q-23.313 64.457-23.530 64.275Q-23.747 64.094-24.063 64.094Q-24.364 64.094-24.595 64.281Q-24.825 64.469-24.948 64.760Q-25.071 65.051-25.071 65.344M-22.048 68.015Q-22.048 67.734-21.837 67.523Q-21.626 67.312-21.341 67.222Q-21.497 67.097-21.575 66.908Q-21.653 66.719-21.653 66.519Q-21.653 66.164-21.423 65.871Q-21.790 65.531-21.790 65.062Q-21.790 64.711-21.587 64.441Q-21.384 64.172-21.063 64.025Q-20.743 63.879-20.399 63.879Q-19.880 63.879-19.509 64.160Q-19.145 63.789-18.598 63.789Q-18.419 63.789-18.292 63.916Q-18.165 64.043-18.165 64.222Q-18.165 64.328-18.243 64.406Q-18.321 64.484-18.430 64.484Q-18.540 64.484-18.616 64.408Q-18.692 64.332-18.692 64.222Q-18.692 64.121-18.653 64.070Q-18.645 64.062-18.641 64.056Q-18.637 64.051-18.637 64.047Q-19.012 64.047-19.333 64.301Q-19.012 64.640-19.012 65.062Q-19.012 65.332-19.130 65.549Q-19.247 65.765-19.452 65.924Q-19.657 66.082-19.899 66.164Q-20.141 66.246-20.399 66.246Q-20.618 66.246-20.831 66.187Q-21.044 66.129-21.239 66.008Q-21.333 66.148-21.333 66.328Q-21.333 66.535-21.196 66.687Q-21.059 66.840-20.852 66.840L-20.157 66.840Q-19.669 66.840-19.257 66.924Q-18.845 67.008-18.565 67.265Q-18.286 67.523-18.286 68.015Q-18.286 68.379-18.606 68.611Q-18.927 68.844-19.368 68.945Q-19.809 69.047-20.165 69.047Q-20.520 69.047-20.964 68.945Q-21.407 68.844-21.727 68.611Q-22.048 68.379-22.048 68.015M-21.544 68.015Q-21.544 68.211-21.399 68.359Q-21.255 68.508-21.042 68.597Q-20.829 68.687-20.589 68.734Q-20.348 68.781-20.165 68.781Q-19.923 68.781-19.593 68.703Q-19.262 68.625-19.026 68.451Q-18.790 68.277-18.790 68.015Q-18.790 67.609-19.200 67.500Q-19.610 67.390-20.173 67.390L-20.852 67.390Q-21.122 67.390-21.333 67.568Q-21.544 67.746-21.544 68.015M-20.399 65.980Q-19.677 65.980-19.677 65.062Q-19.677 64.140-20.399 64.140Q-21.126 64.140-21.126 65.062Q-21.126 65.980-20.399 65.980\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The confusion matrix. Precision reads down the predicted-positive column; recall reads across the true-positive row.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:288.271px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 216.203 147.242\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-42.618 55.528h151.045\"\u002F>\u003Cpath stroke=\"none\" d=\"m111.027 55.528-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg transform=\"translate(157.378 2.778)\">\u003Cpath d=\"M-40.372 55.528L-42.352 55.528L-42.352 55.231Q-42.083 55.231-41.915 55.186Q-41.747 55.141-41.747 54.969L-41.747 52.833Q-41.747 52.618-41.809 52.522Q-41.872 52.426-41.989 52.405Q-42.106 52.383-42.352 52.383L-42.352 52.087L-41.184 52.001L-41.184 52.786Q-41.106 52.575-40.954 52.389Q-40.802 52.204-40.602 52.102Q-40.403 52.001-40.177 52.001Q-39.931 52.001-39.739 52.145Q-39.548 52.290-39.548 52.520Q-39.548 52.676-39.653 52.786Q-39.759 52.895-39.915 52.895Q-40.071 52.895-40.181 52.786Q-40.290 52.676-40.290 52.520Q-40.290 52.360-40.184 52.255Q-40.509 52.255-40.723 52.483Q-40.938 52.712-41.034 53.051Q-41.130 53.391-41.130 53.696L-41.130 54.969Q-41.130 55.137-40.903 55.184Q-40.677 55.231-40.372 55.231L-40.372 55.528M-39.067 53.774Q-39.067 53.294-38.835 52.878Q-38.602 52.462-38.192 52.212Q-37.782 51.962-37.306 51.962Q-36.575 51.962-36.177 52.403Q-35.778 52.844-35.778 53.575Q-35.778 53.680-35.872 53.704L-38.321 53.704L-38.321 53.774Q-38.321 54.184-38.200 54.540Q-38.079 54.895-37.807 55.112Q-37.536 55.329-37.106 55.329Q-36.743 55.329-36.446 55.100Q-36.149 54.872-36.048 54.520Q-36.040 54.473-35.954 54.458L-35.872 54.458Q-35.778 54.485-35.778 54.567Q-35.778 54.575-35.786 54.606Q-35.848 54.833-35.987 55.016Q-36.126 55.200-36.317 55.333Q-36.509 55.465-36.727 55.536Q-36.946 55.606-37.184 55.606Q-37.556 55.606-37.893 55.469Q-38.231 55.333-38.499 55.081Q-38.766 54.829-38.917 54.489Q-39.067 54.149-39.067 53.774M-38.313 53.465L-36.352 53.465Q-36.352 53.161-36.454 52.870Q-36.556 52.579-36.772 52.397Q-36.989 52.215-37.306 52.215Q-37.606 52.215-37.837 52.403Q-38.067 52.590-38.190 52.882Q-38.313 53.173-38.313 53.465M-35.247 53.801Q-35.247 53.305-34.997 52.880Q-34.747 52.454-34.327 52.208Q-33.907 51.962-33.407 51.962Q-32.868 51.962-32.477 52.087Q-32.087 52.212-32.087 52.626Q-32.087 52.731-32.138 52.823Q-32.188 52.915-32.280 52.965Q-32.372 53.016-32.481 53.016Q-32.587 53.016-32.679 52.965Q-32.770 52.915-32.821 52.823Q-32.872 52.731-32.872 52.626Q-32.872 52.403-32.704 52.298Q-32.927 52.239-33.399 52.239Q-33.696 52.239-33.911 52.378Q-34.126 52.516-34.257 52.747Q-34.388 52.977-34.446 53.247Q-34.505 53.516-34.505 53.801Q-34.505 54.196-34.372 54.546Q-34.239 54.895-33.968 55.112Q-33.696 55.329-33.298 55.329Q-32.923 55.329-32.647 55.112Q-32.372 54.895-32.270 54.536Q-32.255 54.473-32.192 54.473L-32.087 54.473Q-32.052 54.473-32.026 54.501Q-32.001 54.528-32.001 54.567L-32.001 54.590Q-32.134 55.071-32.518 55.339Q-32.903 55.606-33.407 55.606Q-33.770 55.606-34.104 55.469Q-34.438 55.333-34.698 55.083Q-34.958 54.833-35.102 54.497Q-35.247 54.161-35.247 53.801M-31.415 54.696Q-31.415 54.212-31.013 53.917Q-30.610 53.622-30.059 53.503Q-29.509 53.383-29.016 53.383L-29.016 53.094Q-29.016 52.868-29.132 52.661Q-29.247 52.454-29.444 52.335Q-29.641 52.215-29.872 52.215Q-30.298 52.215-30.583 52.321Q-30.513 52.348-30.466 52.403Q-30.419 52.458-30.393 52.528Q-30.368 52.598-30.368 52.673Q-30.368 52.778-30.419 52.870Q-30.470 52.962-30.561 53.012Q-30.653 53.063-30.759 53.063Q-30.864 53.063-30.956 53.012Q-31.048 52.962-31.098 52.870Q-31.149 52.778-31.149 52.673Q-31.149 52.255-30.761 52.108Q-30.372 51.962-29.872 51.962Q-29.540 51.962-29.186 52.092Q-28.833 52.223-28.604 52.477Q-28.376 52.731-28.376 53.079L-28.376 54.880Q-28.376 55.012-28.304 55.122Q-28.231 55.231-28.102 55.231Q-27.977 55.231-27.909 55.126Q-27.841 55.020-27.841 54.880L-27.841 54.368L-27.559 54.368L-27.559 54.880Q-27.559 55.083-27.677 55.241Q-27.794 55.399-27.975 55.483Q-28.157 55.567-28.360 55.567Q-28.591 55.567-28.743 55.395Q-28.895 55.223-28.927 54.993Q-29.087 55.274-29.395 55.440Q-29.704 55.606-30.056 55.606Q-30.567 55.606-30.991 55.383Q-31.415 55.161-31.415 54.696M-30.727 54.696Q-30.727 54.981-30.501 55.167Q-30.274 55.352-29.981 55.352Q-29.735 55.352-29.511 55.235Q-29.286 55.118-29.151 54.915Q-29.016 54.712-29.016 54.458L-29.016 53.626Q-29.282 53.626-29.567 53.680Q-29.852 53.735-30.124 53.864Q-30.395 53.993-30.561 54.200Q-30.727 54.407-30.727 54.696M-25.352 55.528L-27.184 55.528L-27.184 55.231Q-26.911 55.231-26.743 55.184Q-26.575 55.137-26.575 54.969L-26.575 50.809Q-26.575 50.594-26.638 50.499Q-26.700 50.403-26.819 50.382Q-26.938 50.360-27.184 50.360L-27.184 50.063L-25.962 49.977L-25.962 54.969Q-25.962 55.137-25.794 55.184Q-25.626 55.231-25.352 55.231L-25.352 55.528M-22.993 55.528L-24.825 55.528L-24.825 55.231Q-24.552 55.231-24.384 55.184Q-24.216 55.137-24.216 54.969L-24.216 50.809Q-24.216 50.594-24.278 50.499Q-24.341 50.403-24.460 50.382Q-24.579 50.360-24.825 50.360L-24.825 50.063L-23.602 49.977L-23.602 54.969Q-23.602 55.137-23.434 55.184Q-23.266 55.231-22.993 55.231\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-42.618 55.528V-55.683\"\u002F>\u003Cpath stroke=\"none\" d=\"m-42.618-58.283-2.08 4.16 2.08-1.56 2.08 1.56\"\u002F>\u003Cg transform=\"translate(-16.319 -119.1)\">\u003Cpath d=\"M-40.497 57.079L-42.352 57.079L-42.352 56.786Q-42.083 56.786-41.915 56.741Q-41.747 56.696-41.747 56.520L-41.747 52.696Q-41.747 52.489-41.903 52.436Q-42.059 52.383-42.352 52.383L-42.352 52.087L-41.130 52.001L-41.130 52.465Q-40.899 52.243-40.585 52.122Q-40.270 52.001-39.931 52.001Q-39.458 52.001-39.054 52.247Q-38.649 52.493-38.417 52.909Q-38.184 53.325-38.184 53.801Q-38.184 54.176-38.333 54.505Q-38.481 54.833-38.751 55.085Q-39.020 55.337-39.364 55.471Q-39.708 55.606-40.067 55.606Q-40.356 55.606-40.628 55.485Q-40.899 55.364-41.106 55.153L-41.106 56.520Q-41.106 56.696-40.938 56.741Q-40.770 56.786-40.497 56.786L-40.497 57.079M-41.106 52.864L-41.106 54.704Q-40.954 54.993-40.692 55.173Q-40.431 55.352-40.122 55.352Q-39.837 55.352-39.614 55.214Q-39.391 55.075-39.239 54.844Q-39.087 54.614-39.009 54.342Q-38.931 54.071-38.931 53.801Q-38.931 53.469-39.056 53.112Q-39.181 52.755-39.429 52.518Q-39.677 52.282-40.024 52.282Q-40.348 52.282-40.643 52.438Q-40.938 52.594-41.106 52.864M-35.653 55.528L-37.634 55.528L-37.634 55.231Q-37.364 55.231-37.196 55.186Q-37.028 55.141-37.028 54.969L-37.028 52.833Q-37.028 52.618-37.091 52.522Q-37.153 52.426-37.270 52.405Q-37.388 52.383-37.634 52.383L-37.634 52.087L-36.466 52.001L-36.466 52.786Q-36.388 52.575-36.235 52.389Q-36.083 52.204-35.884 52.102Q-35.684 52.001-35.458 52.001Q-35.212 52.001-35.020 52.145Q-34.829 52.290-34.829 52.520Q-34.829 52.676-34.934 52.786Q-35.040 52.895-35.196 52.895Q-35.352 52.895-35.462 52.786Q-35.571 52.676-35.571 52.520Q-35.571 52.360-35.466 52.255Q-35.790 52.255-36.005 52.483Q-36.220 52.712-36.315 53.051Q-36.411 53.391-36.411 53.696L-36.411 54.969Q-36.411 55.137-36.184 55.184Q-35.958 55.231-35.653 55.231L-35.653 55.528M-34.348 53.774Q-34.348 53.294-34.116 52.878Q-33.884 52.462-33.473 52.212Q-33.063 51.962-32.587 51.962Q-31.856 51.962-31.458 52.403Q-31.059 52.844-31.059 53.575Q-31.059 53.680-31.153 53.704L-33.602 53.704L-33.602 53.774Q-33.602 54.184-33.481 54.540Q-33.360 54.895-33.089 55.112Q-32.817 55.329-32.388 55.329Q-32.024 55.329-31.727 55.100Q-31.431 54.872-31.329 54.520Q-31.321 54.473-31.235 54.458L-31.153 54.458Q-31.059 54.485-31.059 54.567Q-31.059 54.575-31.067 54.606Q-31.130 54.833-31.268 55.016Q-31.407 55.200-31.598 55.333Q-31.790 55.465-32.009 55.536Q-32.227 55.606-32.466 55.606Q-32.837 55.606-33.175 55.469Q-33.513 55.333-33.780 55.081Q-34.048 54.829-34.198 54.489Q-34.348 54.149-34.348 53.774M-33.595 53.465L-31.634 53.465Q-31.634 53.161-31.735 52.870Q-31.837 52.579-32.054 52.397Q-32.270 52.215-32.587 52.215Q-32.888 52.215-33.118 52.403Q-33.348 52.590-33.472 52.882Q-33.595 53.173-33.595 53.465M-30.528 53.801Q-30.528 53.305-30.278 52.880Q-30.028 52.454-29.608 52.208Q-29.188 51.962-28.688 51.962Q-28.149 51.962-27.759 52.087Q-27.368 52.212-27.368 52.626Q-27.368 52.731-27.419 52.823Q-27.470 52.915-27.561 52.965Q-27.653 53.016-27.763 53.016Q-27.868 53.016-27.960 52.965Q-28.052 52.915-28.102 52.823Q-28.153 52.731-28.153 52.626Q-28.153 52.403-27.985 52.298Q-28.208 52.239-28.681 52.239Q-28.977 52.239-29.192 52.378Q-29.407 52.516-29.538 52.747Q-29.669 52.977-29.727 53.247Q-29.786 53.516-29.786 53.801Q-29.786 54.196-29.653 54.546Q-29.520 54.895-29.249 55.112Q-28.977 55.329-28.579 55.329Q-28.204 55.329-27.929 55.112Q-27.653 54.895-27.552 54.536Q-27.536 54.473-27.473 54.473L-27.368 54.473Q-27.333 54.473-27.307 54.501Q-27.282 54.528-27.282 54.567L-27.282 54.590Q-27.415 55.071-27.800 55.339Q-28.184 55.606-28.688 55.606Q-29.052 55.606-29.386 55.469Q-29.720 55.333-29.979 55.083Q-30.239 54.833-30.384 54.497Q-30.528 54.161-30.528 53.801M-24.934 55.528L-26.712 55.528L-26.712 55.231Q-26.438 55.231-26.270 55.184Q-26.102 55.137-26.102 54.969L-26.102 52.833Q-26.102 52.618-26.159 52.522Q-26.216 52.426-26.329 52.405Q-26.442 52.383-26.688 52.383L-26.688 52.087L-25.489 52.001L-25.489 54.969Q-25.489 55.137-25.343 55.184Q-25.196 55.231-24.934 55.231L-24.934 55.528M-26.376 50.606Q-26.376 50.415-26.241 50.284Q-26.106 50.153-25.911 50.153Q-25.790 50.153-25.686 50.215Q-25.583 50.278-25.520 50.382Q-25.458 50.485-25.458 50.606Q-25.458 50.801-25.589 50.936Q-25.720 51.071-25.911 51.071Q-26.110 51.071-26.243 50.938Q-26.376 50.805-26.376 50.606M-24.391 55.520L-24.391 54.298Q-24.391 54.270-24.360 54.239Q-24.329 54.208-24.306 54.208L-24.200 54.208Q-24.130 54.208-24.114 54.270Q-24.052 54.590-23.913 54.831Q-23.774 55.071-23.542 55.212Q-23.309 55.352-23.001 55.352Q-22.763 55.352-22.554 55.292Q-22.345 55.231-22.208 55.083Q-22.071 54.934-22.071 54.688Q-22.071 54.434-22.282 54.268Q-22.493 54.102-22.763 54.048L-23.384 53.934Q-23.790 53.856-24.091 53.600Q-24.391 53.344-24.391 52.969Q-24.391 52.602-24.190 52.380Q-23.989 52.157-23.665 52.059Q-23.341 51.962-23.001 51.962Q-22.536 51.962-22.239 52.169L-22.016 51.985Q-21.993 51.962-21.962 51.962L-21.911 51.962Q-21.880 51.962-21.852 51.989Q-21.825 52.016-21.825 52.048L-21.825 53.032Q-21.825 53.063-21.850 53.092Q-21.876 53.122-21.911 53.122L-22.016 53.122Q-22.052 53.122-22.079 53.094Q-22.106 53.067-22.106 53.032Q-22.106 52.633-22.358 52.413Q-22.610 52.192-23.009 52.192Q-23.364 52.192-23.647 52.315Q-23.931 52.438-23.931 52.743Q-23.931 52.962-23.729 53.094Q-23.528 53.227-23.282 53.270L-22.657 53.383Q-22.227 53.473-21.919 53.770Q-21.610 54.067-21.610 54.481Q-21.610 55.051-22.009 55.329Q-22.407 55.606-23.001 55.606Q-23.552 55.606-23.903 55.270L-24.200 55.583Q-24.223 55.606-24.259 55.606L-24.306 55.606Q-24.329 55.606-24.360 55.575Q-24.391 55.544-24.391 55.520M-19.223 55.528L-21.001 55.528L-21.001 55.231Q-20.727 55.231-20.559 55.184Q-20.391 55.137-20.391 54.969L-20.391 52.833Q-20.391 52.618-20.448 52.522Q-20.505 52.426-20.618 52.405Q-20.731 52.383-20.977 52.383L-20.977 52.087L-19.778 52.001L-19.778 54.969Q-19.778 55.137-19.632 55.184Q-19.485 55.231-19.223 55.231L-19.223 55.528M-20.665 50.606Q-20.665 50.415-20.530 50.284Q-20.395 50.153-20.200 50.153Q-20.079 50.153-19.975 50.215Q-19.872 50.278-19.809 50.382Q-19.747 50.485-19.747 50.606Q-19.747 50.801-19.878 50.936Q-20.009 51.071-20.200 51.071Q-20.399 51.071-20.532 50.938Q-20.665 50.805-20.665 50.606M-18.723 53.833Q-18.723 53.329-18.468 52.897Q-18.212 52.465-17.776 52.214Q-17.341 51.962-16.841 51.962Q-16.454 51.962-16.112 52.106Q-15.770 52.251-15.509 52.512Q-15.247 52.774-15.104 53.110Q-14.962 53.446-14.962 53.833Q-14.962 54.325-15.225 54.735Q-15.489 55.145-15.919 55.376Q-16.348 55.606-16.841 55.606Q-17.333 55.606-17.766 55.374Q-18.200 55.141-18.462 54.733Q-18.723 54.325-18.723 53.833M-16.841 55.329Q-16.384 55.329-16.132 55.106Q-15.880 54.883-15.792 54.532Q-15.704 54.180-15.704 53.735Q-15.704 53.305-15.798 52.967Q-15.891 52.630-16.145 52.423Q-16.399 52.215-16.841 52.215Q-17.489 52.215-17.733 52.632Q-17.977 53.048-17.977 53.735Q-17.977 54.180-17.889 54.532Q-17.802 54.883-17.550 55.106Q-17.298 55.329-16.841 55.329M-12.548 55.528L-14.403 55.528L-14.403 55.231Q-14.130 55.231-13.962 55.184Q-13.794 55.137-13.794 54.969L-13.794 52.833Q-13.794 52.618-13.856 52.522Q-13.919 52.426-14.038 52.405Q-14.157 52.383-14.403 52.383L-14.403 52.087L-13.212 52.001L-13.212 52.735Q-13.098 52.520-12.905 52.352Q-12.712 52.184-12.473 52.092Q-12.235 52.001-11.981 52.001Q-10.813 52.001-10.813 53.079L-10.813 54.969Q-10.813 55.137-10.643 55.184Q-10.473 55.231-10.204 55.231L-10.204 55.528L-12.059 55.528L-12.059 55.231Q-11.786 55.231-11.618 55.184Q-11.450 55.137-11.450 54.969L-11.450 53.094Q-11.450 52.712-11.571 52.483Q-11.692 52.255-12.044 52.255Q-12.356 52.255-12.610 52.417Q-12.864 52.579-13.011 52.848Q-13.157 53.118-13.157 53.415L-13.157 54.969Q-13.157 55.137-12.987 55.184Q-12.817 55.231-12.548 55.231\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-9.206 -97.007)\">\u003Cpath d=\"M-39.024 55.528L-41.817 55.528L-41.817 55.231Q-40.755 55.231-40.755 54.969L-40.755 50.801Q-41.184 51.016-41.864 51.016L-41.864 50.719Q-40.845 50.719-40.329 50.208L-40.184 50.208Q-40.110 50.227-40.091 50.305L-40.091 54.969Q-40.091 55.231-39.024 55.231\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(140.139 10.111)\">\u003Cpath d=\"M-39.024 55.528L-41.817 55.528L-41.817 55.231Q-40.755 55.231-40.755 54.969L-40.755 50.801Q-41.184 51.016-41.864 51.016L-41.864 50.719Q-40.845 50.719-40.329 50.208L-40.184 50.208Q-40.110 50.227-40.091 50.305L-40.091 54.969Q-40.091 55.231-39.024 55.231\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-42.618-44.057H99.646M99.646 55.528v-99.585\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m-39.773-45.732 2.363.265 2.363.264 2.362.266 2.363.268 2.363.269 2.362.272 2.363.275 2.363.28 2.362.288 2.363.292 2.363.302 2.362.313 2.363.325 2.363.34 2.362.356 2.363.377 2.363.395 2.362.42 2.363.445 2.363.474 2.362.506 2.363.542 2.363.58 2.362.62 2.363.666 2.363.716 2.362.767 2.363.824 2.363.884 2.362.95 2.363 1.018 2.363 1.091 2.362 1.169 2.363 1.252 2.363 1.34 2.362 1.436 2.363 1.532 2.363 1.636 2.362 1.742 2.363 1.858 2.363 1.98 2.362 2.105 2.363 2.24 2.363 2.377 2.362 2.519 2.363 2.675 2.363 2.828 2.362 2.998 2.363 3.166 2.363 3.346 2.362 3.534 2.363 3.723 2.363 3.928 2.362 4.132 2.363 4.348 2.363 4.577 2.362 4.805 2.363 5.051 2.363 5.294\" style=\"stroke-width:1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(43.367 -76.088)\">\u003Cpath d=\"M-39.884 55.528L-42.266 55.528L-42.266 55.231Q-41.942 55.231-41.700 55.184Q-41.458 55.137-41.458 54.969L-41.458 50.626Q-41.458 50.454-41.700 50.407Q-41.942 50.360-42.266 50.360L-42.266 50.063L-39.321 50.063Q-38.977 50.063-38.622 50.163Q-38.266 50.262-37.972 50.454Q-37.677 50.645-37.495 50.930Q-37.313 51.215-37.313 51.575Q-37.313 52.048-37.624 52.383Q-37.934 52.719-38.399 52.891Q-38.864 53.063-39.321 53.063L-40.688 53.063L-40.688 54.969Q-40.688 55.137-40.446 55.184Q-40.204 55.231-39.884 55.231L-39.884 55.528M-40.716 50.626L-40.716 52.794L-39.540 52.794Q-38.852 52.794-38.514 52.518Q-38.177 52.243-38.177 51.575Q-38.177 50.911-38.514 50.635Q-38.852 50.360-39.540 50.360L-40.313 50.360Q-40.532 50.360-40.624 50.403Q-40.716 50.446-40.716 50.626M-34.130 55.528L-36.489 55.528L-36.489 55.231Q-36.165 55.231-35.923 55.184Q-35.681 55.137-35.681 54.969L-35.681 50.626Q-35.681 50.454-35.923 50.407Q-36.165 50.360-36.489 50.360L-36.489 50.063L-33.895 50.063Q-33.563 50.063-33.177 50.149Q-32.790 50.235-32.442 50.409Q-32.095 50.583-31.876 50.864Q-31.657 51.145-31.657 51.512Q-31.657 51.837-31.858 52.102Q-32.059 52.368-32.366 52.544Q-32.673 52.719-33.001 52.809Q-32.634 52.930-32.374 53.200Q-32.114 53.469-32.063 53.833L-31.970 54.528Q-31.899 54.977-31.802 55.208Q-31.704 55.438-31.407 55.438Q-31.161 55.438-31.028 55.221Q-30.895 55.005-30.895 54.743Q-30.876 54.669-30.794 54.649L-30.712 54.649Q-30.618 54.673-30.618 54.766Q-30.618 54.997-30.716 55.212Q-30.813 55.426-30.991 55.561Q-31.169 55.696-31.399 55.696Q-31.997 55.696-32.415 55.409Q-32.833 55.122-32.833 54.551L-32.833 53.856Q-32.833 53.575-32.985 53.360Q-33.138 53.145-33.388 53.032Q-33.638 52.919-33.911 52.919L-34.938 52.919L-34.938 54.969Q-34.938 55.133-34.694 55.182Q-34.450 55.231-34.130 55.231L-34.130 55.528M-34.938 50.626L-34.938 52.665L-34.009 52.665Q-33.688 52.665-33.421 52.612Q-33.153 52.559-32.954 52.432Q-32.755 52.305-32.638 52.073Q-32.520 51.840-32.520 51.512Q-32.520 50.860-32.917 50.610Q-33.313 50.360-34.009 50.360L-34.536 50.360Q-34.755 50.360-34.847 50.403Q-34.938 50.446-34.938 50.626\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(43.367 -76.088)\">\u003Cpath d=\"M-27.470 53.801Q-27.470 53.305-27.220 52.880Q-26.970 52.454-26.550 52.208Q-26.130 51.962-25.630 51.962Q-25.091 51.962-24.700 52.087Q-24.310 52.212-24.310 52.626Q-24.310 52.731-24.360 52.823Q-24.411 52.915-24.503 52.965Q-24.595 53.016-24.704 53.016Q-24.810 53.016-24.901 52.965Q-24.993 52.915-25.044 52.823Q-25.095 52.731-25.095 52.626Q-25.095 52.403-24.927 52.298Q-25.149 52.239-25.622 52.239Q-25.919 52.239-26.134 52.378Q-26.349 52.516-26.480 52.747Q-26.610 52.977-26.669 53.247Q-26.728 53.516-26.728 53.801Q-26.728 54.196-26.595 54.546Q-26.462 54.895-26.190 55.112Q-25.919 55.329-25.521 55.329Q-25.146 55.329-24.870 55.112Q-24.595 54.895-24.493 54.536Q-24.478 54.473-24.415 54.473L-24.310 54.473Q-24.274 54.473-24.249 54.501Q-24.224 54.528-24.224 54.567L-24.224 54.590Q-24.356 55.071-24.741 55.339Q-25.126 55.606-25.630 55.606Q-25.993 55.606-26.327 55.469Q-26.661 55.333-26.921 55.083Q-27.181 54.833-27.325 54.497Q-27.470 54.161-27.470 53.801M-23.052 54.575L-23.052 52.833Q-23.052 52.618-23.114 52.522Q-23.177 52.426-23.296 52.405Q-23.415 52.383-23.661 52.383L-23.661 52.087L-22.415 52.001L-22.415 54.551L-22.415 54.575Q-22.415 54.887-22.360 55.049Q-22.306 55.212-22.155 55.282Q-22.005 55.352-21.685 55.352Q-21.255 55.352-20.981 55.014Q-20.708 54.676-20.708 54.231L-20.708 52.833Q-20.708 52.618-20.771 52.522Q-20.833 52.426-20.952 52.405Q-21.071 52.383-21.317 52.383L-21.317 52.087L-20.071 52.001L-20.071 54.786Q-20.071 54.997-20.009 55.092Q-19.946 55.188-19.827 55.210Q-19.708 55.231-19.462 55.231L-19.462 55.528L-20.685 55.606L-20.685 54.985Q-20.853 55.274-21.134 55.440Q-21.415 55.606-21.735 55.606Q-23.052 55.606-23.052 54.575M-17.009 55.528L-18.989 55.528L-18.989 55.231Q-18.720 55.231-18.552 55.186Q-18.384 55.141-18.384 54.969L-18.384 52.833Q-18.384 52.618-18.446 52.522Q-18.509 52.426-18.626 52.405Q-18.743 52.383-18.989 52.383L-18.989 52.087L-17.821 52.001L-17.821 52.786Q-17.743 52.575-17.591 52.389Q-17.439 52.204-17.239 52.102Q-17.040 52.001-16.814 52.001Q-16.567 52.001-16.376 52.145Q-16.185 52.290-16.185 52.520Q-16.185 52.676-16.290 52.786Q-16.396 52.895-16.552 52.895Q-16.708 52.895-16.817 52.786Q-16.927 52.676-16.927 52.520Q-16.927 52.360-16.821 52.255Q-17.146 52.255-17.360 52.483Q-17.575 52.712-17.671 53.051Q-17.767 53.391-17.767 53.696L-17.767 54.969Q-17.767 55.137-17.540 55.184Q-17.314 55.231-17.009 55.231L-17.009 55.528M-13.903 55.497L-15.126 52.641Q-15.208 52.465-15.353 52.421Q-15.497 52.376-15.767 52.376L-15.767 52.079L-14.056 52.079L-14.056 52.376Q-14.478 52.376-14.478 52.559Q-14.478 52.594-14.462 52.641L-13.517 54.833L-12.677 52.856Q-12.638 52.778-12.638 52.688Q-12.638 52.548-12.743 52.462Q-12.849 52.376-12.989 52.376L-12.989 52.079L-11.638 52.079L-11.638 52.376Q-12.161 52.376-12.376 52.856L-13.501 55.497Q-13.564 55.606-13.669 55.606L-13.735 55.606Q-13.849 55.606-13.903 55.497\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(43.367 -76.088)\">\u003Cpath d=\"M-11.450 53.774Q-11.450 53.294-11.217 52.878Q-10.985 52.462-10.575 52.212Q-10.165 51.962-9.688 51.962Q-8.958 51.962-8.559 52.403Q-8.161 52.844-8.161 53.575Q-8.161 53.680-8.254 53.704L-10.704 53.704L-10.704 53.774Q-10.704 54.184-10.583 54.540Q-10.461 54.895-10.190 55.112Q-9.918 55.329-9.489 55.329Q-9.126 55.329-8.829 55.100Q-8.532 54.872-8.430 54.520Q-8.422 54.473-8.336 54.458L-8.254 54.458Q-8.161 54.485-8.161 54.567Q-8.161 54.575-8.168 54.606Q-8.231 54.833-8.370 55.016Q-8.508 55.200-8.700 55.333Q-8.891 55.465-9.110 55.536Q-9.329 55.606-9.567 55.606Q-9.938 55.606-10.276 55.469Q-10.614 55.333-10.881 55.081Q-11.149 54.829-11.299 54.489Q-11.450 54.149-11.450 53.774M-10.696 53.465L-8.735 53.465Q-8.735 53.161-8.836 52.870Q-8.938 52.579-9.155 52.397Q-9.372 52.215-9.688 52.215Q-9.989 52.215-10.219 52.403Q-10.450 52.590-10.573 52.882Q-10.696 53.173-10.696 53.465\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-warn)\" stroke=\"none\" d=\"M45.34-26.424a2.6 2.6 0 1 0-5.2 0 2.6 2.6 0 0 0 5.2 0m-2.6 0\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-warn)\" d=\"M42.74-26.424 59.812 7.158\"\u002F>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\">\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(105.963 -42.428)\">\u003Cpath d=\"M-42.345 54.045Q-42.345 53.703-42.210 53.404Q-42.075 53.105-41.835 52.881Q-41.596 52.657-41.278 52.532Q-40.960 52.407-40.629 52.407Q-40.184 52.407-39.785 52.623Q-39.385 52.838-39.150 53.216Q-38.916 53.593-38.916 54.045Q-38.916 54.386-39.058 54.670Q-39.200 54.954-39.444 55.161Q-39.689 55.367-39.998 55.482Q-40.307 55.596-40.629 55.596Q-41.059 55.596-41.461 55.395Q-41.863 55.193-42.104 54.841Q-42.345 54.489-42.345 54.045M-40.629 55.347Q-40.027 55.347-39.803 54.969Q-39.579 54.591-39.579 53.959Q-39.579 53.347-39.814 52.988Q-40.048 52.630-40.629 52.630Q-41.681 52.630-41.681 53.959Q-41.681 54.591-41.456 54.969Q-41.230 55.347-40.629 55.347M-36.678 56.885L-38.308 56.885L-38.308 56.605Q-38.079 56.605-37.930 56.570Q-37.782 56.536-37.782 56.396L-37.782 53.050Q-37.782 52.879-37.918 52.838Q-38.055 52.797-38.308 52.797L-38.308 52.517L-37.228 52.442L-37.228 52.848Q-37.006 52.647-36.719 52.544Q-36.431 52.442-36.124 52.442Q-35.697 52.442-35.333 52.655Q-34.969 52.869-34.755 53.233Q-34.541 53.597-34.541 54.017Q-34.541 54.462-34.781 54.826Q-35.020 55.190-35.413 55.393Q-35.806 55.596-36.250 55.596Q-36.517 55.596-36.765 55.496Q-37.013 55.395-37.201 55.214L-37.201 56.396Q-37.201 56.533-37.052 56.569Q-36.903 56.605-36.678 56.605L-36.678 56.885M-37.201 53.197L-37.201 54.807Q-37.067 55.060-36.825 55.217Q-36.582 55.374-36.305 55.374Q-35.977 55.374-35.724 55.173Q-35.471 54.971-35.338 54.653Q-35.204 54.335-35.204 54.017Q-35.204 53.788-35.269 53.559Q-35.334 53.330-35.462 53.132Q-35.591 52.934-35.785 52.814Q-35.980 52.695-36.213 52.695Q-36.507 52.695-36.775 52.824Q-37.043 52.954-37.201 53.197\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -42.428)\">\u003Cpath d=\"M-33.727 53.993Q-33.727 53.672-33.602 53.383Q-33.477 53.094-33.251 52.871Q-33.026 52.647-32.730 52.527Q-32.435 52.407-32.117 52.407Q-31.789 52.407-31.527 52.507Q-31.266 52.606-31.090 52.788Q-30.914 52.971-30.820 53.229Q-30.726 53.487-30.726 53.819Q-30.726 53.911-30.808 53.932L-33.063 53.932L-33.063 53.993Q-33.063 54.581-32.780 54.964Q-32.496 55.347-31.929 55.347Q-31.607 55.347-31.339 55.154Q-31.071 54.961-30.982 54.646Q-30.975 54.605-30.900 54.591L-30.808 54.591Q-30.726 54.615-30.726 54.687Q-30.726 54.694-30.732 54.721Q-30.845 55.118-31.216 55.357Q-31.587 55.596-32.011 55.596Q-32.448 55.596-32.848 55.388Q-33.248 55.179-33.487 54.812Q-33.727 54.445-33.727 53.993M-33.057 53.723L-31.242 53.723Q-31.242 53.446-31.339 53.194Q-31.437 52.941-31.635 52.785Q-31.833 52.630-32.117 52.630Q-32.394 52.630-32.607 52.788Q-32.821 52.947-32.939 53.202Q-33.057 53.457-33.057 53.723M-28.388 55.528L-30.124 55.528L-30.124 55.248Q-29.895 55.248-29.746 55.214Q-29.598 55.179-29.598 55.039L-29.598 53.190Q-29.598 52.920-29.705 52.859Q-29.813 52.797-30.124 52.797L-30.124 52.517L-29.095 52.442L-29.095 53.149Q-28.965 52.841-28.723 52.642Q-28.480 52.442-28.162 52.442Q-27.943 52.442-27.772 52.566Q-27.602 52.691-27.602 52.903Q-27.602 53.040-27.701 53.139Q-27.800 53.238-27.933 53.238Q-28.070 53.238-28.169 53.139Q-28.268 53.040-28.268 52.903Q-28.268 52.763-28.169 52.664Q-28.459 52.664-28.659 52.860Q-28.859 53.057-28.952 53.351Q-29.044 53.645-29.044 53.925L-29.044 55.039Q-29.044 55.248-28.388 55.248L-28.388 55.528M-26.959 54.800Q-26.959 54.468-26.735 54.241Q-26.511 54.014-26.168 53.886Q-25.824 53.757-25.452 53.705Q-25.079 53.652-24.775 53.652L-24.775 53.399Q-24.775 53.194-24.883 53.014Q-24.990 52.835-25.171 52.732Q-25.353 52.630-25.561 52.630Q-25.968 52.630-26.204 52.722Q-26.115 52.759-26.069 52.843Q-26.022 52.927-26.022 53.029Q-26.022 53.125-26.069 53.204Q-26.115 53.282-26.195 53.327Q-26.275 53.371-26.364 53.371Q-26.515 53.371-26.615 53.274Q-26.716 53.176-26.716 53.029Q-26.716 52.407-25.561 52.407Q-25.349 52.407-25.100 52.471Q-24.850 52.534-24.648 52.653Q-24.447 52.773-24.320 52.958Q-24.194 53.142-24.194 53.385L-24.194 54.961Q-24.194 55.077-24.132 55.173Q-24.071 55.268-23.958 55.268Q-23.849 55.268-23.784 55.174Q-23.719 55.080-23.719 54.961L-23.719 54.513L-23.452 54.513L-23.452 54.961Q-23.452 55.231-23.679 55.396Q-23.907 55.562-24.187 55.562Q-24.396 55.562-24.532 55.408Q-24.669 55.255-24.693 55.039Q-24.840 55.306-25.122 55.451Q-25.404 55.596-25.729 55.596Q-26.005 55.596-26.289 55.521Q-26.573 55.446-26.766 55.267Q-26.959 55.087-26.959 54.800M-26.344 54.800Q-26.344 54.974-26.243 55.104Q-26.142 55.234-25.987 55.304Q-25.831 55.374-25.667 55.374Q-25.448 55.374-25.240 55.277Q-25.031 55.179-24.903 54.998Q-24.775 54.817-24.775 54.591L-24.775 53.863Q-25.100 53.863-25.465 53.954Q-25.831 54.045-26.087 54.257Q-26.344 54.468-26.344 54.800M-22.509 54.687L-22.509 52.790L-23.148 52.790L-23.148 52.568Q-22.830 52.568-22.613 52.358Q-22.396 52.148-22.295 51.838Q-22.194 51.529-22.194 51.221L-21.928 51.221L-21.928 52.510L-20.851 52.510L-20.851 52.790L-21.928 52.790L-21.928 54.674Q-21.928 54.950-21.823 55.149Q-21.719 55.347-21.459 55.347Q-21.302 55.347-21.196 55.243Q-21.090 55.138-21.041 54.985Q-20.991 54.831-20.991 54.674L-20.991 54.260L-20.725 54.260L-20.725 54.687Q-20.725 54.913-20.824 55.123Q-20.923 55.333-21.107 55.465Q-21.292 55.596-21.521 55.596Q-21.958 55.596-22.234 55.359Q-22.509 55.121-22.509 54.687M-18.298 55.528L-19.850 55.528L-19.850 55.248Q-19.624 55.248-19.475 55.214Q-19.327 55.179-19.327 55.039L-19.327 53.190Q-19.327 53.002-19.375 52.918Q-19.422 52.835-19.520 52.816Q-19.617 52.797-19.829 52.797L-19.829 52.517L-18.773 52.442L-18.773 55.039Q-18.773 55.179-18.641 55.214Q-18.510 55.248-18.298 55.248L-18.298 55.528M-19.569 51.221Q-19.569 51.050-19.446 50.931Q-19.323 50.811-19.152 50.811Q-18.985 50.811-18.862 50.931Q-18.739 51.050-18.739 51.221Q-18.739 51.396-18.862 51.519Q-18.985 51.642-19.152 51.642Q-19.323 51.642-19.446 51.519Q-19.569 51.396-19.569 51.221M-15.970 55.528L-17.604 55.528L-17.604 55.248Q-17.375 55.248-17.226 55.214Q-17.078 55.179-17.078 55.039L-17.078 53.190Q-17.078 52.920-17.185 52.859Q-17.293 52.797-17.604 52.797L-17.604 52.517L-16.544 52.442L-16.544 53.091Q-16.374 52.783-16.069 52.612Q-15.765 52.442-15.420 52.442Q-14.914 52.442-14.630 52.665Q-14.347 52.889-14.347 53.385L-14.347 55.039Q-14.347 55.176-14.198 55.212Q-14.049 55.248-13.824 55.248L-13.824 55.528L-15.454 55.528L-15.454 55.248Q-15.225 55.248-15.076 55.214Q-14.928 55.179-14.928 55.039L-14.928 53.399Q-14.928 53.064-15.047 52.864Q-15.167 52.664-15.481 52.664Q-15.751 52.664-15.986 52.800Q-16.220 52.937-16.358 53.171Q-16.497 53.405-16.497 53.679L-16.497 55.039Q-16.497 55.176-16.346 55.212Q-16.196 55.248-15.970 55.248L-15.970 55.528M-13.277 56.061Q-13.277 55.815-13.080 55.631Q-12.884 55.446-12.627 55.367Q-12.764 55.255-12.836 55.094Q-12.908 54.933-12.908 54.752Q-12.908 54.431-12.696 54.185Q-13.031 53.887-13.031 53.477Q-13.031 53.016-12.641 52.729Q-12.251 52.442-11.773 52.442Q-11.301 52.442-10.966 52.688Q-10.792 52.534-10.582 52.452Q-10.372 52.370-10.143 52.370Q-9.979 52.370-9.857 52.477Q-9.736 52.585-9.736 52.749Q-9.736 52.845-9.808 52.917Q-9.879 52.988-9.972 52.988Q-10.071 52.988-10.141 52.915Q-10.211 52.841-10.211 52.742Q-10.211 52.688-10.197 52.657L-10.190 52.643Q-10.184 52.623-10.175 52.612Q-10.167 52.602-10.163 52.595Q-10.519 52.595-10.806 52.818Q-10.519 53.111-10.519 53.477Q-10.519 53.792-10.703 54.024Q-10.888 54.257-11.177 54.385Q-11.465 54.513-11.773 54.513Q-11.975 54.513-12.166 54.463Q-12.357 54.414-12.535 54.304Q-12.627 54.431-12.627 54.574Q-12.627 54.756-12.499 54.891Q-12.371 55.026-12.187 55.026L-11.554 55.026Q-11.106 55.026-10.737 55.097Q-10.368 55.169-10.108 55.398Q-9.849 55.627-9.849 56.061Q-9.849 56.382-10.144 56.584Q-10.440 56.786-10.843 56.875Q-11.247 56.964-11.561 56.964Q-11.879 56.964-12.282 56.875Q-12.686 56.786-12.981 56.584Q-13.277 56.382-13.277 56.061M-12.822 56.061Q-12.822 56.290-12.604 56.439Q-12.385 56.588-12.093 56.656Q-11.800 56.724-11.561 56.724Q-11.397 56.724-11.188 56.688Q-10.980 56.653-10.773 56.572Q-10.566 56.492-10.435 56.364Q-10.303 56.236-10.303 56.061Q-10.303 55.709-10.684 55.615Q-11.065 55.521-11.568 55.521L-12.187 55.521Q-12.426 55.521-12.624 55.672Q-12.822 55.822-12.822 56.061M-11.773 54.274Q-11.106 54.274-11.106 53.477Q-11.106 52.677-11.773 52.677Q-12.443 52.677-12.443 53.477Q-12.443 54.274-11.773 54.274\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -42.428)\">\u003Cpath d=\"M-4.889 56.885L-6.519 56.885L-6.519 56.605Q-6.290 56.605-6.141 56.570Q-5.993 56.536-5.993 56.396L-5.993 53.050Q-5.993 52.879-6.129 52.838Q-6.266 52.797-6.519 52.797L-6.519 52.517L-5.439 52.442L-5.439 52.848Q-5.217 52.647-4.930 52.544Q-4.642 52.442-4.335 52.442Q-3.908 52.442-3.544 52.655Q-3.180 52.869-2.966 53.233Q-2.752 53.597-2.752 54.017Q-2.752 54.462-2.992 54.826Q-3.231 55.190-3.624 55.393Q-4.017 55.596-4.461 55.596Q-4.728 55.596-4.976 55.496Q-5.223 55.395-5.411 55.214L-5.411 56.396Q-5.411 56.533-5.263 56.569Q-5.114 56.605-4.889 56.605L-4.889 56.885M-5.411 53.197L-5.411 54.807Q-5.278 55.060-5.035 55.217Q-4.793 55.374-4.516 55.374Q-4.188 55.374-3.935 55.173Q-3.682 54.971-3.549 54.653Q-3.415 54.335-3.415 54.017Q-3.415 53.788-3.480 53.559Q-3.545 53.330-3.673 53.132Q-3.802 52.934-3.996 52.814Q-4.191 52.695-4.424 52.695Q-4.718 52.695-4.986 52.824Q-5.254 52.954-5.411 53.197\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -42.428)\">\u003Cpath d=\"M-1.942 54.045Q-1.942 53.703-1.807 53.404Q-1.672 53.105-1.432 52.881Q-1.193 52.657-0.875 52.532Q-0.557 52.407-0.226 52.407Q0.219 52.407 0.618 52.623Q1.018 52.838 1.253 53.216Q1.487 53.593 1.487 54.045Q1.487 54.386 1.345 54.670Q1.203 54.954 0.959 55.161Q0.714 55.367 0.405 55.482Q0.096 55.596-0.226 55.596Q-0.656 55.596-1.058 55.395Q-1.460 55.193-1.701 54.841Q-1.942 54.489-1.942 54.045M-0.226 55.347Q0.376 55.347 0.600 54.969Q0.824 54.591 0.824 53.959Q0.824 53.347 0.589 52.988Q0.355 52.630-0.226 52.630Q-1.278 52.630-1.278 53.959Q-1.278 54.591-1.053 54.969Q-0.827 55.347-0.226 55.347M3.698 55.528L2.146 55.528L2.146 55.248Q2.372 55.248 2.521 55.214Q2.669 55.179 2.669 55.039L2.669 53.190Q2.669 53.002 2.621 52.918Q2.574 52.835 2.476 52.816Q2.379 52.797 2.167 52.797L2.167 52.517L3.223 52.442L3.223 55.039Q3.223 55.179 3.355 55.214Q3.486 55.248 3.698 55.248L3.698 55.528M2.427 51.221Q2.427 51.050 2.550 50.931Q2.673 50.811 2.844 50.811Q3.011 50.811 3.134 50.931Q3.257 51.050 3.257 51.221Q3.257 51.396 3.134 51.519Q3.011 51.642 2.844 51.642Q2.673 51.642 2.550 51.519Q2.427 51.396 2.427 51.221M6.026 55.528L4.392 55.528L4.392 55.248Q4.621 55.248 4.770 55.214Q4.918 55.179 4.918 55.039L4.918 53.190Q4.918 52.920 4.811 52.859Q4.703 52.797 4.392 52.797L4.392 52.517L5.452 52.442L5.452 53.091Q5.622 52.783 5.927 52.612Q6.231 52.442 6.576 52.442Q7.082 52.442 7.366 52.665Q7.649 52.889 7.649 53.385L7.649 55.039Q7.649 55.176 7.798 55.212Q7.947 55.248 8.172 55.248L8.172 55.528L6.542 55.528L6.542 55.248Q6.771 55.248 6.920 55.214Q7.068 55.179 7.068 55.039L7.068 53.399Q7.068 53.064 6.949 52.864Q6.829 52.664 6.514 52.664Q6.244 52.664 6.010 52.800Q5.776 52.937 5.638 53.171Q5.499 53.405 5.499 53.679L5.499 55.039Q5.499 55.176 5.650 55.212Q5.800 55.248 6.026 55.248\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.963 -42.428)\">\u003Cpath d=\"M9.077 54.687L9.077 52.790L8.438 52.790L8.438 52.568Q8.756 52.568 8.973 52.358Q9.190 52.148 9.290 51.838Q9.391 51.529 9.391 51.221L9.658 51.221L9.658 52.510L10.735 52.510L10.735 52.790L9.658 52.790L9.658 54.674Q9.658 54.950 9.762 55.149Q9.866 55.347 10.126 55.347Q10.283 55.347 10.389 55.243Q10.495 55.138 10.545 54.985Q10.594 54.831 10.594 54.674L10.594 54.260L10.861 54.260L10.861 54.687Q10.861 54.913 10.762 55.123Q10.663 55.333 10.478 55.465Q10.294 55.596 10.065 55.596Q9.627 55.596 9.352 55.359Q9.077 55.121 9.077 54.687\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m-14.165 44.147-11.868-22.418\"\u002F>\u003Cpath stroke=\"none\" d=\"m-26.969 19.962.083 3.576.853-1.809 1.975.312\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(33.408 -10.45)\">\u003Cpath d=\"M-40.554 55.528L-42.290 55.528L-42.290 55.248Q-42.061 55.248-41.912 55.214Q-41.764 55.179-41.764 55.039L-41.764 53.190Q-41.764 52.920-41.871 52.859Q-41.979 52.797-42.290 52.797L-42.290 52.517L-41.261 52.442L-41.261 53.149Q-41.131 52.841-40.889 52.642Q-40.646 52.442-40.328 52.442Q-40.109 52.442-39.938 52.566Q-39.767 52.691-39.767 52.903Q-39.767 53.040-39.867 53.139Q-39.966 53.238-40.099 53.238Q-40.236 53.238-40.335 53.139Q-40.434 53.040-40.434 52.903Q-40.434 52.763-40.335 52.664Q-40.625 52.664-40.825 52.860Q-41.025 53.057-41.118 53.351Q-41.210 53.645-41.210 53.925L-41.210 55.039Q-41.210 55.248-40.554 55.248L-40.554 55.528M-39.125 54.800Q-39.125 54.468-38.901 54.241Q-38.677 54.014-38.334 53.886Q-37.990 53.757-37.618 53.705Q-37.245 53.652-36.941 53.652L-36.941 53.399Q-36.941 53.194-37.048 53.014Q-37.156 52.835-37.337 52.732Q-37.518 52.630-37.727 52.630Q-38.134 52.630-38.369 52.722Q-38.281 52.759-38.234 52.843Q-38.188 52.927-38.188 53.029Q-38.188 53.125-38.234 53.204Q-38.281 53.282-38.361 53.327Q-38.441 53.371-38.530 53.371Q-38.681 53.371-38.781 53.274Q-38.882 53.176-38.882 53.029Q-38.882 52.407-37.727 52.407Q-37.515 52.407-37.265 52.471Q-37.016 52.534-36.814 52.653Q-36.613 52.773-36.486 52.958Q-36.360 53.142-36.360 53.385L-36.360 54.961Q-36.360 55.077-36.298 55.173Q-36.237 55.268-36.124 55.268Q-36.014 55.268-35.950 55.174Q-35.885 55.080-35.885 54.961L-35.885 54.513L-35.618 54.513L-35.618 54.961Q-35.618 55.231-35.845 55.396Q-36.073 55.562-36.353 55.562Q-36.561 55.562-36.698 55.408Q-36.835 55.255-36.859 55.039Q-37.006 55.306-37.288 55.451Q-37.570 55.596-37.894 55.596Q-38.171 55.596-38.455 55.521Q-38.739 55.446-38.932 55.267Q-39.125 55.087-39.125 54.800M-38.510 54.800Q-38.510 54.974-38.409 55.104Q-38.308 55.234-38.152 55.304Q-37.997 55.374-37.833 55.374Q-37.614 55.374-37.406 55.277Q-37.197 55.179-37.069 54.998Q-36.941 54.817-36.941 54.591L-36.941 53.863Q-37.265 53.863-37.631 53.954Q-37.997 54.045-38.253 54.257Q-38.510 54.468-38.510 54.800M-33.584 55.528L-35.136 55.528L-35.136 55.248Q-34.910 55.248-34.762 55.214Q-34.613 55.179-34.613 55.039L-34.613 53.190Q-34.613 53.002-34.661 52.918Q-34.709 52.835-34.806 52.816Q-34.904 52.797-35.116 52.797L-35.116 52.517L-34.059 52.442L-34.059 55.039Q-34.059 55.179-33.928 55.214Q-33.796 55.248-33.584 55.248L-33.584 55.528M-34.856 51.221Q-34.856 51.050-34.733 50.931Q-34.610 50.811-34.439 50.811Q-34.271 50.811-34.148 50.931Q-34.025 51.050-34.025 51.221Q-34.025 51.396-34.148 51.519Q-34.271 51.642-34.439 51.642Q-34.610 51.642-34.733 51.519Q-34.856 51.396-34.856 51.221M-32.938 55.521L-32.938 54.458Q-32.938 54.434-32.911 54.407Q-32.884 54.380-32.860 54.380L-32.750 54.380Q-32.685 54.380-32.672 54.438Q-32.576 54.872-32.330 55.123Q-32.084 55.374-31.670 55.374Q-31.328 55.374-31.076 55.241Q-30.823 55.108-30.823 54.800Q-30.823 54.643-30.917 54.528Q-31.011 54.414-31.149 54.345Q-31.287 54.277-31.455 54.239L-32.036 54.140Q-32.391 54.072-32.665 53.851Q-32.938 53.631-32.938 53.289Q-32.938 53.040-32.827 52.865Q-32.716 52.691-32.530 52.592Q-32.344 52.493-32.128 52.450Q-31.913 52.407-31.670 52.407Q-31.257 52.407-30.976 52.589L-30.761 52.414Q-30.751 52.411-30.744 52.409Q-30.737 52.407-30.727 52.407L-30.676 52.407Q-30.648 52.407-30.624 52.431Q-30.600 52.455-30.600 52.483L-30.600 53.330Q-30.600 53.351-30.624 53.378Q-30.648 53.405-30.676 53.405L-30.788 53.405Q-30.816 53.405-30.841 53.380Q-30.867 53.354-30.867 53.330Q-30.867 53.094-30.973 52.930Q-31.079 52.766-31.262 52.684Q-31.445 52.602-31.677 52.602Q-32.005 52.602-32.262 52.705Q-32.518 52.807-32.518 53.084Q-32.518 53.279-32.335 53.388Q-32.152 53.498-31.923 53.539L-31.349 53.645Q-31.103 53.693-30.889 53.821Q-30.676 53.949-30.539 54.152Q-30.402 54.356-30.402 54.605Q-30.402 55.118-30.768 55.357Q-31.134 55.596-31.670 55.596Q-32.166 55.596-32.497 55.302L-32.764 55.576Q-32.785 55.596-32.812 55.596L-32.860 55.596Q-32.884 55.596-32.911 55.569Q-32.938 55.542-32.938 55.521M-29.814 53.993Q-29.814 53.672-29.690 53.383Q-29.565 53.094-29.339 52.871Q-29.114 52.647-28.818 52.527Q-28.522 52.407-28.204 52.407Q-27.876 52.407-27.615 52.507Q-27.353 52.606-27.177 52.788Q-27.001 52.971-26.907 53.229Q-26.813 53.487-26.813 53.819Q-26.813 53.911-26.895 53.932L-29.151 53.932L-29.151 53.993Q-29.151 54.581-28.868 54.964Q-28.584 55.347-28.016 55.347Q-27.695 55.347-27.427 55.154Q-27.159 54.961-27.070 54.646Q-27.063 54.605-26.988 54.591L-26.895 54.591Q-26.813 54.615-26.813 54.687Q-26.813 54.694-26.820 54.721Q-26.933 55.118-27.304 55.357Q-27.675 55.596-28.098 55.596Q-28.536 55.596-28.936 55.388Q-29.336 55.179-29.575 54.812Q-29.814 54.445-29.814 53.993M-29.144 53.723L-27.329 53.723Q-27.329 53.446-27.427 53.194Q-27.524 52.941-27.722 52.785Q-27.921 52.630-28.204 52.630Q-28.481 52.630-28.695 52.788Q-28.909 52.947-29.026 53.202Q-29.144 53.457-29.144 53.723\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(33.408 -10.45)\">\u003Cpath d=\"M-23.182 54.940Q-23.182 54.838-23.158 54.752L-22.670 52.790L-23.452 52.790Q-23.545 52.766-23.545 52.677L-23.517 52.568Q-23.500 52.524-23.432 52.510L-22.601 52.510L-22.321 51.413Q-22.290 51.300-22.198 51.226Q-22.106 51.153-21.990 51.153Q-21.897 51.153-21.825 51.216Q-21.754 51.279-21.754 51.379Q-21.754 51.426-21.761 51.447L-22.027 52.510L-21.248 52.510Q-21.166 52.537-21.166 52.616L-21.193 52.729Q-21.200 52.773-21.268 52.790L-22.096 52.790L-22.601 54.800Q-22.629 54.957-22.629 55.046Q-22.629 55.173-22.576 55.273Q-22.523 55.374-22.403 55.374Q-22.096 55.374-21.841 55.108Q-21.586 54.841-21.453 54.506Q-21.419 54.438-21.374 54.438L-21.262 54.438Q-21.227 54.438-21.207 54.463Q-21.186 54.489-21.186 54.520Q-21.186 54.533-21.193 54.547Q-21.303 54.820-21.479 55.058Q-21.655 55.296-21.899 55.446Q-22.143 55.596-22.417 55.596Q-22.724 55.596-22.953 55.417Q-23.182 55.237-23.182 54.940\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"m71.193 28.498 12.946 15.535\"\u002F>\u003Cpath stroke=\"none\" d=\"m85.42 45.569-.82-3.482-.461 1.946-1.997.102\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(84.932 -24.6)\">\u003Cpath d=\"M-40.636 55.528L-42.239 55.528L-42.239 55.248Q-42.013 55.248-41.864 55.214Q-41.716 55.179-41.716 55.039L-41.716 51.420Q-41.716 51.150-41.823 51.088Q-41.931 51.027-42.239 51.027L-42.239 50.746L-41.162 50.671L-41.162 55.039Q-41.162 55.176-41.012 55.212Q-40.861 55.248-40.636 55.248L-40.636 55.528M-40.082 54.045Q-40.082 53.703-39.947 53.404Q-39.812 53.105-39.573 52.881Q-39.333 52.657-39.015 52.532Q-38.698 52.407-38.366 52.407Q-37.922 52.407-37.522 52.623Q-37.122 52.838-36.888 53.216Q-36.654 53.593-36.654 54.045Q-36.654 54.386-36.795 54.670Q-36.937 54.954-37.182 55.161Q-37.426 55.367-37.735 55.482Q-38.045 55.596-38.366 55.596Q-38.797 55.596-39.198 55.395Q-39.600 55.193-39.841 54.841Q-40.082 54.489-40.082 54.045M-38.366 55.347Q-37.764 55.347-37.541 54.969Q-37.317 54.591-37.317 53.959Q-37.317 53.347-37.551 52.988Q-37.785 52.630-38.366 52.630Q-39.419 52.630-39.419 53.959Q-39.419 54.591-39.193 54.969Q-38.968 55.347-38.366 55.347\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.932 -24.6)\">\u003Cpath d=\"M-34.881 55.501L-35.862 53.002Q-35.923 52.859-36.041 52.824Q-36.159 52.790-36.375 52.790L-36.375 52.510L-34.895 52.510L-34.895 52.790Q-35.274 52.790-35.274 52.951Q-35.274 52.961-35.260 53.002L-34.546 54.834L-33.873 53.129Q-33.903 53.057-33.903 53.029Q-33.903 53.002-33.931 53.002Q-33.992 52.855-34.110 52.823Q-34.228 52.790-34.440 52.790L-34.440 52.510L-33.042 52.510L-33.042 52.790Q-33.418 52.790-33.418 52.951Q-33.418 52.982-33.411 53.002L-32.656 54.940L-31.969 53.190Q-31.948 53.139-31.948 53.084Q-31.948 52.944-32.061 52.867Q-32.174 52.790-32.314 52.790L-32.314 52.510L-31.094 52.510L-31.094 52.790Q-31.299 52.790-31.454 52.896Q-31.610 53.002-31.682 53.190L-32.587 55.501Q-32.622 55.596-32.734 55.596L-32.803 55.596Q-32.912 55.596-32.950 55.501L-33.732 53.498L-34.519 55.501Q-34.553 55.596-34.666 55.596L-34.734 55.596Q-34.843 55.596-34.881 55.501\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.932 -24.6)\">\u003Cpath d=\"M-30.817 53.993Q-30.817 53.672-30.692 53.383Q-30.567 53.094-30.341 52.871Q-30.116 52.647-29.820 52.527Q-29.525 52.407-29.207 52.407Q-28.879 52.407-28.617 52.507Q-28.356 52.606-28.180 52.788Q-28.004 52.971-27.910 53.229Q-27.816 53.487-27.816 53.819Q-27.816 53.911-27.898 53.932L-30.153 53.932L-30.153 53.993Q-30.153 54.581-29.870 54.964Q-29.586 55.347-29.019 55.347Q-28.697 55.347-28.429 55.154Q-28.161 54.961-28.072 54.646Q-28.065 54.605-27.990 54.591L-27.898 54.591Q-27.816 54.615-27.816 54.687Q-27.816 54.694-27.822 54.721Q-27.935 55.118-28.306 55.357Q-28.677 55.596-29.101 55.596Q-29.538 55.596-29.938 55.388Q-30.338 55.179-30.577 54.812Q-30.817 54.445-30.817 53.993M-30.147 53.723L-28.332 53.723Q-28.332 53.446-28.429 53.194Q-28.527 52.941-28.725 52.785Q-28.923 52.630-29.207 52.630Q-29.484 52.630-29.697 52.788Q-29.911 52.947-30.029 53.202Q-30.147 53.457-30.147 53.723M-25.478 55.528L-27.214 55.528L-27.214 55.248Q-26.985 55.248-26.836 55.214Q-26.688 55.179-26.688 55.039L-26.688 53.190Q-26.688 52.920-26.795 52.859Q-26.903 52.797-27.214 52.797L-27.214 52.517L-26.185 52.442L-26.185 53.149Q-26.055 52.841-25.813 52.642Q-25.570 52.442-25.252 52.442Q-25.033 52.442-24.862 52.566Q-24.692 52.691-24.692 52.903Q-24.692 53.040-24.791 53.139Q-24.890 53.238-25.023 53.238Q-25.160 53.238-25.259 53.139Q-25.358 53.040-25.358 52.903Q-25.358 52.763-25.259 52.664Q-25.549 52.664-25.749 52.860Q-25.949 53.057-26.042 53.351Q-26.134 53.645-26.134 53.925L-26.134 55.039Q-26.134 55.248-25.478 55.248\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.932 -24.6)\">\u003Cpath d=\"M-21.072 54.940Q-21.072 54.838-21.048 54.752L-20.560 52.790L-21.342 52.790Q-21.435 52.766-21.435 52.677L-21.407 52.568Q-21.390 52.524-21.322 52.510L-20.491 52.510L-20.211 51.413Q-20.180 51.300-20.088 51.226Q-19.996 51.153-19.880 51.153Q-19.787 51.153-19.715 51.216Q-19.644 51.279-19.644 51.379Q-19.644 51.426-19.651 51.447L-19.917 52.510L-19.138 52.510Q-19.056 52.537-19.056 52.616L-19.083 52.729Q-19.090 52.773-19.158 52.790L-19.986 52.790L-20.491 54.800Q-20.519 54.957-20.519 55.046Q-20.519 55.173-20.466 55.273Q-20.413 55.374-20.293 55.374Q-19.986 55.374-19.731 55.108Q-19.476 54.841-19.343 54.506Q-19.309 54.438-19.264 54.438L-19.152 54.438Q-19.117 54.438-19.097 54.463Q-19.076 54.489-19.076 54.520Q-19.076 54.533-19.083 54.547Q-19.193 54.820-19.369 55.058Q-19.545 55.296-19.789 55.446Q-20.033 55.596-20.307 55.596Q-20.614 55.596-20.843 55.417Q-21.072 55.237-21.072 54.940\" 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 precision–recall curve, swept by the decision threshold \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6151em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">t\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>: raising \u003Cspan class=\"katex\">\u003Cspan class=\"katex-html\" aria-hidden=\"true\">\u003Cspan class=\"base\">\u003Cspan class=\"strut\" style=\"height:0.6151em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">t\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> trades recall for precision, and PR-AUC summarizes the whole curve.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:499.068px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 374.301 118.506\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-50.479 34.549H72.113\"\u002F>\u003Cpath stroke=\"none\" d=\"m74.713 34.549-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(128.925 2.354)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-45.294 34.549L-47.030 34.549L-47.030 34.269Q-46.801 34.269-46.653 34.235Q-46.504 34.200-46.504 34.060L-46.504 32.211Q-46.504 31.941-46.612 31.880Q-46.719 31.818-47.030 31.818L-47.030 31.538L-46.001 31.463L-46.001 32.170Q-45.872 31.862-45.629 31.663Q-45.386 31.463-45.068 31.463Q-44.850 31.463-44.679 31.587Q-44.508 31.712-44.508 31.924Q-44.508 32.061-44.607 32.160Q-44.706 32.259-44.839 32.259Q-44.976 32.259-45.075 32.160Q-45.174 32.061-45.174 31.924Q-45.174 31.784-45.075 31.685Q-45.366 31.685-45.566 31.881Q-45.766 32.078-45.858 32.372Q-45.950 32.666-45.950 32.946L-45.950 34.060Q-45.950 34.269-45.294 34.269L-45.294 34.549M-43.865 33.821Q-43.865 33.489-43.641 33.262Q-43.417 33.035-43.074 32.907Q-42.730 32.778-42.358 32.726Q-41.985 32.673-41.681 32.673L-41.681 32.420Q-41.681 32.215-41.789 32.035Q-41.896 31.856-42.078 31.753Q-42.259 31.651-42.467 31.651Q-42.874 31.651-43.110 31.743Q-43.021 31.780-42.975 31.864Q-42.929 31.948-42.929 32.050Q-42.929 32.146-42.975 32.225Q-43.021 32.303-43.101 32.348Q-43.182 32.392-43.271 32.392Q-43.421 32.392-43.522 32.295Q-43.623 32.197-43.623 32.050Q-43.623 31.428-42.467 31.428Q-42.255 31.428-42.006 31.492Q-41.756 31.555-41.555 31.674Q-41.353 31.794-41.227 31.979Q-41.100 32.163-41.100 32.406L-41.100 33.982Q-41.100 34.098-41.039 34.194Q-40.977 34.289-40.864 34.289Q-40.755 34.289-40.690 34.195Q-40.625 34.101-40.625 33.982L-40.625 33.534L-40.358 33.534L-40.358 33.982Q-40.358 34.252-40.586 34.417Q-40.813 34.583-41.093 34.583Q-41.302 34.583-41.438 34.429Q-41.575 34.276-41.599 34.060Q-41.746 34.327-42.028 34.472Q-42.310 34.617-42.635 34.617Q-42.912 34.617-43.195 34.542Q-43.479 34.467-43.672 34.288Q-43.865 34.108-43.865 33.821M-43.250 33.821Q-43.250 33.995-43.149 34.125Q-43.048 34.255-42.893 34.325Q-42.737 34.395-42.573 34.395Q-42.354 34.395-42.146 34.298Q-41.937 34.200-41.809 34.019Q-41.681 33.838-41.681 33.612L-41.681 32.884Q-42.006 32.884-42.372 32.975Q-42.737 33.066-42.994 33.278Q-43.250 33.489-43.250 33.821M-38.325 34.549L-39.876 34.549L-39.876 34.269Q-39.651 34.269-39.502 34.235Q-39.354 34.200-39.354 34.060L-39.354 32.211Q-39.354 32.023-39.401 31.939Q-39.449 31.856-39.547 31.837Q-39.644 31.818-39.856 31.818L-39.856 31.538L-38.800 31.463L-38.800 34.060Q-38.800 34.200-38.668 34.235Q-38.537 34.269-38.325 34.269L-38.325 34.549M-39.596 30.242Q-39.596 30.071-39.473 29.952Q-39.350 29.832-39.179 29.832Q-39.012 29.832-38.889 29.952Q-38.766 30.071-38.766 30.242Q-38.766 30.417-38.889 30.540Q-39.012 30.663-39.179 30.663Q-39.350 30.663-39.473 30.540Q-39.596 30.417-39.596 30.242M-35.997 34.549L-37.631 34.549L-37.631 34.269Q-37.402 34.269-37.253 34.235Q-37.104 34.200-37.104 34.060L-37.104 32.211Q-37.104 31.941-37.212 31.880Q-37.320 31.818-37.631 31.818L-37.631 31.538L-36.571 31.463L-36.571 32.112Q-36.400 31.804-36.096 31.633Q-35.792 31.463-35.447 31.463Q-34.941 31.463-34.657 31.686Q-34.374 31.910-34.374 32.406L-34.374 34.060Q-34.374 34.197-34.225 34.233Q-34.076 34.269-33.851 34.269L-33.851 34.549L-35.481 34.549L-35.481 34.269Q-35.252 34.269-35.103 34.235Q-34.955 34.200-34.955 34.060L-34.955 32.420Q-34.955 32.085-35.074 31.885Q-35.194 31.685-35.508 31.685Q-35.778 31.685-36.012 31.821Q-36.247 31.958-36.385 32.192Q-36.523 32.426-36.523 32.700L-36.523 34.060Q-36.523 34.197-36.373 34.233Q-36.223 34.269-35.997 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(128.925 2.354)\">\u003Cpath d=\"M-30.553 34.542L-30.553 33.479Q-30.553 33.455-30.525 33.428Q-30.498 33.401-30.474 33.401L-30.365 33.401Q-30.300 33.401-30.286 33.459Q-30.190 33.893-29.944 34.144Q-29.698 34.395-29.284 34.395Q-28.943 34.395-28.690 34.262Q-28.437 34.129-28.437 33.821Q-28.437 33.664-28.531 33.549Q-28.625 33.435-28.763 33.366Q-28.902 33.298-29.069 33.260L-29.650 33.161Q-30.006 33.093-30.279 32.872Q-30.553 32.652-30.553 32.310Q-30.553 32.061-30.441 31.886Q-30.330 31.712-30.144 31.613Q-29.958 31.514-29.742 31.471Q-29.527 31.428-29.284 31.428Q-28.871 31.428-28.591 31.610L-28.375 31.435Q-28.365 31.432-28.358 31.430Q-28.351 31.428-28.341 31.428L-28.290 31.428Q-28.263 31.428-28.239 31.452Q-28.215 31.476-28.215 31.504L-28.215 32.351Q-28.215 32.372-28.239 32.399Q-28.263 32.426-28.290 32.426L-28.403 32.426Q-28.430 32.426-28.456 32.401Q-28.481 32.375-28.481 32.351Q-28.481 32.115-28.587 31.951Q-28.693 31.787-28.876 31.705Q-29.059 31.623-29.291 31.623Q-29.619 31.623-29.876 31.726Q-30.132 31.828-30.132 32.105Q-30.132 32.300-29.949 32.409Q-29.766 32.519-29.537 32.560L-28.963 32.666Q-28.717 32.714-28.503 32.842Q-28.290 32.970-28.153 33.173Q-28.016 33.377-28.016 33.626Q-28.016 34.139-28.382 34.378Q-28.748 34.617-29.284 34.617Q-29.780 34.617-30.112 34.323L-30.378 34.597Q-30.399 34.617-30.426 34.617L-30.474 34.617Q-30.498 34.617-30.525 34.590Q-30.553 34.563-30.553 34.542M-25.771 34.549L-27.323 34.549L-27.323 34.269Q-27.097 34.269-26.948 34.235Q-26.800 34.200-26.800 34.060L-26.800 32.211Q-26.800 32.023-26.847 31.939Q-26.895 31.856-26.993 31.837Q-27.090 31.818-27.302 31.818L-27.302 31.538L-26.246 31.463L-26.246 34.060Q-26.246 34.200-26.114 34.235Q-25.983 34.269-25.771 34.269L-25.771 34.549M-27.042 30.242Q-27.042 30.071-26.919 29.952Q-26.796 29.832-26.625 29.832Q-26.458 29.832-26.335 29.952Q-26.212 30.071-26.212 30.242Q-26.212 30.417-26.335 30.540Q-26.458 30.663-26.625 30.663Q-26.796 30.663-26.919 30.540Q-27.042 30.417-27.042 30.242M-22.394 34.549L-25.067 34.549Q-25.111 34.549-25.138 34.522Q-25.166 34.494-25.166 34.450L-25.166 34.382Q-25.166 34.341-25.138 34.310L-23.030 31.757L-23.669 31.757Q-24.093 31.757-24.325 31.823Q-24.557 31.890-24.677 32.100Q-24.797 32.310-24.797 32.731L-25.060 32.731L-24.978 31.531L-22.387 31.531Q-22.346 31.531-22.317 31.558Q-22.288 31.586-22.288 31.630L-22.288 31.678Q-22.288 31.722-22.312 31.750L-24.417 34.296L-23.737 34.296Q-23.409 34.296-23.192 34.260Q-22.975 34.224-22.807 34.074Q-22.667 33.937-22.614 33.713Q-22.561 33.489-22.534 33.161L-22.267 33.161L-22.394 34.549M-21.618 33.014Q-21.618 32.693-21.493 32.404Q-21.368 32.115-21.143 31.892Q-20.917 31.668-20.622 31.548Q-20.326 31.428-20.008 31.428Q-19.680 31.428-19.419 31.528Q-19.157 31.627-18.981 31.809Q-18.805 31.992-18.711 32.250Q-18.617 32.508-18.617 32.840Q-18.617 32.932-18.699 32.953L-20.955 32.953L-20.955 33.014Q-20.955 33.602-20.671 33.985Q-20.388 34.368-19.820 34.368Q-19.499 34.368-19.231 34.175Q-18.962 33.982-18.873 33.667Q-18.867 33.626-18.791 33.612L-18.699 33.612Q-18.617 33.636-18.617 33.708Q-18.617 33.715-18.624 33.742Q-18.737 34.139-19.107 34.378Q-19.478 34.617-19.902 34.617Q-20.340 34.617-20.740 34.409Q-21.139 34.200-21.379 33.833Q-21.618 33.466-21.618 33.014M-20.948 32.744L-19.133 32.744Q-19.133 32.467-19.231 32.215Q-19.328 31.962-19.526 31.806Q-19.724 31.651-20.008 31.651Q-20.285 31.651-20.499 31.809Q-20.712 31.968-20.830 32.223Q-20.948 32.478-20.948 32.744\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-50.479 34.549v-94.14\"\u002F>\u003Cpath stroke=\"none\" d=\"m-50.479-62.19-2.08 4.16 2.08-1.56 2.08 1.56\"\u002F>\u003Cg transform=\"translate(-8.458 -100.472)\">\u003Cpath d=\"M-50.206 33.014Q-50.206 32.693-50.081 32.404Q-49.956 32.115-49.730 31.892Q-49.505 31.668-49.209 31.548Q-48.914 31.428-48.596 31.428Q-48.268 31.428-48.006 31.528Q-47.745 31.627-47.569 31.809Q-47.393 31.992-47.299 32.250Q-47.205 32.508-47.205 32.840Q-47.205 32.932-47.287 32.953L-49.542 32.953L-49.542 33.014Q-49.542 33.602-49.259 33.985Q-48.975 34.368-48.408 34.368Q-48.086 34.368-47.818 34.175Q-47.550 33.982-47.461 33.667Q-47.454 33.626-47.379 33.612L-47.287 33.612Q-47.205 33.636-47.205 33.708Q-47.205 33.715-47.211 33.742Q-47.324 34.139-47.695 34.378Q-48.066 34.617-48.490 34.617Q-48.927 34.617-49.327 34.409Q-49.727 34.200-49.966 33.833Q-50.206 33.466-50.206 33.014M-49.536 32.744L-47.721 32.744Q-47.721 32.467-47.818 32.215Q-47.916 31.962-48.114 31.806Q-48.312 31.651-48.596 31.651Q-48.873 31.651-49.086 31.809Q-49.300 31.968-49.418 32.223Q-49.536 32.478-49.536 32.744M-44.867 34.549L-46.603 34.549L-46.603 34.269Q-46.374 34.269-46.225 34.235Q-46.077 34.200-46.077 34.060L-46.077 32.211Q-46.077 31.941-46.184 31.880Q-46.292 31.818-46.603 31.818L-46.603 31.538L-45.574 31.463L-45.574 32.170Q-45.444 31.862-45.202 31.663Q-44.959 31.463-44.641 31.463Q-44.422 31.463-44.251 31.587Q-44.081 31.712-44.081 31.924Q-44.081 32.061-44.180 32.160Q-44.279 32.259-44.412 32.259Q-44.549 32.259-44.648 32.160Q-44.747 32.061-44.747 31.924Q-44.747 31.784-44.648 31.685Q-44.938 31.685-45.138 31.881Q-45.338 32.078-45.431 32.372Q-45.523 32.666-45.523 32.946L-45.523 34.060Q-45.523 34.269-44.867 34.269L-44.867 34.549M-41.746 34.549L-43.482 34.549L-43.482 34.269Q-43.253 34.269-43.105 34.235Q-42.956 34.200-42.956 34.060L-42.956 32.211Q-42.956 31.941-43.064 31.880Q-43.171 31.818-43.482 31.818L-43.482 31.538L-42.454 31.463L-42.454 32.170Q-42.324 31.862-42.081 31.663Q-41.838 31.463-41.521 31.463Q-41.302 31.463-41.131 31.587Q-40.960 31.712-40.960 31.924Q-40.960 32.061-41.059 32.160Q-41.158 32.259-41.291 32.259Q-41.428 32.259-41.527 32.160Q-41.626 32.061-41.626 31.924Q-41.626 31.784-41.527 31.685Q-41.818 31.685-42.018 31.881Q-42.218 32.078-42.310 32.372Q-42.402 32.666-42.402 32.946L-42.402 34.060Q-42.402 34.269-41.746 34.269L-41.746 34.549M-40.416 33.066Q-40.416 32.724-40.281 32.425Q-40.146 32.126-39.907 31.902Q-39.668 31.678-39.350 31.553Q-39.032 31.428-38.701 31.428Q-38.256 31.428-37.856 31.644Q-37.457 31.859-37.222 32.237Q-36.988 32.614-36.988 33.066Q-36.988 33.407-37.130 33.691Q-37.272 33.975-37.516 34.182Q-37.761 34.388-38.070 34.503Q-38.379 34.617-38.701 34.617Q-39.131 34.617-39.533 34.416Q-39.935 34.214-40.176 33.862Q-40.416 33.510-40.416 33.066M-38.701 34.368Q-38.099 34.368-37.875 33.990Q-37.651 33.612-37.651 32.980Q-37.651 32.368-37.885 32.009Q-38.120 31.651-38.701 31.651Q-39.753 31.651-39.753 32.980Q-39.753 33.612-39.528 33.990Q-39.302 34.368-38.701 34.368M-34.644 34.549L-36.380 34.549L-36.380 34.269Q-36.151 34.269-36.002 34.235Q-35.854 34.200-35.854 34.060L-35.854 32.211Q-35.854 31.941-35.961 31.880Q-36.069 31.818-36.380 31.818L-36.380 31.538L-35.351 31.463L-35.351 32.170Q-35.221 31.862-34.979 31.663Q-34.736 31.463-34.418 31.463Q-34.199 31.463-34.028 31.587Q-33.857 31.712-33.857 31.924Q-33.857 32.061-33.957 32.160Q-34.056 32.259-34.189 32.259Q-34.326 32.259-34.425 32.160Q-34.524 32.061-34.524 31.924Q-34.524 31.784-34.425 31.685Q-34.715 31.685-34.915 31.881Q-35.115 32.078-35.208 32.372Q-35.300 32.666-35.300 32.946L-35.300 34.060Q-35.300 34.269-34.644 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-warn)\" d=\"m-39.098-34.953 2.626 2.564 2.627 2.25 2.626 1.979 2.626 1.739 2.626 1.528 2.626 1.342 2.627 1.18 2.626 1.037 2.626.91 2.626.803 2.626.703 2.627.617 2.626.544 2.626.478 2.626.418 2.626.37 2.627.322 2.626.284 2.626.252 2.626.222 2.626.192 2.627.17 2.626.148 2.626.13 2.626.119 2.626.1 2.627.088 2.626.078 2.626.07 2.626.06 2.626.051 2.627.047 2.626.04 2.626.037 2.626.032 2.626.027 2.627.025 2.626.021 2.626.02\" style=\"stroke-width:1.2\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m-39.098.81 2.626-1.776 2.627-1.557 2.626-1.37 2.626-1.204 2.626-1.058 2.626-.93 2.627-.816 2.626-.718 2.626-.63 2.626-.556 2.626-.486 2.627-.428 2.626-.377 2.626-.33 2.626-.29 2.626-.256 2.627-.223 2.626-.197 2.626-.174 2.626-.154 2.626-.133 2.627-.118 2.626-.102 2.626-.09 2.626-.082 2.626-.069 2.627-.062 2.626-.053 2.626-.049 2.626-.04 2.626-.037 2.627-.032 2.626-.028 2.626-.025 2.626-.022 2.626-.02 2.627-.017 2.626-.014 2.626-.013\" style=\"stroke-width:1.2\"\u002F>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M-50.479 14.632H63.332\"\u002F>\u003Cg transform=\"translate(117.344 -18.445)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-46.986 33.821Q-46.986 33.489-46.762 33.262Q-46.538 33.035-46.195 32.907Q-45.851 32.778-45.479 32.726Q-45.106 32.673-44.802 32.673L-44.802 32.420Q-44.802 32.215-44.909 32.035Q-45.017 31.856-45.198 31.753Q-45.379 31.651-45.588 31.651Q-45.995 31.651-46.230 31.743Q-46.142 31.780-46.095 31.864Q-46.049 31.948-46.049 32.050Q-46.049 32.146-46.095 32.225Q-46.142 32.303-46.222 32.348Q-46.302 32.392-46.391 32.392Q-46.541 32.392-46.642 32.295Q-46.743 32.197-46.743 32.050Q-46.743 31.428-45.588 31.428Q-45.376 31.428-45.126 31.492Q-44.877 31.555-44.675 31.674Q-44.474 31.794-44.347 31.979Q-44.221 32.163-44.221 32.406L-44.221 33.982Q-44.221 34.098-44.159 34.194Q-44.098 34.289-43.985 34.289Q-43.875 34.289-43.811 34.195Q-43.746 34.101-43.746 33.982L-43.746 33.534L-43.479 33.534L-43.479 33.982Q-43.479 34.252-43.706 34.417Q-43.934 34.583-44.214 34.583Q-44.422 34.583-44.559 34.429Q-44.696 34.276-44.720 34.060Q-44.867 34.327-45.149 34.472Q-45.431 34.617-45.755 34.617Q-46.032 34.617-46.316 34.542Q-46.600 34.467-46.793 34.288Q-46.986 34.108-46.986 33.821M-46.371 33.821Q-46.371 33.995-46.270 34.125Q-46.169 34.255-46.013 34.325Q-45.858 34.395-45.694 34.395Q-45.475 34.395-45.267 34.298Q-45.058 34.200-44.930 34.019Q-44.802 33.838-44.802 33.612L-44.802 32.884Q-45.126 32.884-45.492 32.975Q-45.858 33.066-46.114 33.278Q-46.371 33.489-46.371 33.821M-41.312 34.549L-43.048 34.549L-43.048 34.269Q-42.819 34.269-42.671 34.235Q-42.522 34.200-42.522 34.060L-42.522 32.211Q-42.522 31.941-42.630 31.880Q-42.737 31.818-43.048 31.818L-43.048 31.538L-42.020 31.463L-42.020 32.170Q-41.890 31.862-41.647 31.663Q-41.404 31.463-41.086 31.463Q-40.868 31.463-40.697 31.587Q-40.526 31.712-40.526 31.924Q-40.526 32.061-40.625 32.160Q-40.724 32.259-40.857 32.259Q-40.994 32.259-41.093 32.160Q-41.192 32.061-41.192 31.924Q-41.192 31.784-41.093 31.685Q-41.384 31.685-41.584 31.881Q-41.784 32.078-41.876 32.372Q-41.968 32.666-41.968 32.946L-41.968 34.060Q-41.968 34.269-41.312 34.269L-41.312 34.549M-39.982 35.082Q-39.982 34.836-39.786 34.652Q-39.589 34.467-39.333 34.388Q-39.470 34.276-39.541 34.115Q-39.613 33.954-39.613 33.773Q-39.613 33.452-39.401 33.206Q-39.736 32.908-39.736 32.498Q-39.736 32.037-39.347 31.750Q-38.957 31.463-38.479 31.463Q-38.007 31.463-37.672 31.709Q-37.498 31.555-37.287 31.473Q-37.077 31.391-36.848 31.391Q-36.684 31.391-36.563 31.498Q-36.441 31.606-36.441 31.770Q-36.441 31.866-36.513 31.938Q-36.585 32.009-36.677 32.009Q-36.776 32.009-36.846 31.936Q-36.916 31.862-36.916 31.763Q-36.916 31.709-36.903 31.678L-36.896 31.664Q-36.889 31.644-36.881 31.633Q-36.872 31.623-36.869 31.616Q-37.224 31.616-37.511 31.839Q-37.224 32.132-37.224 32.498Q-37.224 32.813-37.409 33.045Q-37.593 33.278-37.882 33.406Q-38.171 33.534-38.479 33.534Q-38.680 33.534-38.872 33.484Q-39.063 33.435-39.241 33.325Q-39.333 33.452-39.333 33.595Q-39.333 33.777-39.205 33.912Q-39.077 34.047-38.892 34.047L-38.260 34.047Q-37.812 34.047-37.443 34.118Q-37.074 34.190-36.814 34.419Q-36.554 34.648-36.554 35.082Q-36.554 35.403-36.850 35.605Q-37.146 35.807-37.549 35.896Q-37.952 35.985-38.267 35.985Q-38.584 35.985-38.988 35.896Q-39.391 35.807-39.687 35.605Q-39.982 35.403-39.982 35.082M-39.528 35.082Q-39.528 35.311-39.309 35.460Q-39.090 35.609-38.798 35.677Q-38.506 35.745-38.267 35.745Q-38.103 35.745-37.894 35.709Q-37.686 35.674-37.479 35.593Q-37.272 35.513-37.140 35.385Q-37.009 35.257-37.009 35.082Q-37.009 34.730-37.390 34.636Q-37.771 34.542-38.273 34.542L-38.892 34.542Q-39.131 34.542-39.330 34.693Q-39.528 34.843-39.528 35.082M-38.479 33.295Q-37.812 33.295-37.812 32.498Q-37.812 31.698-38.479 31.698Q-39.148 31.698-39.148 32.498Q-39.148 33.295-38.479 33.295M-36 33.014Q-36 32.693-35.876 32.404Q-35.751 32.115-35.525 31.892Q-35.300 31.668-35.004 31.548Q-34.708 31.428-34.391 31.428Q-34.062 31.428-33.801 31.528Q-33.540 31.627-33.364 31.809Q-33.187 31.992-33.094 32.250Q-33 32.508-33 32.840Q-33 32.932-33.082 32.953L-35.337 32.953L-35.337 33.014Q-35.337 33.602-35.054 33.985Q-34.770 34.368-34.203 34.368Q-33.881 34.368-33.613 34.175Q-33.345 33.982-33.256 33.667Q-33.249 33.626-33.174 33.612L-33.082 33.612Q-33 33.636-33 33.708Q-33 33.715-33.006 33.742Q-33.119 34.139-33.490 34.378Q-33.861 34.617-34.285 34.617Q-34.722 34.617-35.122 34.409Q-35.522 34.200-35.761 33.833Q-36 33.466-36 33.014M-35.331 32.744L-33.516 32.744Q-33.516 32.467-33.613 32.215Q-33.710 31.962-33.909 31.806Q-34.107 31.651-34.391 31.651Q-34.667 31.651-34.881 31.809Q-35.095 31.968-35.213 32.223Q-35.331 32.478-35.331 32.744M-31.885 33.708L-31.885 31.811L-32.524 31.811L-32.524 31.589Q-32.207 31.589-31.989 31.379Q-31.772 31.169-31.672 30.859Q-31.571 30.550-31.571 30.242L-31.304 30.242L-31.304 31.531L-30.228 31.531L-30.228 31.811L-31.304 31.811L-31.304 33.695Q-31.304 33.971-31.200 34.170Q-31.096 34.368-30.836 34.368Q-30.679 34.368-30.573 34.264Q-30.467 34.159-30.417 34.006Q-30.368 33.852-30.368 33.695L-30.368 33.281L-30.101 33.281L-30.101 33.708Q-30.101 33.934-30.200 34.144Q-30.299 34.354-30.484 34.486Q-30.668 34.617-30.897 34.617Q-31.335 34.617-31.610 34.380Q-31.885 34.142-31.885 33.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\">\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(66.129 -54.475)\">\u003Cpath d=\"M-48.575 34.522L-49.703 32.023Q-49.775 31.876-49.905 31.844Q-50.035 31.811-50.264 31.811L-50.264 31.531L-48.750 31.531L-48.750 31.811Q-49.102 31.811-49.102 31.958Q-49.102 32.003-49.091 32.023L-48.227 33.941L-47.447 32.211Q-47.413 32.143-47.413 32.064Q-47.413 31.951-47.497 31.881Q-47.581 31.811-47.700 31.811L-47.700 31.531L-46.504 31.531L-46.504 31.811Q-46.723 31.811-46.894 31.914Q-47.064 32.016-47.153 32.211L-48.189 34.522Q-48.237 34.617-48.343 34.617L-48.421 34.617Q-48.527 34.617-48.575 34.522\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 -54.475)\">\u003Cpath d=\"M-46.335 33.821Q-46.335 33.489-46.112 33.262Q-45.888 33.035-45.544 32.907Q-45.201 32.778-44.828 32.726Q-44.456 32.673-44.151 32.673L-44.151 32.420Q-44.151 32.215-44.259 32.035Q-44.367 31.856-44.548 31.753Q-44.729 31.651-44.937 31.651Q-45.344 31.651-45.580 31.743Q-45.491 31.780-45.445 31.864Q-45.399 31.948-45.399 32.050Q-45.399 32.146-45.445 32.225Q-45.491 32.303-45.572 32.348Q-45.652 32.392-45.741 32.392Q-45.891 32.392-45.992 32.295Q-46.093 32.197-46.093 32.050Q-46.093 31.428-44.937 31.428Q-44.726 31.428-44.476 31.492Q-44.227 31.555-44.025 31.674Q-43.823 31.794-43.697 31.979Q-43.570 32.163-43.570 32.406L-43.570 33.982Q-43.570 34.098-43.509 34.194Q-43.447 34.289-43.334 34.289Q-43.225 34.289-43.160 34.195Q-43.095 34.101-43.095 33.982L-43.095 33.534L-42.829 33.534L-42.829 33.982Q-42.829 34.252-43.056 34.417Q-43.283 34.583-43.563 34.583Q-43.772 34.583-43.909 34.429Q-44.045 34.276-44.069 34.060Q-44.216 34.327-44.498 34.472Q-44.780 34.617-45.105 34.617Q-45.382 34.617-45.666 34.542Q-45.949 34.467-46.142 34.288Q-46.335 34.108-46.335 33.821M-45.720 33.821Q-45.720 33.995-45.619 34.125Q-45.519 34.255-45.363 34.325Q-45.208 34.395-45.043 34.395Q-44.825 34.395-44.616 34.298Q-44.408 34.200-44.280 34.019Q-44.151 33.838-44.151 33.612L-44.151 32.884Q-44.476 32.884-44.842 32.975Q-45.208 33.066-45.464 33.278Q-45.720 33.489-45.720 33.821M-40.744 34.549L-42.347 34.549L-42.347 34.269Q-42.121 34.269-41.972 34.235Q-41.824 34.200-41.824 34.060L-41.824 30.441Q-41.824 30.171-41.931 30.109Q-42.039 30.048-42.347 30.048L-42.347 29.767L-41.270 29.692L-41.270 34.060Q-41.270 34.197-41.120 34.233Q-40.969 34.269-40.744 34.269\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" 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 transform=\"translate(66.129 -36.057)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-45.294 34.549L-47.030 34.549L-47.030 34.269Q-46.801 34.269-46.653 34.235Q-46.504 34.200-46.504 34.060L-46.504 32.211Q-46.504 31.941-46.612 31.880Q-46.719 31.818-47.030 31.818L-47.030 31.538L-46.001 31.463L-46.001 32.170Q-45.872 31.862-45.629 31.663Q-45.386 31.463-45.068 31.463Q-44.850 31.463-44.679 31.587Q-44.508 31.712-44.508 31.924Q-44.508 32.061-44.607 32.160Q-44.706 32.259-44.839 32.259Q-44.976 32.259-45.075 32.160Q-45.174 32.061-45.174 31.924Q-45.174 31.784-45.075 31.685Q-45.366 31.685-45.566 31.881Q-45.766 32.078-45.858 32.372Q-45.950 32.666-45.950 32.946L-45.950 34.060Q-45.950 34.269-45.294 34.269L-45.294 34.549M-43.865 33.821Q-43.865 33.489-43.641 33.262Q-43.417 33.035-43.074 32.907Q-42.730 32.778-42.358 32.726Q-41.985 32.673-41.681 32.673L-41.681 32.420Q-41.681 32.215-41.789 32.035Q-41.896 31.856-42.078 31.753Q-42.259 31.651-42.467 31.651Q-42.874 31.651-43.110 31.743Q-43.021 31.780-42.975 31.864Q-42.929 31.948-42.929 32.050Q-42.929 32.146-42.975 32.225Q-43.021 32.303-43.101 32.348Q-43.182 32.392-43.271 32.392Q-43.421 32.392-43.522 32.295Q-43.623 32.197-43.623 32.050Q-43.623 31.428-42.467 31.428Q-42.255 31.428-42.006 31.492Q-41.756 31.555-41.555 31.674Q-41.353 31.794-41.227 31.979Q-41.100 32.163-41.100 32.406L-41.100 33.982Q-41.100 34.098-41.039 34.194Q-40.977 34.289-40.864 34.289Q-40.755 34.289-40.690 34.195Q-40.625 34.101-40.625 33.982L-40.625 33.534L-40.358 33.534L-40.358 33.982Q-40.358 34.252-40.586 34.417Q-40.813 34.583-41.093 34.583Q-41.302 34.583-41.438 34.429Q-41.575 34.276-41.599 34.060Q-41.746 34.327-42.028 34.472Q-42.310 34.617-42.635 34.617Q-42.912 34.617-43.195 34.542Q-43.479 34.467-43.672 34.288Q-43.865 34.108-43.865 33.821M-43.250 33.821Q-43.250 33.995-43.149 34.125Q-43.048 34.255-42.893 34.325Q-42.737 34.395-42.573 34.395Q-42.354 34.395-42.146 34.298Q-41.937 34.200-41.809 34.019Q-41.681 33.838-41.681 33.612L-41.681 32.884Q-42.006 32.884-42.372 32.975Q-42.737 33.066-42.994 33.278Q-43.250 33.489-43.250 33.821M-38.325 34.549L-39.876 34.549L-39.876 34.269Q-39.651 34.269-39.502 34.235Q-39.354 34.200-39.354 34.060L-39.354 32.211Q-39.354 32.023-39.401 31.939Q-39.449 31.856-39.547 31.837Q-39.644 31.818-39.856 31.818L-39.856 31.538L-38.800 31.463L-38.800 34.060Q-38.800 34.200-38.668 34.235Q-38.537 34.269-38.325 34.269L-38.325 34.549M-39.596 30.242Q-39.596 30.071-39.473 29.952Q-39.350 29.832-39.179 29.832Q-39.012 29.832-38.889 29.952Q-38.766 30.071-38.766 30.242Q-38.766 30.417-38.889 30.540Q-39.012 30.663-39.179 30.663Q-39.350 30.663-39.473 30.540Q-39.596 30.417-39.596 30.242M-35.997 34.549L-37.631 34.549L-37.631 34.269Q-37.402 34.269-37.253 34.235Q-37.104 34.200-37.104 34.060L-37.104 32.211Q-37.104 31.941-37.212 31.880Q-37.320 31.818-37.631 31.818L-37.631 31.538L-36.571 31.463L-36.571 32.112Q-36.400 31.804-36.096 31.633Q-35.792 31.463-35.447 31.463Q-34.941 31.463-34.657 31.686Q-34.374 31.910-34.374 32.406L-34.374 34.060Q-34.374 34.197-34.225 34.233Q-34.076 34.269-33.851 34.269L-33.851 34.549L-35.481 34.549L-35.481 34.269Q-35.252 34.269-35.103 34.235Q-34.955 34.200-34.955 34.060L-34.955 32.420Q-34.955 32.085-35.074 31.885Q-35.194 31.685-35.508 31.685Q-35.778 31.685-36.012 31.821Q-36.247 31.958-36.385 32.192Q-36.523 32.426-36.523 32.700L-36.523 34.060Q-36.523 34.197-36.373 34.233Q-36.223 34.269-35.997 34.269\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(41.1 -90.252)\">\u003Cpath d=\"M-48.483 34.549L-50.117 34.549L-50.117 34.269Q-49.888 34.269-49.739 34.235Q-49.590 34.200-49.590 34.060L-49.590 30.441Q-49.590 30.171-49.698 30.109Q-49.806 30.048-50.117 30.048L-50.117 29.767L-49.037 29.692L-49.037 32.078Q-48.931 31.893-48.753 31.751Q-48.575 31.610-48.367 31.536Q-48.158 31.463-47.933 31.463Q-47.427 31.463-47.143 31.686Q-46.859 31.910-46.859 32.406L-46.859 34.060Q-46.859 34.197-46.711 34.233Q-46.562 34.269-46.336 34.269L-46.336 34.549L-47.967 34.549L-47.967 34.269Q-47.738 34.269-47.589 34.235Q-47.440 34.200-47.440 34.060L-47.440 32.420Q-47.440 32.085-47.560 31.885Q-47.680 31.685-47.994 31.685Q-48.264 31.685-48.498 31.821Q-48.732 31.958-48.871 32.192Q-49.009 32.426-49.009 32.700L-49.009 34.060Q-49.009 34.197-48.859 34.233Q-48.708 34.269-48.483 34.269L-48.483 34.549M-44.132 34.549L-45.684 34.549L-45.684 34.269Q-45.458 34.269-45.309 34.235Q-45.161 34.200-45.161 34.060L-45.161 32.211Q-45.161 32.023-45.208 31.939Q-45.256 31.856-45.354 31.837Q-45.451 31.818-45.663 31.818L-45.663 31.538L-44.607 31.463L-44.607 34.060Q-44.607 34.200-44.475 34.235Q-44.344 34.269-44.132 34.269L-44.132 34.549M-45.403 30.242Q-45.403 30.071-45.280 29.952Q-45.157 29.832-44.986 29.832Q-44.819 29.832-44.696 29.952Q-44.573 30.071-44.573 30.242Q-44.573 30.417-44.696 30.540Q-44.819 30.663-44.986 30.663Q-45.157 30.663-45.280 30.540Q-45.403 30.417-45.403 30.242M-43.527 35.082Q-43.527 34.836-43.330 34.652Q-43.134 34.467-42.877 34.388Q-43.014 34.276-43.086 34.115Q-43.158 33.954-43.158 33.773Q-43.158 33.452-42.946 33.206Q-43.281 32.908-43.281 32.498Q-43.281 32.037-42.891 31.750Q-42.501 31.463-42.023 31.463Q-41.551 31.463-41.216 31.709Q-41.042 31.555-40.832 31.473Q-40.622 31.391-40.393 31.391Q-40.229 31.391-40.107 31.498Q-39.986 31.606-39.986 31.770Q-39.986 31.866-40.058 31.938Q-40.129 32.009-40.222 32.009Q-40.321 32.009-40.391 31.936Q-40.461 31.862-40.461 31.763Q-40.461 31.709-40.447 31.678L-40.440 31.664Q-40.434 31.644-40.425 31.633Q-40.416 31.623-40.413 31.616Q-40.769 31.616-41.056 31.839Q-40.769 32.132-40.769 32.498Q-40.769 32.813-40.953 33.045Q-41.138 33.278-41.427 33.406Q-41.715 33.534-42.023 33.534Q-42.225 33.534-42.416 33.484Q-42.607 33.435-42.785 33.325Q-42.877 33.452-42.877 33.595Q-42.877 33.777-42.749 33.912Q-42.621 34.047-42.437 34.047L-41.804 34.047Q-41.356 34.047-40.987 34.118Q-40.618 34.190-40.358 34.419Q-40.099 34.648-40.099 35.082Q-40.099 35.403-40.394 35.605Q-40.690 35.807-41.093 35.896Q-41.497 35.985-41.811 35.985Q-42.129 35.985-42.532 35.896Q-42.936 35.807-43.231 35.605Q-43.527 35.403-43.527 35.082M-43.072 35.082Q-43.072 35.311-42.854 35.460Q-42.635 35.609-42.343 35.677Q-42.050 35.745-41.811 35.745Q-41.647 35.745-41.438 35.709Q-41.230 35.674-41.023 35.593Q-40.816 35.513-40.685 35.385Q-40.553 35.257-40.553 35.082Q-40.553 34.730-40.934 34.636Q-41.315 34.542-41.818 34.542L-42.437 34.542Q-42.676 34.542-42.874 34.693Q-43.072 34.843-43.072 35.082M-42.023 33.295Q-41.356 33.295-41.356 32.498Q-41.356 31.698-42.023 31.698Q-42.693 31.698-42.693 32.498Q-42.693 33.295-42.023 33.295M-37.822 34.549L-39.456 34.549L-39.456 34.269Q-39.227 34.269-39.078 34.235Q-38.930 34.200-38.930 34.060L-38.930 30.441Q-38.930 30.171-39.037 30.109Q-39.145 30.048-39.456 30.048L-39.456 29.767L-38.376 29.692L-38.376 32.078Q-38.270 31.893-38.092 31.751Q-37.915 31.610-37.706 31.536Q-37.498 31.463-37.272 31.463Q-36.766 31.463-36.482 31.686Q-36.199 31.910-36.199 32.406L-36.199 34.060Q-36.199 34.197-36.050 34.233Q-35.901 34.269-35.676 34.269L-35.676 34.549L-37.306 34.549L-37.306 34.269Q-37.077 34.269-36.928 34.235Q-36.780 34.200-36.780 34.060L-36.780 32.420Q-36.780 32.085-36.899 31.885Q-37.019 31.685-37.333 31.685Q-37.604 31.685-37.838 31.821Q-38.072 31.958-38.210 32.192Q-38.349 32.426-38.349 32.700L-38.349 34.060Q-38.349 34.197-38.198 34.233Q-38.048 34.269-37.822 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(41.1 -90.252)\">\u003Cpath d=\"M-31.580 34.549L-31.847 34.549L-31.847 30.441Q-31.847 30.171-31.954 30.109Q-32.062 30.048-32.373 30.048L-32.373 29.767L-31.293 29.692L-31.293 31.862Q-31.084 31.671-30.799 31.567Q-30.514 31.463-30.216 31.463Q-29.898 31.463-29.601 31.584Q-29.304 31.705-29.081 31.921Q-28.859 32.136-28.733 32.421Q-28.606 32.707-28.606 33.038Q-28.606 33.483-28.846 33.847Q-29.085 34.211-29.478 34.414Q-29.871 34.617-30.315 34.617Q-30.510 34.617-30.700 34.561Q-30.889 34.505-31.050 34.400Q-31.211 34.296-31.351 34.135L-31.580 34.549M-31.265 32.204L-31.265 33.821Q-31.129 34.081-30.888 34.238Q-30.647 34.395-30.370 34.395Q-30.076 34.395-29.864 34.288Q-29.652 34.180-29.519 33.988Q-29.386 33.797-29.327 33.558Q-29.269 33.319-29.269 33.038Q-29.269 32.679-29.363 32.375Q-29.457 32.071-29.685 31.878Q-29.912 31.685-30.278 31.685Q-30.578 31.685-30.845 31.821Q-31.112 31.958-31.265 32.204M-26.354 34.549L-27.906 34.549L-27.906 34.269Q-27.680 34.269-27.531 34.235Q-27.383 34.200-27.383 34.060L-27.383 32.211Q-27.383 32.023-27.430 31.939Q-27.478 31.856-27.576 31.837Q-27.673 31.818-27.885 31.818L-27.885 31.538L-26.829 31.463L-26.829 34.060Q-26.829 34.200-26.697 34.235Q-26.566 34.269-26.354 34.269L-26.354 34.549M-27.625 30.242Q-27.625 30.071-27.502 29.952Q-27.379 29.832-27.208 29.832Q-27.041 29.832-26.918 29.952Q-26.795 30.071-26.795 30.242Q-26.795 30.417-26.918 30.540Q-27.041 30.663-27.208 30.663Q-27.379 30.663-27.502 30.540Q-27.625 30.417-27.625 30.242M-25.650 33.821Q-25.650 33.489-25.426 33.262Q-25.202 33.035-24.858 32.907Q-24.515 32.778-24.142 32.726Q-23.770 32.673-23.466 32.673L-23.466 32.420Q-23.466 32.215-23.573 32.035Q-23.681 31.856-23.862 31.753Q-24.043 31.651-24.252 31.651Q-24.659 31.651-24.894 31.743Q-24.805 31.780-24.759 31.864Q-24.713 31.948-24.713 32.050Q-24.713 32.146-24.759 32.225Q-24.805 32.303-24.886 32.348Q-24.966 32.392-25.055 32.392Q-25.205 32.392-25.306 32.295Q-25.407 32.197-25.407 32.050Q-25.407 31.428-24.252 31.428Q-24.040 31.428-23.790 31.492Q-23.541 31.555-23.339 31.674Q-23.138 31.794-23.011 31.979Q-22.885 32.163-22.885 32.406L-22.885 33.982Q-22.885 34.098-22.823 34.194Q-22.762 34.289-22.649 34.289Q-22.539 34.289-22.474 34.195Q-22.409 34.101-22.409 33.982L-22.409 33.534L-22.143 33.534L-22.143 33.982Q-22.143 34.252-22.370 34.417Q-22.597 34.583-22.878 34.583Q-23.086 34.583-23.223 34.429Q-23.360 34.276-23.384 34.060Q-23.531 34.327-23.813 34.472Q-24.095 34.617-24.419 34.617Q-24.696 34.617-24.980 34.542Q-25.264 34.467-25.457 34.288Q-25.650 34.108-25.650 33.821M-25.034 33.821Q-25.034 33.995-24.934 34.125Q-24.833 34.255-24.677 34.325Q-24.522 34.395-24.358 34.395Q-24.139 34.395-23.930 34.298Q-23.722 34.200-23.594 34.019Q-23.466 33.838-23.466 33.612L-23.466 32.884Q-23.790 32.884-24.156 32.975Q-24.522 33.066-24.778 33.278Q-25.034 33.489-25.034 33.821M-21.726 34.542L-21.726 33.479Q-21.726 33.455-21.699 33.428Q-21.671 33.401-21.647 33.401L-21.538 33.401Q-21.473 33.401-21.459 33.459Q-21.364 33.893-21.118 34.144Q-20.871 34.395-20.458 34.395Q-20.116 34.395-19.863 34.262Q-19.610 34.129-19.610 33.821Q-19.610 33.664-19.704 33.549Q-19.798 33.435-19.937 33.366Q-20.075 33.298-20.243 33.260L-20.824 33.161Q-21.179 33.093-21.452 32.872Q-21.726 32.652-21.726 32.310Q-21.726 32.061-21.615 31.886Q-21.504 31.712-21.317 31.613Q-21.131 31.514-20.916 31.471Q-20.701 31.428-20.458 31.428Q-20.044 31.428-19.764 31.610L-19.549 31.435Q-19.538 31.432-19.532 31.430Q-19.525 31.428-19.514 31.428L-19.463 31.428Q-19.436 31.428-19.412 31.452Q-19.388 31.476-19.388 31.504L-19.388 32.351Q-19.388 32.372-19.412 32.399Q-19.436 32.426-19.463 32.426L-19.576 32.426Q-19.603 32.426-19.629 32.401Q-19.655 32.375-19.655 32.351Q-19.655 32.115-19.761 31.951Q-19.867 31.787-20.049 31.705Q-20.232 31.623-20.465 31.623Q-20.793 31.623-21.049 31.726Q-21.305 31.828-21.305 32.105Q-21.305 32.300-21.123 32.409Q-20.940 32.519-20.711 32.560L-20.137 32.666Q-19.890 32.714-19.677 32.842Q-19.463 32.970-19.326 33.173Q-19.190 33.377-19.190 33.626Q-19.190 34.139-19.555 34.378Q-19.921 34.617-20.458 34.617Q-20.953 34.617-21.285 34.323L-21.552 34.597Q-21.572 34.617-21.599 34.617L-21.647 34.617Q-21.671 34.617-21.699 34.590Q-21.726 34.563-21.726 34.542\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M131.619 34.549H254.21\"\u002F>\u003Cpath stroke=\"none\" d=\"m256.81 34.549-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(311.022 2.354)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-45.294 34.549L-47.030 34.549L-47.030 34.269Q-46.801 34.269-46.653 34.235Q-46.504 34.200-46.504 34.060L-46.504 32.211Q-46.504 31.941-46.612 31.880Q-46.719 31.818-47.030 31.818L-47.030 31.538L-46.001 31.463L-46.001 32.170Q-45.872 31.862-45.629 31.663Q-45.386 31.463-45.068 31.463Q-44.850 31.463-44.679 31.587Q-44.508 31.712-44.508 31.924Q-44.508 32.061-44.607 32.160Q-44.706 32.259-44.839 32.259Q-44.976 32.259-45.075 32.160Q-45.174 32.061-45.174 31.924Q-45.174 31.784-45.075 31.685Q-45.366 31.685-45.566 31.881Q-45.766 32.078-45.858 32.372Q-45.950 32.666-45.950 32.946L-45.950 34.060Q-45.950 34.269-45.294 34.269L-45.294 34.549M-43.865 33.821Q-43.865 33.489-43.641 33.262Q-43.417 33.035-43.074 32.907Q-42.730 32.778-42.358 32.726Q-41.985 32.673-41.681 32.673L-41.681 32.420Q-41.681 32.215-41.789 32.035Q-41.896 31.856-42.078 31.753Q-42.259 31.651-42.467 31.651Q-42.874 31.651-43.110 31.743Q-43.021 31.780-42.975 31.864Q-42.929 31.948-42.929 32.050Q-42.929 32.146-42.975 32.225Q-43.021 32.303-43.101 32.348Q-43.182 32.392-43.271 32.392Q-43.421 32.392-43.522 32.295Q-43.623 32.197-43.623 32.050Q-43.623 31.428-42.467 31.428Q-42.255 31.428-42.006 31.492Q-41.756 31.555-41.555 31.674Q-41.353 31.794-41.227 31.979Q-41.100 32.163-41.100 32.406L-41.100 33.982Q-41.100 34.098-41.039 34.194Q-40.977 34.289-40.864 34.289Q-40.755 34.289-40.690 34.195Q-40.625 34.101-40.625 33.982L-40.625 33.534L-40.358 33.534L-40.358 33.982Q-40.358 34.252-40.586 34.417Q-40.813 34.583-41.093 34.583Q-41.302 34.583-41.438 34.429Q-41.575 34.276-41.599 34.060Q-41.746 34.327-42.028 34.472Q-42.310 34.617-42.635 34.617Q-42.912 34.617-43.195 34.542Q-43.479 34.467-43.672 34.288Q-43.865 34.108-43.865 33.821M-43.250 33.821Q-43.250 33.995-43.149 34.125Q-43.048 34.255-42.893 34.325Q-42.737 34.395-42.573 34.395Q-42.354 34.395-42.146 34.298Q-41.937 34.200-41.809 34.019Q-41.681 33.838-41.681 33.612L-41.681 32.884Q-42.006 32.884-42.372 32.975Q-42.737 33.066-42.994 33.278Q-43.250 33.489-43.250 33.821M-38.325 34.549L-39.876 34.549L-39.876 34.269Q-39.651 34.269-39.502 34.235Q-39.354 34.200-39.354 34.060L-39.354 32.211Q-39.354 32.023-39.401 31.939Q-39.449 31.856-39.547 31.837Q-39.644 31.818-39.856 31.818L-39.856 31.538L-38.800 31.463L-38.800 34.060Q-38.800 34.200-38.668 34.235Q-38.537 34.269-38.325 34.269L-38.325 34.549M-39.596 30.242Q-39.596 30.071-39.473 29.952Q-39.350 29.832-39.179 29.832Q-39.012 29.832-38.889 29.952Q-38.766 30.071-38.766 30.242Q-38.766 30.417-38.889 30.540Q-39.012 30.663-39.179 30.663Q-39.350 30.663-39.473 30.540Q-39.596 30.417-39.596 30.242M-35.997 34.549L-37.631 34.549L-37.631 34.269Q-37.402 34.269-37.253 34.235Q-37.104 34.200-37.104 34.060L-37.104 32.211Q-37.104 31.941-37.212 31.880Q-37.320 31.818-37.631 31.818L-37.631 31.538L-36.571 31.463L-36.571 32.112Q-36.400 31.804-36.096 31.633Q-35.792 31.463-35.447 31.463Q-34.941 31.463-34.657 31.686Q-34.374 31.910-34.374 32.406L-34.374 34.060Q-34.374 34.197-34.225 34.233Q-34.076 34.269-33.851 34.269L-33.851 34.549L-35.481 34.549L-35.481 34.269Q-35.252 34.269-35.103 34.235Q-34.955 34.200-34.955 34.060L-34.955 32.420Q-34.955 32.085-35.074 31.885Q-35.194 31.685-35.508 31.685Q-35.778 31.685-36.012 31.821Q-36.247 31.958-36.385 32.192Q-36.523 32.426-36.523 32.700L-36.523 34.060Q-36.523 34.197-36.373 34.233Q-36.223 34.269-35.997 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(311.022 2.354)\">\u003Cpath d=\"M-30.553 34.542L-30.553 33.479Q-30.553 33.455-30.525 33.428Q-30.498 33.401-30.474 33.401L-30.365 33.401Q-30.300 33.401-30.286 33.459Q-30.190 33.893-29.944 34.144Q-29.698 34.395-29.284 34.395Q-28.943 34.395-28.690 34.262Q-28.437 34.129-28.437 33.821Q-28.437 33.664-28.531 33.549Q-28.625 33.435-28.763 33.366Q-28.902 33.298-29.069 33.260L-29.650 33.161Q-30.006 33.093-30.279 32.872Q-30.553 32.652-30.553 32.310Q-30.553 32.061-30.441 31.886Q-30.330 31.712-30.144 31.613Q-29.958 31.514-29.742 31.471Q-29.527 31.428-29.284 31.428Q-28.871 31.428-28.591 31.610L-28.375 31.435Q-28.365 31.432-28.358 31.430Q-28.351 31.428-28.341 31.428L-28.290 31.428Q-28.263 31.428-28.239 31.452Q-28.215 31.476-28.215 31.504L-28.215 32.351Q-28.215 32.372-28.239 32.399Q-28.263 32.426-28.290 32.426L-28.403 32.426Q-28.430 32.426-28.456 32.401Q-28.481 32.375-28.481 32.351Q-28.481 32.115-28.587 31.951Q-28.693 31.787-28.876 31.705Q-29.059 31.623-29.291 31.623Q-29.619 31.623-29.876 31.726Q-30.132 31.828-30.132 32.105Q-30.132 32.300-29.949 32.409Q-29.766 32.519-29.537 32.560L-28.963 32.666Q-28.717 32.714-28.503 32.842Q-28.290 32.970-28.153 33.173Q-28.016 33.377-28.016 33.626Q-28.016 34.139-28.382 34.378Q-28.748 34.617-29.284 34.617Q-29.780 34.617-30.112 34.323L-30.378 34.597Q-30.399 34.617-30.426 34.617L-30.474 34.617Q-30.498 34.617-30.525 34.590Q-30.553 34.563-30.553 34.542M-25.771 34.549L-27.323 34.549L-27.323 34.269Q-27.097 34.269-26.948 34.235Q-26.800 34.200-26.800 34.060L-26.800 32.211Q-26.800 32.023-26.847 31.939Q-26.895 31.856-26.993 31.837Q-27.090 31.818-27.302 31.818L-27.302 31.538L-26.246 31.463L-26.246 34.060Q-26.246 34.200-26.114 34.235Q-25.983 34.269-25.771 34.269L-25.771 34.549M-27.042 30.242Q-27.042 30.071-26.919 29.952Q-26.796 29.832-26.625 29.832Q-26.458 29.832-26.335 29.952Q-26.212 30.071-26.212 30.242Q-26.212 30.417-26.335 30.540Q-26.458 30.663-26.625 30.663Q-26.796 30.663-26.919 30.540Q-27.042 30.417-27.042 30.242M-22.394 34.549L-25.067 34.549Q-25.111 34.549-25.138 34.522Q-25.166 34.494-25.166 34.450L-25.166 34.382Q-25.166 34.341-25.138 34.310L-23.030 31.757L-23.669 31.757Q-24.093 31.757-24.325 31.823Q-24.557 31.890-24.677 32.100Q-24.797 32.310-24.797 32.731L-25.060 32.731L-24.978 31.531L-22.387 31.531Q-22.346 31.531-22.317 31.558Q-22.288 31.586-22.288 31.630L-22.288 31.678Q-22.288 31.722-22.312 31.750L-24.417 34.296L-23.737 34.296Q-23.409 34.296-23.192 34.260Q-22.975 34.224-22.807 34.074Q-22.667 33.937-22.614 33.713Q-22.561 33.489-22.534 33.161L-22.267 33.161L-22.394 34.549M-21.618 33.014Q-21.618 32.693-21.493 32.404Q-21.368 32.115-21.143 31.892Q-20.917 31.668-20.622 31.548Q-20.326 31.428-20.008 31.428Q-19.680 31.428-19.419 31.528Q-19.157 31.627-18.981 31.809Q-18.805 31.992-18.711 32.250Q-18.617 32.508-18.617 32.840Q-18.617 32.932-18.699 32.953L-20.955 32.953L-20.955 33.014Q-20.955 33.602-20.671 33.985Q-20.388 34.368-19.820 34.368Q-19.499 34.368-19.231 34.175Q-18.962 33.982-18.873 33.667Q-18.867 33.626-18.791 33.612L-18.699 33.612Q-18.617 33.636-18.617 33.708Q-18.617 33.715-18.624 33.742Q-18.737 34.139-19.107 34.378Q-19.478 34.617-19.902 34.617Q-20.340 34.617-20.740 34.409Q-21.139 34.200-21.379 33.833Q-21.618 33.466-21.618 33.014M-20.948 32.744L-19.133 32.744Q-19.133 32.467-19.231 32.215Q-19.328 31.962-19.526 31.806Q-19.724 31.651-20.008 31.651Q-20.285 31.651-20.499 31.809Q-20.712 31.968-20.830 32.223Q-20.948 32.478-20.948 32.744\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M131.619 34.549v-94.14\"\u002F>\u003Cpath stroke=\"none\" d=\"m131.619-62.19-2.08 4.16 2.08-1.56 2.08 1.56\"\u002F>\u003Cg transform=\"translate(173.64 -100.472)\">\u003Cpath d=\"M-50.206 33.014Q-50.206 32.693-50.081 32.404Q-49.956 32.115-49.730 31.892Q-49.505 31.668-49.209 31.548Q-48.914 31.428-48.596 31.428Q-48.268 31.428-48.006 31.528Q-47.745 31.627-47.569 31.809Q-47.393 31.992-47.299 32.250Q-47.205 32.508-47.205 32.840Q-47.205 32.932-47.287 32.953L-49.542 32.953L-49.542 33.014Q-49.542 33.602-49.259 33.985Q-48.975 34.368-48.408 34.368Q-48.086 34.368-47.818 34.175Q-47.550 33.982-47.461 33.667Q-47.454 33.626-47.379 33.612L-47.287 33.612Q-47.205 33.636-47.205 33.708Q-47.205 33.715-47.211 33.742Q-47.324 34.139-47.695 34.378Q-48.066 34.617-48.490 34.617Q-48.927 34.617-49.327 34.409Q-49.727 34.200-49.966 33.833Q-50.206 33.466-50.206 33.014M-49.536 32.744L-47.721 32.744Q-47.721 32.467-47.818 32.215Q-47.916 31.962-48.114 31.806Q-48.312 31.651-48.596 31.651Q-48.873 31.651-49.086 31.809Q-49.300 31.968-49.418 32.223Q-49.536 32.478-49.536 32.744M-44.867 34.549L-46.603 34.549L-46.603 34.269Q-46.374 34.269-46.225 34.235Q-46.077 34.200-46.077 34.060L-46.077 32.211Q-46.077 31.941-46.184 31.880Q-46.292 31.818-46.603 31.818L-46.603 31.538L-45.574 31.463L-45.574 32.170Q-45.444 31.862-45.202 31.663Q-44.959 31.463-44.641 31.463Q-44.422 31.463-44.251 31.587Q-44.081 31.712-44.081 31.924Q-44.081 32.061-44.180 32.160Q-44.279 32.259-44.412 32.259Q-44.549 32.259-44.648 32.160Q-44.747 32.061-44.747 31.924Q-44.747 31.784-44.648 31.685Q-44.938 31.685-45.138 31.881Q-45.338 32.078-45.431 32.372Q-45.523 32.666-45.523 32.946L-45.523 34.060Q-45.523 34.269-44.867 34.269L-44.867 34.549M-41.746 34.549L-43.482 34.549L-43.482 34.269Q-43.253 34.269-43.105 34.235Q-42.956 34.200-42.956 34.060L-42.956 32.211Q-42.956 31.941-43.064 31.880Q-43.171 31.818-43.482 31.818L-43.482 31.538L-42.454 31.463L-42.454 32.170Q-42.324 31.862-42.081 31.663Q-41.838 31.463-41.521 31.463Q-41.302 31.463-41.131 31.587Q-40.960 31.712-40.960 31.924Q-40.960 32.061-41.059 32.160Q-41.158 32.259-41.291 32.259Q-41.428 32.259-41.527 32.160Q-41.626 32.061-41.626 31.924Q-41.626 31.784-41.527 31.685Q-41.818 31.685-42.018 31.881Q-42.218 32.078-42.310 32.372Q-42.402 32.666-42.402 32.946L-42.402 34.060Q-42.402 34.269-41.746 34.269L-41.746 34.549M-40.416 33.066Q-40.416 32.724-40.281 32.425Q-40.146 32.126-39.907 31.902Q-39.668 31.678-39.350 31.553Q-39.032 31.428-38.701 31.428Q-38.256 31.428-37.856 31.644Q-37.457 31.859-37.222 32.237Q-36.988 32.614-36.988 33.066Q-36.988 33.407-37.130 33.691Q-37.272 33.975-37.516 34.182Q-37.761 34.388-38.070 34.503Q-38.379 34.617-38.701 34.617Q-39.131 34.617-39.533 34.416Q-39.935 34.214-40.176 33.862Q-40.416 33.510-40.416 33.066M-38.701 34.368Q-38.099 34.368-37.875 33.990Q-37.651 33.612-37.651 32.980Q-37.651 32.368-37.885 32.009Q-38.120 31.651-38.701 31.651Q-39.753 31.651-39.753 32.980Q-39.753 33.612-39.528 33.990Q-39.302 34.368-38.701 34.368M-34.644 34.549L-36.380 34.549L-36.380 34.269Q-36.151 34.269-36.002 34.235Q-35.854 34.200-35.854 34.060L-35.854 32.211Q-35.854 31.941-35.961 31.880Q-36.069 31.818-36.380 31.818L-36.380 31.538L-35.351 31.463L-35.351 32.170Q-35.221 31.862-34.979 31.663Q-34.736 31.463-34.418 31.463Q-34.199 31.463-34.028 31.587Q-33.857 31.712-33.857 31.924Q-33.857 32.061-33.957 32.160Q-34.056 32.259-34.189 32.259Q-34.326 32.259-34.425 32.160Q-34.524 32.061-34.524 31.924Q-34.524 31.784-34.425 31.685Q-34.715 31.685-34.915 31.881Q-35.115 32.078-35.208 32.372Q-35.300 32.666-35.300 32.946L-35.300 34.060Q-35.300 34.269-34.644 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-warn)\" d=\"m143-27.625 2.626 2.29 2.626 2.147 2.626 2.008 2.627 1.886 2.626 1.767 2.626 1.655 2.626 1.553 2.626 1.456 2.627 1.364 2.626 1.277 2.626 1.2 2.626 1.127 2.626 1.05 2.627.987 2.626.93 2.626.865 2.626.813 2.626.764 2.627.716 2.626.673 2.626.624 2.626.59 2.626.552 2.627.518 2.626.489 2.626.454 2.626.426 2.626.397 2.627.377 2.626.353 2.626.33 2.626.304 2.626.29 2.627.271 2.626.257 2.626.237 2.626.222 2.626.214 2.627.193\" style=\"stroke-width:1.2\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"m143 18.868 2.626.504 2.626.46 2.626.42 2.627.382 2.626.35 2.626.318 2.626.29 2.626.264 2.627.24 2.626.221 2.626.2 2.626.183 2.626.167 2.627.152 2.626.14 2.626.125 2.626.115 2.626.106 2.627.095 2.626.087 2.626.08 2.626.073 2.626.066 2.627.06 2.626.055 2.626.05 2.626.047 2.626.041 2.627.038 2.626.035 2.626.031 2.626.03 2.626.026 2.627.024 2.626.021 2.626.021 2.626.018 2.626.017 2.627.014\" style=\"stroke-width:1.2\"\u002F>\u003Cg style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M131.619 14.632h113.81\"\u002F>\u003Cg transform=\"translate(299.441 -18.445)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-46.986 33.821Q-46.986 33.489-46.762 33.262Q-46.538 33.035-46.195 32.907Q-45.851 32.778-45.479 32.726Q-45.106 32.673-44.802 32.673L-44.802 32.420Q-44.802 32.215-44.909 32.035Q-45.017 31.856-45.198 31.753Q-45.379 31.651-45.588 31.651Q-45.995 31.651-46.230 31.743Q-46.142 31.780-46.095 31.864Q-46.049 31.948-46.049 32.050Q-46.049 32.146-46.095 32.225Q-46.142 32.303-46.222 32.348Q-46.302 32.392-46.391 32.392Q-46.541 32.392-46.642 32.295Q-46.743 32.197-46.743 32.050Q-46.743 31.428-45.588 31.428Q-45.376 31.428-45.126 31.492Q-44.877 31.555-44.675 31.674Q-44.474 31.794-44.347 31.979Q-44.221 32.163-44.221 32.406L-44.221 33.982Q-44.221 34.098-44.159 34.194Q-44.098 34.289-43.985 34.289Q-43.875 34.289-43.811 34.195Q-43.746 34.101-43.746 33.982L-43.746 33.534L-43.479 33.534L-43.479 33.982Q-43.479 34.252-43.706 34.417Q-43.934 34.583-44.214 34.583Q-44.422 34.583-44.559 34.429Q-44.696 34.276-44.720 34.060Q-44.867 34.327-45.149 34.472Q-45.431 34.617-45.755 34.617Q-46.032 34.617-46.316 34.542Q-46.600 34.467-46.793 34.288Q-46.986 34.108-46.986 33.821M-46.371 33.821Q-46.371 33.995-46.270 34.125Q-46.169 34.255-46.013 34.325Q-45.858 34.395-45.694 34.395Q-45.475 34.395-45.267 34.298Q-45.058 34.200-44.930 34.019Q-44.802 33.838-44.802 33.612L-44.802 32.884Q-45.126 32.884-45.492 32.975Q-45.858 33.066-46.114 33.278Q-46.371 33.489-46.371 33.821M-41.312 34.549L-43.048 34.549L-43.048 34.269Q-42.819 34.269-42.671 34.235Q-42.522 34.200-42.522 34.060L-42.522 32.211Q-42.522 31.941-42.630 31.880Q-42.737 31.818-43.048 31.818L-43.048 31.538L-42.020 31.463L-42.020 32.170Q-41.890 31.862-41.647 31.663Q-41.404 31.463-41.086 31.463Q-40.868 31.463-40.697 31.587Q-40.526 31.712-40.526 31.924Q-40.526 32.061-40.625 32.160Q-40.724 32.259-40.857 32.259Q-40.994 32.259-41.093 32.160Q-41.192 32.061-41.192 31.924Q-41.192 31.784-41.093 31.685Q-41.384 31.685-41.584 31.881Q-41.784 32.078-41.876 32.372Q-41.968 32.666-41.968 32.946L-41.968 34.060Q-41.968 34.269-41.312 34.269L-41.312 34.549M-39.982 35.082Q-39.982 34.836-39.786 34.652Q-39.589 34.467-39.333 34.388Q-39.470 34.276-39.541 34.115Q-39.613 33.954-39.613 33.773Q-39.613 33.452-39.401 33.206Q-39.736 32.908-39.736 32.498Q-39.736 32.037-39.347 31.750Q-38.957 31.463-38.479 31.463Q-38.007 31.463-37.672 31.709Q-37.498 31.555-37.287 31.473Q-37.077 31.391-36.848 31.391Q-36.684 31.391-36.563 31.498Q-36.441 31.606-36.441 31.770Q-36.441 31.866-36.513 31.938Q-36.585 32.009-36.677 32.009Q-36.776 32.009-36.846 31.936Q-36.916 31.862-36.916 31.763Q-36.916 31.709-36.903 31.678L-36.896 31.664Q-36.889 31.644-36.881 31.633Q-36.872 31.623-36.869 31.616Q-37.224 31.616-37.511 31.839Q-37.224 32.132-37.224 32.498Q-37.224 32.813-37.409 33.045Q-37.593 33.278-37.882 33.406Q-38.171 33.534-38.479 33.534Q-38.680 33.534-38.872 33.484Q-39.063 33.435-39.241 33.325Q-39.333 33.452-39.333 33.595Q-39.333 33.777-39.205 33.912Q-39.077 34.047-38.892 34.047L-38.260 34.047Q-37.812 34.047-37.443 34.118Q-37.074 34.190-36.814 34.419Q-36.554 34.648-36.554 35.082Q-36.554 35.403-36.850 35.605Q-37.146 35.807-37.549 35.896Q-37.952 35.985-38.267 35.985Q-38.584 35.985-38.988 35.896Q-39.391 35.807-39.687 35.605Q-39.982 35.403-39.982 35.082M-39.528 35.082Q-39.528 35.311-39.309 35.460Q-39.090 35.609-38.798 35.677Q-38.506 35.745-38.267 35.745Q-38.103 35.745-37.894 35.709Q-37.686 35.674-37.479 35.593Q-37.272 35.513-37.140 35.385Q-37.009 35.257-37.009 35.082Q-37.009 34.730-37.390 34.636Q-37.771 34.542-38.273 34.542L-38.892 34.542Q-39.131 34.542-39.330 34.693Q-39.528 34.843-39.528 35.082M-38.479 33.295Q-37.812 33.295-37.812 32.498Q-37.812 31.698-38.479 31.698Q-39.148 31.698-39.148 32.498Q-39.148 33.295-38.479 33.295M-36 33.014Q-36 32.693-35.876 32.404Q-35.751 32.115-35.525 31.892Q-35.300 31.668-35.004 31.548Q-34.708 31.428-34.391 31.428Q-34.062 31.428-33.801 31.528Q-33.540 31.627-33.364 31.809Q-33.187 31.992-33.094 32.250Q-33 32.508-33 32.840Q-33 32.932-33.082 32.953L-35.337 32.953L-35.337 33.014Q-35.337 33.602-35.054 33.985Q-34.770 34.368-34.203 34.368Q-33.881 34.368-33.613 34.175Q-33.345 33.982-33.256 33.667Q-33.249 33.626-33.174 33.612L-33.082 33.612Q-33 33.636-33 33.708Q-33 33.715-33.006 33.742Q-33.119 34.139-33.490 34.378Q-33.861 34.617-34.285 34.617Q-34.722 34.617-35.122 34.409Q-35.522 34.200-35.761 33.833Q-36 33.466-36 33.014M-35.331 32.744L-33.516 32.744Q-33.516 32.467-33.613 32.215Q-33.710 31.962-33.909 31.806Q-34.107 31.651-34.391 31.651Q-34.667 31.651-34.881 31.809Q-35.095 31.968-35.213 32.223Q-35.331 32.478-35.331 32.744M-31.885 33.708L-31.885 31.811L-32.524 31.811L-32.524 31.589Q-32.207 31.589-31.989 31.379Q-31.772 31.169-31.672 30.859Q-31.571 30.550-31.571 30.242L-31.304 30.242L-31.304 31.531L-30.228 31.531L-30.228 31.811L-31.304 31.811L-31.304 33.695Q-31.304 33.971-31.200 34.170Q-31.096 34.368-30.836 34.368Q-30.679 34.368-30.573 34.264Q-30.467 34.159-30.417 34.006Q-30.368 33.852-30.368 33.695L-30.368 33.281L-30.101 33.281L-30.101 33.708Q-30.101 33.934-30.200 34.144Q-30.299 34.354-30.484 34.486Q-30.668 34.617-30.897 34.617Q-31.335 34.617-31.610 34.380Q-31.885 34.142-31.885 33.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\">\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(251.072 -57.32)\">\u003Cpath d=\"M-48.575 34.522L-49.703 32.023Q-49.775 31.876-49.905 31.844Q-50.035 31.811-50.264 31.811L-50.264 31.531L-48.750 31.531L-48.750 31.811Q-49.102 31.811-49.102 31.958Q-49.102 32.003-49.091 32.023L-48.227 33.941L-47.447 32.211Q-47.413 32.143-47.413 32.064Q-47.413 31.951-47.497 31.881Q-47.581 31.811-47.700 31.811L-47.700 31.531L-46.504 31.531L-46.504 31.811Q-46.723 31.811-46.894 31.914Q-47.064 32.016-47.153 32.211L-48.189 34.522Q-48.237 34.617-48.343 34.617L-48.421 34.617Q-48.527 34.617-48.575 34.522\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(251.072 -57.32)\">\u003Cpath d=\"M-46.335 33.821Q-46.335 33.489-46.112 33.262Q-45.888 33.035-45.544 32.907Q-45.201 32.778-44.828 32.726Q-44.456 32.673-44.151 32.673L-44.151 32.420Q-44.151 32.215-44.259 32.035Q-44.367 31.856-44.548 31.753Q-44.729 31.651-44.937 31.651Q-45.344 31.651-45.580 31.743Q-45.491 31.780-45.445 31.864Q-45.399 31.948-45.399 32.050Q-45.399 32.146-45.445 32.225Q-45.491 32.303-45.572 32.348Q-45.652 32.392-45.741 32.392Q-45.891 32.392-45.992 32.295Q-46.093 32.197-46.093 32.050Q-46.093 31.428-44.937 31.428Q-44.726 31.428-44.476 31.492Q-44.227 31.555-44.025 31.674Q-43.823 31.794-43.697 31.979Q-43.570 32.163-43.570 32.406L-43.570 33.982Q-43.570 34.098-43.509 34.194Q-43.447 34.289-43.334 34.289Q-43.225 34.289-43.160 34.195Q-43.095 34.101-43.095 33.982L-43.095 33.534L-42.829 33.534L-42.829 33.982Q-42.829 34.252-43.056 34.417Q-43.283 34.583-43.563 34.583Q-43.772 34.583-43.909 34.429Q-44.045 34.276-44.069 34.060Q-44.216 34.327-44.498 34.472Q-44.780 34.617-45.105 34.617Q-45.382 34.617-45.666 34.542Q-45.949 34.467-46.142 34.288Q-46.335 34.108-46.335 33.821M-45.720 33.821Q-45.720 33.995-45.619 34.125Q-45.519 34.255-45.363 34.325Q-45.208 34.395-45.043 34.395Q-44.825 34.395-44.616 34.298Q-44.408 34.200-44.280 34.019Q-44.151 33.838-44.151 33.612L-44.151 32.884Q-44.476 32.884-44.842 32.975Q-45.208 33.066-45.464 33.278Q-45.720 33.489-45.720 33.821M-40.744 34.549L-42.347 34.549L-42.347 34.269Q-42.121 34.269-41.972 34.235Q-41.824 34.200-41.824 34.060L-41.824 30.441Q-41.824 30.171-41.931 30.109Q-42.039 30.048-42.347 30.048L-42.347 29.767L-41.270 29.692L-41.270 34.060Q-41.270 34.197-41.120 34.233Q-40.969 34.269-40.744 34.269\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" 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 transform=\"translate(259.608 -1.717)\">\u003Cpath d=\"M-49.638 33.708L-49.638 31.811L-50.277 31.811L-50.277 31.589Q-49.959 31.589-49.742 31.379Q-49.525 31.169-49.425 30.859Q-49.324 30.550-49.324 30.242L-49.057 30.242L-49.057 31.531L-47.980 31.531L-47.980 31.811L-49.057 31.811L-49.057 33.695Q-49.057 33.971-48.953 34.170Q-48.849 34.368-48.589 34.368Q-48.432 34.368-48.326 34.264Q-48.220 34.159-48.170 34.006Q-48.121 33.852-48.121 33.695L-48.121 33.281L-47.854 33.281L-47.854 33.708Q-47.854 33.934-47.953 34.144Q-48.052 34.354-48.237 34.486Q-48.421 34.617-48.650 34.617Q-49.088 34.617-49.363 34.380Q-49.638 34.142-49.638 33.708M-45.294 34.549L-47.030 34.549L-47.030 34.269Q-46.801 34.269-46.653 34.235Q-46.504 34.200-46.504 34.060L-46.504 32.211Q-46.504 31.941-46.612 31.880Q-46.719 31.818-47.030 31.818L-47.030 31.538L-46.001 31.463L-46.001 32.170Q-45.872 31.862-45.629 31.663Q-45.386 31.463-45.068 31.463Q-44.850 31.463-44.679 31.587Q-44.508 31.712-44.508 31.924Q-44.508 32.061-44.607 32.160Q-44.706 32.259-44.839 32.259Q-44.976 32.259-45.075 32.160Q-45.174 32.061-45.174 31.924Q-45.174 31.784-45.075 31.685Q-45.366 31.685-45.566 31.881Q-45.766 32.078-45.858 32.372Q-45.950 32.666-45.950 32.946L-45.950 34.060Q-45.950 34.269-45.294 34.269L-45.294 34.549M-43.865 33.821Q-43.865 33.489-43.641 33.262Q-43.417 33.035-43.074 32.907Q-42.730 32.778-42.358 32.726Q-41.985 32.673-41.681 32.673L-41.681 32.420Q-41.681 32.215-41.789 32.035Q-41.896 31.856-42.078 31.753Q-42.259 31.651-42.467 31.651Q-42.874 31.651-43.110 31.743Q-43.021 31.780-42.975 31.864Q-42.929 31.948-42.929 32.050Q-42.929 32.146-42.975 32.225Q-43.021 32.303-43.101 32.348Q-43.182 32.392-43.271 32.392Q-43.421 32.392-43.522 32.295Q-43.623 32.197-43.623 32.050Q-43.623 31.428-42.467 31.428Q-42.255 31.428-42.006 31.492Q-41.756 31.555-41.555 31.674Q-41.353 31.794-41.227 31.979Q-41.100 32.163-41.100 32.406L-41.100 33.982Q-41.100 34.098-41.039 34.194Q-40.977 34.289-40.864 34.289Q-40.755 34.289-40.690 34.195Q-40.625 34.101-40.625 33.982L-40.625 33.534L-40.358 33.534L-40.358 33.982Q-40.358 34.252-40.586 34.417Q-40.813 34.583-41.093 34.583Q-41.302 34.583-41.438 34.429Q-41.575 34.276-41.599 34.060Q-41.746 34.327-42.028 34.472Q-42.310 34.617-42.635 34.617Q-42.912 34.617-43.195 34.542Q-43.479 34.467-43.672 34.288Q-43.865 34.108-43.865 33.821M-43.250 33.821Q-43.250 33.995-43.149 34.125Q-43.048 34.255-42.893 34.325Q-42.737 34.395-42.573 34.395Q-42.354 34.395-42.146 34.298Q-41.937 34.200-41.809 34.019Q-41.681 33.838-41.681 33.612L-41.681 32.884Q-42.006 32.884-42.372 32.975Q-42.737 33.066-42.994 33.278Q-43.250 33.489-43.250 33.821M-38.325 34.549L-39.876 34.549L-39.876 34.269Q-39.651 34.269-39.502 34.235Q-39.354 34.200-39.354 34.060L-39.354 32.211Q-39.354 32.023-39.401 31.939Q-39.449 31.856-39.547 31.837Q-39.644 31.818-39.856 31.818L-39.856 31.538L-38.800 31.463L-38.800 34.060Q-38.800 34.200-38.668 34.235Q-38.537 34.269-38.325 34.269L-38.325 34.549M-39.596 30.242Q-39.596 30.071-39.473 29.952Q-39.350 29.832-39.179 29.832Q-39.012 29.832-38.889 29.952Q-38.766 30.071-38.766 30.242Q-38.766 30.417-38.889 30.540Q-39.012 30.663-39.179 30.663Q-39.350 30.663-39.473 30.540Q-39.596 30.417-39.596 30.242M-35.997 34.549L-37.631 34.549L-37.631 34.269Q-37.402 34.269-37.253 34.235Q-37.104 34.200-37.104 34.060L-37.104 32.211Q-37.104 31.941-37.212 31.880Q-37.320 31.818-37.631 31.818L-37.631 31.538L-36.571 31.463L-36.571 32.112Q-36.400 31.804-36.096 31.633Q-35.792 31.463-35.447 31.463Q-34.941 31.463-34.657 31.686Q-34.374 31.910-34.374 32.406L-34.374 34.060Q-34.374 34.197-34.225 34.233Q-34.076 34.269-33.851 34.269L-33.851 34.549L-35.481 34.549L-35.481 34.269Q-35.252 34.269-35.103 34.235Q-34.955 34.200-34.955 34.060L-34.955 32.420Q-34.955 32.085-35.074 31.885Q-35.194 31.685-35.508 31.685Q-35.778 31.685-36.012 31.821Q-36.247 31.958-36.385 32.192Q-36.523 32.426-36.523 32.700L-36.523 34.060Q-36.523 34.197-36.373 34.233Q-36.223 34.269-35.997 34.269\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(215.784 -90.252)\">\u003Cpath d=\"M-48.483 34.549L-50.117 34.549L-50.117 34.269Q-49.888 34.269-49.739 34.235Q-49.590 34.200-49.590 34.060L-49.590 30.441Q-49.590 30.171-49.698 30.109Q-49.806 30.048-50.117 30.048L-50.117 29.767L-49.037 29.692L-49.037 32.078Q-48.931 31.893-48.753 31.751Q-48.575 31.610-48.367 31.536Q-48.158 31.463-47.933 31.463Q-47.427 31.463-47.143 31.686Q-46.859 31.910-46.859 32.406L-46.859 34.060Q-46.859 34.197-46.711 34.233Q-46.562 34.269-46.336 34.269L-46.336 34.549L-47.967 34.549L-47.967 34.269Q-47.738 34.269-47.589 34.235Q-47.440 34.200-47.440 34.060L-47.440 32.420Q-47.440 32.085-47.560 31.885Q-47.680 31.685-47.994 31.685Q-48.264 31.685-48.498 31.821Q-48.732 31.958-48.871 32.192Q-49.009 32.426-49.009 32.700L-49.009 34.060Q-49.009 34.197-48.859 34.233Q-48.708 34.269-48.483 34.269L-48.483 34.549M-44.132 34.549L-45.684 34.549L-45.684 34.269Q-45.458 34.269-45.309 34.235Q-45.161 34.200-45.161 34.060L-45.161 32.211Q-45.161 32.023-45.208 31.939Q-45.256 31.856-45.354 31.837Q-45.451 31.818-45.663 31.818L-45.663 31.538L-44.607 31.463L-44.607 34.060Q-44.607 34.200-44.475 34.235Q-44.344 34.269-44.132 34.269L-44.132 34.549M-45.403 30.242Q-45.403 30.071-45.280 29.952Q-45.157 29.832-44.986 29.832Q-44.819 29.832-44.696 29.952Q-44.573 30.071-44.573 30.242Q-44.573 30.417-44.696 30.540Q-44.819 30.663-44.986 30.663Q-45.157 30.663-45.280 30.540Q-45.403 30.417-45.403 30.242M-43.527 35.082Q-43.527 34.836-43.330 34.652Q-43.134 34.467-42.877 34.388Q-43.014 34.276-43.086 34.115Q-43.158 33.954-43.158 33.773Q-43.158 33.452-42.946 33.206Q-43.281 32.908-43.281 32.498Q-43.281 32.037-42.891 31.750Q-42.501 31.463-42.023 31.463Q-41.551 31.463-41.216 31.709Q-41.042 31.555-40.832 31.473Q-40.622 31.391-40.393 31.391Q-40.229 31.391-40.107 31.498Q-39.986 31.606-39.986 31.770Q-39.986 31.866-40.058 31.938Q-40.129 32.009-40.222 32.009Q-40.321 32.009-40.391 31.936Q-40.461 31.862-40.461 31.763Q-40.461 31.709-40.447 31.678L-40.440 31.664Q-40.434 31.644-40.425 31.633Q-40.416 31.623-40.413 31.616Q-40.769 31.616-41.056 31.839Q-40.769 32.132-40.769 32.498Q-40.769 32.813-40.953 33.045Q-41.138 33.278-41.427 33.406Q-41.715 33.534-42.023 33.534Q-42.225 33.534-42.416 33.484Q-42.607 33.435-42.785 33.325Q-42.877 33.452-42.877 33.595Q-42.877 33.777-42.749 33.912Q-42.621 34.047-42.437 34.047L-41.804 34.047Q-41.356 34.047-40.987 34.118Q-40.618 34.190-40.358 34.419Q-40.099 34.648-40.099 35.082Q-40.099 35.403-40.394 35.605Q-40.690 35.807-41.093 35.896Q-41.497 35.985-41.811 35.985Q-42.129 35.985-42.532 35.896Q-42.936 35.807-43.231 35.605Q-43.527 35.403-43.527 35.082M-43.072 35.082Q-43.072 35.311-42.854 35.460Q-42.635 35.609-42.343 35.677Q-42.050 35.745-41.811 35.745Q-41.647 35.745-41.438 35.709Q-41.230 35.674-41.023 35.593Q-40.816 35.513-40.685 35.385Q-40.553 35.257-40.553 35.082Q-40.553 34.730-40.934 34.636Q-41.315 34.542-41.818 34.542L-42.437 34.542Q-42.676 34.542-42.874 34.693Q-43.072 34.843-43.072 35.082M-42.023 33.295Q-41.356 33.295-41.356 32.498Q-41.356 31.698-42.023 31.698Q-42.693 31.698-42.693 32.498Q-42.693 33.295-42.023 33.295M-37.822 34.549L-39.456 34.549L-39.456 34.269Q-39.227 34.269-39.078 34.235Q-38.930 34.200-38.930 34.060L-38.930 30.441Q-38.930 30.171-39.037 30.109Q-39.145 30.048-39.456 30.048L-39.456 29.767L-38.376 29.692L-38.376 32.078Q-38.270 31.893-38.092 31.751Q-37.915 31.610-37.706 31.536Q-37.498 31.463-37.272 31.463Q-36.766 31.463-36.482 31.686Q-36.199 31.910-36.199 32.406L-36.199 34.060Q-36.199 34.197-36.050 34.233Q-35.901 34.269-35.676 34.269L-35.676 34.549L-37.306 34.549L-37.306 34.269Q-37.077 34.269-36.928 34.235Q-36.780 34.200-36.780 34.060L-36.780 32.420Q-36.780 32.085-36.899 31.885Q-37.019 31.685-37.333 31.685Q-37.604 31.685-37.838 31.821Q-38.072 31.958-38.210 32.192Q-38.349 32.426-38.349 32.700L-38.349 34.060Q-38.349 34.197-38.198 34.233Q-38.048 34.269-37.822 34.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(215.784 -90.252)\">\u003Cpath d=\"M-30.797 34.522L-31.925 32.023Q-31.997 31.876-32.127 31.844Q-32.257 31.811-32.486 31.811L-32.486 31.531L-30.972 31.531L-30.972 31.811Q-31.324 31.811-31.324 31.958Q-31.324 32.003-31.313 32.023L-30.449 33.941L-29.669 32.211Q-29.635 32.143-29.635 32.064Q-29.635 31.951-29.719 31.881Q-29.803 31.811-29.922 31.811L-29.922 31.531L-28.726 31.531L-28.726 31.811Q-28.945 31.811-29.116 31.914Q-29.286 32.016-29.375 32.211L-30.411 34.522Q-30.459 34.617-30.565 34.617L-30.643 34.617Q-30.749 34.617-30.797 34.522\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(215.784 -90.252)\">\u003Cpath d=\"M-28.557 33.821Q-28.557 33.489-28.334 33.262Q-28.110 33.035-27.766 32.907Q-27.423 32.778-27.050 32.726Q-26.678 32.673-26.373 32.673L-26.373 32.420Q-26.373 32.215-26.481 32.035Q-26.589 31.856-26.770 31.753Q-26.951 31.651-27.159 31.651Q-27.566 31.651-27.802 31.743Q-27.713 31.780-27.667 31.864Q-27.621 31.948-27.621 32.050Q-27.621 32.146-27.667 32.225Q-27.713 32.303-27.794 32.348Q-27.874 32.392-27.963 32.392Q-28.113 32.392-28.214 32.295Q-28.315 32.197-28.315 32.050Q-28.315 31.428-27.159 31.428Q-26.948 31.428-26.698 31.492Q-26.449 31.555-26.247 31.674Q-26.045 31.794-25.919 31.979Q-25.792 32.163-25.792 32.406L-25.792 33.982Q-25.792 34.098-25.731 34.194Q-25.669 34.289-25.556 34.289Q-25.447 34.289-25.382 34.195Q-25.317 34.101-25.317 33.982L-25.317 33.534L-25.051 33.534L-25.051 33.982Q-25.051 34.252-25.278 34.417Q-25.505 34.583-25.785 34.583Q-25.994 34.583-26.131 34.429Q-26.267 34.276-26.291 34.060Q-26.438 34.327-26.720 34.472Q-27.002 34.617-27.327 34.617Q-27.604 34.617-27.888 34.542Q-28.171 34.467-28.364 34.288Q-28.557 34.108-28.557 33.821M-27.942 33.821Q-27.942 33.995-27.841 34.125Q-27.741 34.255-27.585 34.325Q-27.430 34.395-27.265 34.395Q-27.047 34.395-26.838 34.298Q-26.630 34.200-26.502 34.019Q-26.373 33.838-26.373 33.612L-26.373 32.884Q-26.698 32.884-27.064 32.975Q-27.430 33.066-27.686 33.278Q-27.942 33.489-27.942 33.821M-22.884 34.549L-24.620 34.549L-24.620 34.269Q-24.391 34.269-24.242 34.235Q-24.094 34.200-24.094 34.060L-24.094 32.211Q-24.094 31.941-24.201 31.880Q-24.309 31.818-24.620 31.818L-24.620 31.538L-23.591 31.463L-23.591 32.170Q-23.461 31.862-23.219 31.663Q-22.976 31.463-22.658 31.463Q-22.439 31.463-22.268 31.587Q-22.097 31.712-22.097 31.924Q-22.097 32.061-22.197 32.160Q-22.296 32.259-22.429 32.259Q-22.566 32.259-22.665 32.160Q-22.764 32.061-22.764 31.924Q-22.764 31.784-22.665 31.685Q-22.955 31.685-23.155 31.881Q-23.355 32.078-23.448 32.372Q-23.540 32.666-23.540 32.946L-23.540 34.060Q-23.540 34.269-22.884 34.269L-22.884 34.549M-19.896 34.549L-21.448 34.549L-21.448 34.269Q-21.222 34.269-21.074 34.235Q-20.925 34.200-20.925 34.060L-20.925 32.211Q-20.925 32.023-20.973 31.939Q-21.021 31.856-21.118 31.837Q-21.216 31.818-21.428 31.818L-21.428 31.538L-20.371 31.463L-20.371 34.060Q-20.371 34.200-20.240 34.235Q-20.108 34.269-19.896 34.269L-19.896 34.549M-21.168 30.242Q-21.168 30.071-21.045 29.952Q-20.922 29.832-20.751 29.832Q-20.583 29.832-20.460 29.952Q-20.337 30.071-20.337 30.242Q-20.337 30.417-20.460 30.540Q-20.583 30.663-20.751 30.663Q-20.922 30.663-21.045 30.540Q-21.168 30.417-21.168 30.242M-19.192 33.821Q-19.192 33.489-18.968 33.262Q-18.744 33.035-18.401 32.907Q-18.057 32.778-17.685 32.726Q-17.312 32.673-17.008 32.673L-17.008 32.420Q-17.008 32.215-17.116 32.035Q-17.223 31.856-17.405 31.753Q-17.586 31.651-17.794 31.651Q-18.201 31.651-18.437 31.743Q-18.348 31.780-18.302 31.864Q-18.256 31.948-18.256 32.050Q-18.256 32.146-18.302 32.225Q-18.348 32.303-18.428 32.348Q-18.509 32.392-18.597 32.392Q-18.748 32.392-18.849 32.295Q-18.950 32.197-18.950 32.050Q-18.950 31.428-17.794 31.428Q-17.582 31.428-17.333 31.492Q-17.083 31.555-16.882 31.674Q-16.680 31.794-16.554 31.979Q-16.427 32.163-16.427 32.406L-16.427 33.982Q-16.427 34.098-16.366 34.194Q-16.304 34.289-16.191 34.289Q-16.082 34.289-16.017 34.195Q-15.952 34.101-15.952 33.982L-15.952 33.534L-15.685 33.534L-15.685 33.982Q-15.685 34.252-15.913 34.417Q-16.140 34.583-16.420 34.583Q-16.629 34.583-16.765 34.429Q-16.902 34.276-16.926 34.060Q-17.073 34.327-17.355 34.472Q-17.637 34.617-17.962 34.617Q-18.239 34.617-18.522 34.542Q-18.806 34.467-18.999 34.288Q-19.192 34.108-19.192 33.821M-18.577 33.821Q-18.577 33.995-18.476 34.125Q-18.375 34.255-18.220 34.325Q-18.064 34.395-17.900 34.395Q-17.681 34.395-17.473 34.298Q-17.264 34.200-17.136 34.019Q-17.008 33.838-17.008 33.612L-17.008 32.884Q-17.333 32.884-17.699 32.975Q-18.064 33.066-18.321 33.278Q-18.577 33.489-18.577 33.821M-13.587 34.549L-15.221 34.549L-15.221 34.269Q-14.992 34.269-14.843 34.235Q-14.694 34.200-14.694 34.060L-14.694 32.211Q-14.694 31.941-14.802 31.880Q-14.909 31.818-15.221 31.818L-15.221 31.538L-14.161 31.463L-14.161 32.112Q-13.990 31.804-13.686 31.633Q-13.382 31.463-13.036 31.463Q-12.531 31.463-12.247 31.686Q-11.963 31.910-11.963 32.406L-11.963 34.060Q-11.963 34.197-11.815 34.233Q-11.666 34.269-11.440 34.269L-11.440 34.549L-13.071 34.549L-13.071 34.269Q-12.842 34.269-12.693 34.235Q-12.544 34.200-12.544 34.060L-12.544 32.420Q-12.544 32.085-12.664 31.885Q-12.784 31.685-13.098 31.685Q-13.368 31.685-13.602 31.821Q-13.836 31.958-13.975 32.192Q-14.113 32.426-14.113 32.700L-14.113 34.060Q-14.113 34.197-13.963 34.233Q-13.812 34.269-13.587 34.269L-13.587 34.549M-10.852 33.038Q-10.852 32.710-10.717 32.409Q-10.582 32.109-10.347 31.888Q-10.111 31.668-9.806 31.548Q-9.502 31.428-9.178 31.428Q-8.672 31.428-8.323 31.531Q-7.974 31.633-7.974 32.009Q-7.974 32.156-8.072 32.257Q-8.169 32.358-8.316 32.358Q-8.470 32.358-8.569 32.259Q-8.668 32.160-8.668 32.009Q-8.668 31.821-8.528 31.729Q-8.730 31.678-9.171 31.678Q-9.526 31.678-9.755 31.874Q-9.984 32.071-10.085 32.380Q-10.186 32.690-10.186 33.038Q-10.186 33.387-10.059 33.693Q-9.933 33.999-9.678 34.183Q-9.424 34.368-9.068 34.368Q-8.846 34.368-8.661 34.284Q-8.477 34.200-8.342 34.045Q-8.207 33.889-8.149 33.681Q-8.135 33.626-8.080 33.626L-7.968 33.626Q-7.937 33.626-7.915 33.650Q-7.892 33.674-7.892 33.708L-7.892 33.729Q-7.978 34.016-8.166 34.214Q-8.354 34.412-8.619 34.515Q-8.884 34.617-9.178 34.617Q-9.608 34.617-9.996 34.411Q-10.384 34.204-10.618 33.841Q-10.852 33.479-10.852 33.038M-7.346 33.014Q-7.346 32.693-7.221 32.404Q-7.096 32.115-6.870 31.892Q-6.645 31.668-6.349 31.548Q-6.054 31.428-5.736 31.428Q-5.408 31.428-5.146 31.528Q-4.885 31.627-4.709 31.809Q-4.533 31.992-4.439 32.250Q-4.345 32.508-4.345 32.840Q-4.345 32.932-4.427 32.953L-6.682 32.953L-6.682 33.014Q-6.682 33.602-6.399 33.985Q-6.115 34.368-5.548 34.368Q-5.226 34.368-4.958 34.175Q-4.690 33.982-4.601 33.667Q-4.594 33.626-4.519 33.612L-4.427 33.612Q-4.345 33.636-4.345 33.708Q-4.345 33.715-4.351 33.742Q-4.464 34.139-4.835 34.378Q-5.206 34.617-5.630 34.617Q-6.067 34.617-6.467 34.409Q-6.867 34.200-7.106 33.833Q-7.346 33.466-7.346 33.014M-6.676 32.744L-4.861 32.744Q-4.861 32.467-4.958 32.215Q-5.055 31.962-5.254 31.806Q-5.452 31.651-5.736 31.651Q-6.013 31.651-6.226 31.809Q-6.440 31.968-6.558 32.223Q-6.676 32.478-6.676 32.744\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M165.762 19.745v-41.524\"\u002F>\u003Cpath stroke=\"none\" d=\"m165.762 21.745 1.6-3.2-1.6 1.2-1.6-1.2M165.762-23.78l-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(198.896 -34.74)\">\u003Cpath d=\"M-50.206 35.082Q-50.206 34.836-50.009 34.652Q-49.812 34.467-49.556 34.388Q-49.693 34.276-49.765 34.115Q-49.836 33.954-49.836 33.773Q-49.836 33.452-49.625 33.206Q-49.959 32.908-49.959 32.498Q-49.959 32.037-49.570 31.750Q-49.180 31.463-48.702 31.463Q-48.230 31.463-47.895 31.709Q-47.721 31.555-47.510 31.473Q-47.300 31.391-47.071 31.391Q-46.907 31.391-46.786 31.498Q-46.665 31.606-46.665 31.770Q-46.665 31.866-46.736 31.938Q-46.808 32.009-46.900 32.009Q-47 32.009-47.070 31.936Q-47.140 31.862-47.140 31.763Q-47.140 31.709-47.126 31.678L-47.119 31.664Q-47.112 31.644-47.104 31.633Q-47.095 31.623-47.092 31.616Q-47.447 31.616-47.734 31.839Q-47.447 32.132-47.447 32.498Q-47.447 32.813-47.632 33.045Q-47.816 33.278-48.105 33.406Q-48.394 33.534-48.702 33.534Q-48.903 33.534-49.095 33.484Q-49.286 33.435-49.464 33.325Q-49.556 33.452-49.556 33.595Q-49.556 33.777-49.428 33.912Q-49.300 34.047-49.115 34.047L-48.483 34.047Q-48.035 34.047-47.666 34.118Q-47.297 34.190-47.037 34.419Q-46.777 34.648-46.777 35.082Q-46.777 35.403-47.073 35.605Q-47.369 35.807-47.772 35.896Q-48.175 35.985-48.490 35.985Q-48.808 35.985-49.211 35.896Q-49.614 35.807-49.910 35.605Q-50.206 35.403-50.206 35.082M-49.751 35.082Q-49.751 35.311-49.532 35.460Q-49.313 35.609-49.021 35.677Q-48.729 35.745-48.490 35.745Q-48.326 35.745-48.117 35.709Q-47.909 35.674-47.702 35.593Q-47.495 35.513-47.364 35.385Q-47.232 35.257-47.232 35.082Q-47.232 34.730-47.613 34.636Q-47.994 34.542-48.497 34.542L-49.115 34.542Q-49.354 34.542-49.553 34.693Q-49.751 34.843-49.751 35.082M-48.702 33.295Q-48.035 33.295-48.035 32.498Q-48.035 31.698-48.702 31.698Q-49.372 31.698-49.372 32.498Q-49.372 33.295-48.702 33.295M-46.125 33.821Q-46.125 33.489-45.901 33.262Q-45.677 33.035-45.333 32.907Q-44.990 32.778-44.617 32.726Q-44.245 32.673-43.940 32.673L-43.940 32.420Q-43.940 32.215-44.048 32.035Q-44.156 31.856-44.337 31.753Q-44.518 31.651-44.727 31.651Q-45.133 31.651-45.369 31.743Q-45.280 31.780-45.234 31.864Q-45.188 31.948-45.188 32.050Q-45.188 32.146-45.234 32.225Q-45.280 32.303-45.361 32.348Q-45.441 32.392-45.530 32.392Q-45.680 32.392-45.781 32.295Q-45.882 32.197-45.882 32.050Q-45.882 31.428-44.727 31.428Q-44.515 31.428-44.265 31.492Q-44.016 31.555-43.814 31.674Q-43.612 31.794-43.486 31.979Q-43.359 32.163-43.359 32.406L-43.359 33.982Q-43.359 34.098-43.298 34.194Q-43.236 34.289-43.124 34.289Q-43.014 34.289-42.949 34.195Q-42.884 34.101-42.884 33.982L-42.884 33.534L-42.618 33.534L-42.618 33.982Q-42.618 34.252-42.845 34.417Q-43.072 34.583-43.353 34.583Q-43.561 34.583-43.698 34.429Q-43.834 34.276-43.858 34.060Q-44.005 34.327-44.287 34.472Q-44.569 34.617-44.894 34.617Q-45.171 34.617-45.455 34.542Q-45.738 34.467-45.931 34.288Q-46.125 34.108-46.125 33.821M-45.509 33.821Q-45.509 33.995-45.408 34.125Q-45.308 34.255-45.152 34.325Q-44.997 34.395-44.833 34.395Q-44.614 34.395-44.405 34.298Q-44.197 34.200-44.069 34.019Q-43.940 33.838-43.940 33.612L-43.940 32.884Q-44.265 32.884-44.631 32.975Q-44.997 33.066-45.253 33.278Q-45.509 33.489-45.509 33.821M-40.557 35.906L-42.187 35.906L-42.187 35.626Q-41.958 35.626-41.809 35.591Q-41.661 35.557-41.661 35.417L-41.661 32.071Q-41.661 31.900-41.797 31.859Q-41.934 31.818-42.187 31.818L-42.187 31.538L-41.107 31.463L-41.107 31.869Q-40.885 31.668-40.598 31.565Q-40.311 31.463-40.003 31.463Q-39.576 31.463-39.212 31.676Q-38.848 31.890-38.634 32.254Q-38.420 32.618-38.420 33.038Q-38.420 33.483-38.660 33.847Q-38.899 34.211-39.292 34.414Q-39.685 34.617-40.129 34.617Q-40.396 34.617-40.644 34.517Q-40.892 34.416-41.080 34.235L-41.080 35.417Q-41.080 35.554-40.931 35.590Q-40.782 35.626-40.557 35.626L-40.557 35.906M-41.080 32.218L-41.080 33.828Q-40.946 34.081-40.704 34.238Q-40.461 34.395-40.184 34.395Q-39.856 34.395-39.603 34.194Q-39.350 33.992-39.217 33.674Q-39.083 33.356-39.083 33.038Q-39.083 32.809-39.148 32.580Q-39.213 32.351-39.342 32.153Q-39.470 31.955-39.665 31.835Q-39.859 31.716-40.092 31.716Q-40.386 31.716-40.654 31.845Q-40.922 31.975-41.080 32.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Learning-curve diagnosis. Left: high bias, curves converge high and more data will not help. Right: high variance, a wide gap that more data closes.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:526.429px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 394.822 151.509\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-62.07 10.443h56.905v-25.608H-62.07Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-15.406 2.43)\">\u003Cpath d=\"M-31.553-2.361L-33.289-2.361L-33.289-2.641Q-33.060-2.641-32.911-2.675Q-32.763-2.710-32.763-2.850L-32.763-4.699Q-32.763-4.969-32.870-5.030Q-32.978-5.092-33.289-5.092L-33.289-5.372L-32.260-5.447L-32.260-4.740Q-32.130-5.048-31.888-5.247Q-31.645-5.447-31.327-5.447Q-31.108-5.447-30.937-5.323Q-30.766-5.198-30.766-4.986Q-30.766-4.849-30.866-4.750Q-30.965-4.651-31.098-4.651Q-31.235-4.651-31.334-4.750Q-31.433-4.849-31.433-4.986Q-31.433-5.126-31.334-5.225Q-31.624-5.225-31.824-5.029Q-32.024-4.832-32.117-4.538Q-32.209-4.244-32.209-3.964L-32.209-2.850Q-32.209-2.641-31.553-2.641L-31.553-2.361M-30.124-3.089Q-30.124-3.421-29.900-3.648Q-29.676-3.875-29.333-4.003Q-28.989-4.132-28.617-4.184Q-28.244-4.237-27.940-4.237L-27.940-4.490Q-27.940-4.695-28.047-4.875Q-28.155-5.054-28.336-5.157Q-28.517-5.259-28.726-5.259Q-29.133-5.259-29.368-5.167Q-29.280-5.130-29.233-5.046Q-29.187-4.962-29.187-4.860Q-29.187-4.764-29.233-4.685Q-29.280-4.607-29.360-4.562Q-29.440-4.518-29.529-4.518Q-29.679-4.518-29.780-4.615Q-29.881-4.713-29.881-4.860Q-29.881-5.482-28.726-5.482Q-28.514-5.482-28.264-5.418Q-28.015-5.355-27.813-5.236Q-27.612-5.116-27.485-4.931Q-27.359-4.747-27.359-4.504L-27.359-2.928Q-27.359-2.812-27.297-2.716Q-27.236-2.621-27.123-2.621Q-27.013-2.621-26.949-2.715Q-26.884-2.809-26.884-2.928L-26.884-3.376L-26.617-3.376L-26.617-2.928Q-26.617-2.658-26.844-2.493Q-27.072-2.327-27.352-2.327Q-27.560-2.327-27.697-2.481Q-27.834-2.634-27.858-2.850Q-28.005-2.583-28.287-2.438Q-28.569-2.293-28.893-2.293Q-29.170-2.293-29.454-2.368Q-29.738-2.443-29.931-2.622Q-30.124-2.802-30.124-3.089M-29.509-3.089Q-29.509-2.915-29.408-2.785Q-29.307-2.655-29.151-2.585Q-28.996-2.515-28.832-2.515Q-28.613-2.515-28.405-2.612Q-28.196-2.710-28.068-2.891Q-27.940-3.072-27.940-3.298L-27.940-4.026Q-28.264-4.026-28.630-3.935Q-28.996-3.844-29.252-3.632Q-29.509-3.421-29.509-3.089\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.406 2.43)\">\u003Cpath d=\"M-25.019-2.388L-26-4.887Q-26.061-5.030-26.179-5.065Q-26.297-5.099-26.513-5.099L-26.513-5.379L-25.033-5.379L-25.033-5.099Q-25.412-5.099-25.412-4.938Q-25.412-4.928-25.398-4.887L-24.684-3.055L-24.011-4.760Q-24.041-4.832-24.041-4.860Q-24.041-4.887-24.069-4.887Q-24.130-5.034-24.248-5.066Q-24.366-5.099-24.578-5.099L-24.578-5.379L-23.180-5.379L-23.180-5.099Q-23.556-5.099-23.556-4.938Q-23.556-4.907-23.549-4.887L-22.794-2.949L-22.107-4.699Q-22.086-4.750-22.086-4.805Q-22.086-4.945-22.199-5.022Q-22.312-5.099-22.452-5.099L-22.452-5.379L-21.232-5.379L-21.232-5.099Q-21.437-5.099-21.592-4.993Q-21.748-4.887-21.820-4.699L-22.725-2.388Q-22.760-2.293-22.872-2.293L-22.941-2.293Q-23.050-2.293-23.088-2.388L-23.870-4.391L-24.657-2.388Q-24.691-2.293-24.804-2.293L-24.872-2.293Q-24.981-2.293-25.019-2.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.406 2.43)\">\u003Cpath d=\"M-18.005-3.872Q-18.005-4.210-17.864-4.501Q-17.724-4.791-17.480-5.005Q-17.236-5.218-16.931-5.333Q-16.627-5.447-16.302-5.447Q-16.032-5.447-15.769-5.348Q-15.506-5.249-15.315-5.071L-15.315-6.469Q-15.315-6.739-15.422-6.801Q-15.530-6.862-15.841-6.862L-15.841-7.143L-14.764-7.218L-14.764-3.034Q-14.764-2.846-14.710-2.763Q-14.655-2.679-14.554-2.660Q-14.453-2.641-14.238-2.641L-14.238-2.361L-15.345-2.293L-15.345-2.710Q-15.762-2.293-16.388-2.293Q-16.819-2.293-17.191-2.505Q-17.564-2.716-17.784-3.077Q-18.005-3.438-18.005-3.872M-16.330-2.515Q-16.121-2.515-15.935-2.587Q-15.749-2.658-15.595-2.795Q-15.441-2.932-15.345-3.110L-15.345-4.719Q-15.431-4.866-15.576-4.986Q-15.721-5.106-15.891-5.165Q-16.060-5.225-16.241-5.225Q-16.801-5.225-17.070-4.836Q-17.338-4.446-17.338-3.865Q-17.338-3.294-17.104-2.904Q-16.870-2.515-16.330-2.515M-13.530-3.089Q-13.530-3.421-13.307-3.648Q-13.083-3.875-12.739-4.003Q-12.396-4.132-12.023-4.184Q-11.651-4.237-11.346-4.237L-11.346-4.490Q-11.346-4.695-11.454-4.875Q-11.562-5.054-11.743-5.157Q-11.924-5.259-12.132-5.259Q-12.539-5.259-12.775-5.167Q-12.686-5.130-12.640-5.046Q-12.594-4.962-12.594-4.860Q-12.594-4.764-12.640-4.685Q-12.686-4.607-12.767-4.562Q-12.847-4.518-12.936-4.518Q-13.086-4.518-13.187-4.615Q-13.288-4.713-13.288-4.860Q-13.288-5.482-12.132-5.482Q-11.921-5.482-11.671-5.418Q-11.422-5.355-11.220-5.236Q-11.018-5.116-10.892-4.931Q-10.765-4.747-10.765-4.504L-10.765-2.928Q-10.765-2.812-10.704-2.716Q-10.642-2.621-10.529-2.621Q-10.420-2.621-10.355-2.715Q-10.290-2.809-10.290-2.928L-10.290-3.376L-10.024-3.376L-10.024-2.928Q-10.024-2.658-10.251-2.493Q-10.478-2.327-10.758-2.327Q-10.967-2.327-11.104-2.481Q-11.240-2.634-11.264-2.850Q-11.411-2.583-11.693-2.438Q-11.975-2.293-12.300-2.293Q-12.577-2.293-12.861-2.368Q-13.144-2.443-13.337-2.622Q-13.530-2.802-13.530-3.089M-12.915-3.089Q-12.915-2.915-12.814-2.785Q-12.714-2.655-12.558-2.585Q-12.402-2.515-12.238-2.515Q-12.020-2.515-11.811-2.612Q-11.603-2.710-11.475-2.891Q-11.346-3.072-11.346-3.298L-11.346-4.026Q-11.671-4.026-12.037-3.935Q-12.402-3.844-12.659-3.632Q-12.915-3.421-12.915-3.089M-9.080-3.202L-9.080-5.099L-9.719-5.099L-9.719-5.321Q-9.402-5.321-9.184-5.531Q-8.967-5.741-8.867-6.051Q-8.766-6.360-8.766-6.668L-8.499-6.668L-8.499-5.379L-7.423-5.379L-7.423-5.099L-8.499-5.099L-8.499-3.215Q-8.499-2.939-8.395-2.740Q-8.291-2.542-8.031-2.542Q-7.874-2.542-7.768-2.646Q-7.662-2.751-7.612-2.904Q-7.563-3.058-7.563-3.215L-7.563-3.629L-7.296-3.629L-7.296-3.202Q-7.296-2.976-7.395-2.766Q-7.494-2.556-7.679-2.424Q-7.863-2.293-8.092-2.293Q-8.530-2.293-8.805-2.530Q-9.080-2.768-9.080-3.202M-6.428-3.089Q-6.428-3.421-6.204-3.648Q-5.980-3.875-5.637-4.003Q-5.293-4.132-4.921-4.184Q-4.548-4.237-4.244-4.237L-4.244-4.490Q-4.244-4.695-4.351-4.875Q-4.459-5.054-4.640-5.157Q-4.821-5.259-5.030-5.259Q-5.437-5.259-5.673-5.167Q-5.584-5.130-5.538-5.046Q-5.491-4.962-5.491-4.860Q-5.491-4.764-5.538-4.685Q-5.584-4.607-5.664-4.562Q-5.744-4.518-5.833-4.518Q-5.984-4.518-6.084-4.615Q-6.185-4.713-6.185-4.860Q-6.185-5.482-5.030-5.482Q-4.818-5.482-4.569-5.418Q-4.319-5.355-4.117-5.236Q-3.916-5.116-3.789-4.931Q-3.663-4.747-3.663-4.504L-3.663-2.928Q-3.663-2.812-3.601-2.716Q-3.540-2.621-3.427-2.621Q-3.318-2.621-3.253-2.715Q-3.188-2.809-3.188-2.928L-3.188-3.376L-2.921-3.376L-2.921-2.928Q-2.921-2.658-3.148-2.493Q-3.376-2.327-3.656-2.327Q-3.864-2.327-4.001-2.481Q-4.138-2.634-4.162-2.850Q-4.309-2.583-4.591-2.438Q-4.873-2.293-5.197-2.293Q-5.474-2.293-5.758-2.368Q-6.042-2.443-6.235-2.622Q-6.428-2.802-6.428-3.089M-5.813-3.089Q-5.813-2.915-5.712-2.785Q-5.611-2.655-5.455-2.585Q-5.300-2.515-5.136-2.515Q-4.917-2.515-4.709-2.612Q-4.500-2.710-4.372-2.891Q-4.244-3.072-4.244-3.298L-4.244-4.026Q-4.569-4.026-4.934-3.935Q-5.300-3.844-5.556-3.632Q-5.813-3.421-5.813-3.089\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M14.752 10.443h56.906v-25.608H14.752Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(52.313 5.264)\">\u003Cpath d=\"M-17.892-10.535L-17.892-11.335Q-17.868-11.516-17.684-11.537L-17.537-11.537Q-17.393-11.516-17.342-11.376Q-17.164-10.816-16.529-10.816Q-16.347-10.816-16.147-10.846Q-15.947-10.877-15.801-10.978Q-15.654-11.079-15.654-11.257Q-15.654-11.441-15.848-11.540Q-16.043-11.639-16.282-11.677L-16.894-11.776Q-17.892-11.961-17.892-12.593Q-17.892-12.846-17.766-13.012Q-17.639-13.177-17.429-13.271Q-17.219-13.365-16.995-13.400Q-16.771-13.434-16.529-13.434Q-16.310-13.434-16.141-13.408Q-15.971-13.382-15.828-13.314Q-15.759-13.417-15.647-13.434L-15.578-13.434Q-15.493-13.424-15.438-13.369Q-15.384-13.314-15.373-13.232L-15.373-12.613Q-15.384-12.531-15.438-12.473Q-15.493-12.415-15.578-12.405L-15.725-12.405Q-15.807-12.415-15.865-12.473Q-15.924-12.531-15.934-12.613Q-15.934-12.945-16.542-12.945Q-16.846-12.945-17.125-12.873Q-17.404-12.801-17.404-12.586Q-17.404-12.354-16.816-12.258L-16.200-12.152Q-15.777-12.080-15.471-11.863Q-15.165-11.646-15.165-11.257Q-15.165-10.915-15.372-10.703Q-15.578-10.491-15.884-10.409Q-16.190-10.327-16.529-10.327Q-17.034-10.327-17.383-10.549Q-17.445-10.440-17.487-10.390Q-17.530-10.340-17.622-10.327L-17.684-10.327Q-17.872-10.347-17.892-10.535M-14.628-9.011L-14.628-9.086Q-14.591-9.278-14.409-9.298L-14.040-9.298L-14.040-12.887L-14.409-12.887Q-14.591-12.907-14.628-13.099L-14.628-13.174Q-14.587-13.359-14.409-13.379L-13.695-13.379Q-13.524-13.362-13.480-13.174L-13.480-13.112Q-13.295-13.259-13.064-13.336Q-12.834-13.413-12.598-13.413Q-12.301-13.413-12.041-13.287Q-11.781-13.160-11.593-12.940Q-11.405-12.719-11.304-12.446Q-11.203-12.173-11.203-11.872Q-11.203-11.465-11.402-11.106Q-11.600-10.747-11.938-10.537Q-12.277-10.327-12.687-10.327Q-13.141-10.327-13.480-10.648L-13.480-9.298L-13.107-9.298Q-12.926-9.278-12.892-9.086L-12.892-9.011Q-12.926-8.826-13.107-8.806L-14.409-8.806Q-14.587-8.826-14.628-9.011M-12.724-10.816Q-12.454-10.816-12.236-10.964Q-12.017-11.113-11.890-11.359Q-11.764-11.605-11.764-11.872Q-11.764-12.125-11.873-12.369Q-11.983-12.613-12.186-12.769Q-12.389-12.924-12.653-12.924Q-12.933-12.924-13.162-12.762Q-13.391-12.600-13.480-12.337L-13.480-11.591Q-13.401-11.270-13.208-11.043Q-13.015-10.816-12.724-10.816M-10.581-10.569L-10.581-10.648Q-10.537-10.829-10.366-10.850L-9.399-10.850L-9.399-14.148L-10.366-14.148Q-10.537-14.169-10.581-14.357L-10.581-14.435Q-10.537-14.616-10.366-14.637L-9.057-14.637Q-8.889-14.616-8.838-14.435L-8.838-10.850L-7.874-10.850Q-7.700-10.829-7.655-10.648L-7.655-10.569Q-7.700-10.382-7.874-10.361L-10.366-10.361Q-10.537-10.382-10.581-10.569M-6.719-10.569L-6.719-10.648Q-6.675-10.829-6.504-10.850L-5.594-10.850L-5.594-12.887L-6.446-12.887Q-6.620-12.907-6.664-13.099L-6.664-13.174Q-6.620-13.359-6.446-13.379L-5.249-13.379Q-5.078-13.362-5.034-13.174L-5.034-10.850L-4.234-10.850Q-4.063-10.829-4.019-10.648L-4.019-10.569Q-4.063-10.382-4.234-10.361L-6.504-10.361Q-6.675-10.382-6.719-10.569M-5.817-14.234L-5.817-14.281Q-5.817-14.432-5.697-14.538Q-5.577-14.644-5.424-14.644Q-5.273-14.644-5.154-14.538Q-5.034-14.432-5.034-14.281L-5.034-14.234Q-5.034-14.080-5.154-13.974Q-5.273-13.868-5.424-13.868Q-5.577-13.868-5.697-13.974Q-5.817-14.080-5.817-14.234M-2.494-11.328L-2.494-12.887L-3.151-12.887Q-3.325-12.907-3.369-13.099L-3.369-13.174Q-3.325-13.359-3.151-13.379L-2.494-13.379L-2.494-14.035Q-2.450-14.216-2.276-14.240L-2.149-14.240Q-1.978-14.216-1.934-14.035L-1.934-13.379L-0.744-13.379Q-0.577-13.362-0.526-13.174L-0.526-13.099Q-0.573-12.907-0.744-12.887L-1.934-12.887L-1.934-11.356Q-1.934-10.816-1.431-10.816Q-1.213-10.816-1.069-10.978Q-0.926-11.140-0.926-11.356Q-0.926-11.438-0.862-11.499Q-0.799-11.561-0.710-11.571L-0.584-11.571Q-0.409-11.550-0.365-11.369L-0.365-11.328Q-0.365-11.045-0.526-10.814Q-0.686-10.583-0.943-10.455Q-1.199-10.327-1.479-10.327Q-1.927-10.327-2.211-10.599Q-2.494-10.870-2.494-11.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.313 5.264)\">\u003Cpath d=\"M-32.776-3.202L-32.776-5.099L-33.415-5.099L-33.415-5.321Q-33.097-5.321-32.880-5.531Q-32.663-5.741-32.563-6.051Q-32.462-6.360-32.462-6.668L-32.195-6.668L-32.195-5.379L-31.118-5.379L-31.118-5.099L-32.195-5.099L-32.195-3.215Q-32.195-2.939-32.091-2.740Q-31.987-2.542-31.727-2.542Q-31.570-2.542-31.464-2.646Q-31.358-2.751-31.308-2.904Q-31.259-3.058-31.259-3.215L-31.259-3.629L-30.992-3.629L-30.992-3.202Q-30.992-2.976-31.091-2.766Q-31.190-2.556-31.375-2.424Q-31.559-2.293-31.788-2.293Q-32.226-2.293-32.501-2.530Q-32.776-2.768-32.776-3.202M-28.432-2.361L-30.168-2.361L-30.168-2.641Q-29.939-2.641-29.791-2.675Q-29.642-2.710-29.642-2.850L-29.642-4.699Q-29.642-4.969-29.750-5.030Q-29.857-5.092-30.168-5.092L-30.168-5.372L-29.139-5.447L-29.139-4.740Q-29.010-5.048-28.767-5.247Q-28.524-5.447-28.206-5.447Q-27.988-5.447-27.817-5.323Q-27.646-5.198-27.646-4.986Q-27.646-4.849-27.745-4.750Q-27.844-4.651-27.977-4.651Q-28.114-4.651-28.213-4.750Q-28.312-4.849-28.312-4.986Q-28.312-5.126-28.213-5.225Q-28.504-5.225-28.704-5.029Q-28.904-4.832-28.996-4.538Q-29.088-4.244-29.088-3.964L-29.088-2.850Q-29.088-2.641-28.432-2.641L-28.432-2.361M-27.003-3.089Q-27.003-3.421-26.779-3.648Q-26.555-3.875-26.212-4.003Q-25.868-4.132-25.496-4.184Q-25.123-4.237-24.819-4.237L-24.819-4.490Q-24.819-4.695-24.927-4.875Q-25.034-5.054-25.216-5.157Q-25.397-5.259-25.605-5.259Q-26.012-5.259-26.248-5.167Q-26.159-5.130-26.113-5.046Q-26.067-4.962-26.067-4.860Q-26.067-4.764-26.113-4.685Q-26.159-4.607-26.239-4.562Q-26.320-4.518-26.409-4.518Q-26.559-4.518-26.660-4.615Q-26.761-4.713-26.761-4.860Q-26.761-5.482-25.605-5.482Q-25.393-5.482-25.144-5.418Q-24.894-5.355-24.693-5.236Q-24.491-5.116-24.365-4.931Q-24.238-4.747-24.238-4.504L-24.238-2.928Q-24.238-2.812-24.177-2.716Q-24.115-2.621-24.002-2.621Q-23.893-2.621-23.828-2.715Q-23.763-2.809-23.763-2.928L-23.763-3.376L-23.496-3.376L-23.496-2.928Q-23.496-2.658-23.724-2.493Q-23.951-2.327-24.231-2.327Q-24.440-2.327-24.576-2.481Q-24.713-2.634-24.737-2.850Q-24.884-2.583-25.166-2.438Q-25.448-2.293-25.773-2.293Q-26.050-2.293-26.333-2.368Q-26.617-2.443-26.810-2.622Q-27.003-2.802-27.003-3.089M-26.388-3.089Q-26.388-2.915-26.287-2.785Q-26.186-2.655-26.031-2.585Q-25.875-2.515-25.711-2.515Q-25.492-2.515-25.284-2.612Q-25.075-2.710-24.947-2.891Q-24.819-3.072-24.819-3.298L-24.819-4.026Q-25.144-4.026-25.510-3.935Q-25.875-3.844-26.132-3.632Q-26.388-3.421-26.388-3.089M-21.463-2.361L-23.014-2.361L-23.014-2.641Q-22.789-2.641-22.640-2.675Q-22.492-2.710-22.492-2.850L-22.492-4.699Q-22.492-4.887-22.539-4.971Q-22.587-5.054-22.685-5.073Q-22.782-5.092-22.994-5.092L-22.994-5.372L-21.938-5.447L-21.938-2.850Q-21.938-2.710-21.806-2.675Q-21.675-2.641-21.463-2.641L-21.463-2.361M-22.734-6.668Q-22.734-6.839-22.611-6.958Q-22.488-7.078-22.317-7.078Q-22.150-7.078-22.027-6.958Q-21.904-6.839-21.904-6.668Q-21.904-6.493-22.027-6.370Q-22.150-6.247-22.317-6.247Q-22.488-6.247-22.611-6.370Q-22.734-6.493-22.734-6.668M-19.135-2.361L-20.769-2.361L-20.769-2.641Q-20.540-2.641-20.391-2.675Q-20.242-2.710-20.242-2.850L-20.242-4.699Q-20.242-4.969-20.350-5.030Q-20.458-5.092-20.769-5.092L-20.769-5.372L-19.709-5.447L-19.709-4.798Q-19.538-5.106-19.234-5.277Q-18.930-5.447-18.585-5.447Q-18.079-5.447-17.795-5.224Q-17.512-5-17.512-4.504L-17.512-2.850Q-17.512-2.713-17.363-2.677Q-17.214-2.641-16.989-2.641L-16.989-2.361L-18.619-2.361L-18.619-2.641Q-18.390-2.641-18.241-2.675Q-18.093-2.710-18.093-2.850L-18.093-4.490Q-18.093-4.825-18.212-5.025Q-18.332-5.225-18.646-5.225Q-18.916-5.225-19.150-5.089Q-19.385-4.952-19.523-4.718Q-19.661-4.484-19.661-4.210L-19.661-2.850Q-19.661-2.713-19.511-2.677Q-19.361-2.641-19.135-2.641L-19.135-2.361M-16.226-0.778Q-16.226-0.796-16.213-0.843L-13.557-7.505Q-13.502-7.611-13.396-7.611Q-13.331-7.611-13.280-7.560Q-13.229-7.508-13.229-7.444Q-13.229-7.420-13.231-7.408Q-13.232-7.396-13.236-7.379L-15.888-0.717Q-15.960-0.611-16.049-0.611Q-16.117-0.611-16.172-0.662Q-16.226-0.714-16.226-0.778\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.313 5.264)\">\u003Cpath d=\"M-11.265-2.556L-12.041-4.887L-12.321-4.887Q-12.495-4.907-12.540-5.099L-12.540-5.174Q-12.495-5.359-12.321-5.379L-11.306-5.379Q-11.135-5.362-11.090-5.174L-11.090-5.099Q-11.135-4.907-11.306-4.887L-11.552-4.887L-10.858-2.809L-10.168-4.887L-10.410-4.887Q-10.585-4.907-10.629-5.099L-10.629-5.174Q-10.585-5.359-10.410-5.379L-9.395-5.379Q-9.224-5.359-9.180-5.174L-9.180-5.099Q-9.224-4.907-9.395-4.887L-9.675-4.887L-10.451-2.556Q-10.489-2.457-10.578-2.392Q-10.667-2.327-10.776-2.327L-10.943-2.327Q-11.046-2.327-11.137-2.390Q-11.227-2.453-11.265-2.556M-8.643-3.335Q-8.643-3.725-8.281-3.950Q-7.919-4.176-7.445-4.263Q-6.972-4.350-6.527-4.357Q-6.527-4.545-6.645-4.678Q-6.763-4.812-6.944-4.878Q-7.126-4.945-7.310-4.945Q-7.611-4.945-7.751-4.924L-7.751-4.873Q-7.751-4.726-7.855-4.625Q-7.960-4.525-8.103-4.525Q-8.257-4.525-8.358-4.632Q-8.459-4.740-8.459-4.887Q-8.459-5.242-8.125-5.338Q-7.792-5.434-7.303-5.434Q-7.068-5.434-6.833-5.365Q-6.599-5.297-6.403-5.165Q-6.206-5.034-6.087-4.841Q-5.967-4.648-5.967-4.405L-5.967-2.901Q-5.967-2.850-5.506-2.850Q-5.335-2.833-5.290-2.648L-5.290-2.569Q-5.335-2.382-5.506-2.361L-5.632-2.361Q-5.933-2.361-6.133-2.402Q-6.333-2.443-6.459-2.607Q-6.862-2.327-7.481-2.327Q-7.775-2.327-8.042-2.450Q-8.308-2.573-8.476-2.802Q-8.643-3.031-8.643-3.335M-8.083-3.328Q-8.083-3.089-7.871-2.952Q-7.659-2.816-7.409-2.816Q-7.218-2.816-7.015-2.867Q-6.811-2.918-6.669-3.039Q-6.527-3.161-6.527-3.356L-6.527-3.872Q-6.774-3.872-7.138-3.822Q-7.502-3.773-7.792-3.651Q-8.083-3.530-8.083-3.328M-4.890-2.569L-4.890-2.648Q-4.846-2.829-4.675-2.850L-3.708-2.850L-3.708-6.148L-4.675-6.148Q-4.846-6.169-4.890-6.357L-4.890-6.435Q-4.846-6.616-4.675-6.637L-3.366-6.637Q-3.198-6.616-3.147-6.435L-3.147-2.850L-2.183-2.850Q-2.009-2.829-1.964-2.648L-1.964-2.569Q-2.009-2.382-2.183-2.361L-4.675-2.361Q-4.846-2.382-4.890-2.569\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.313 5.264)\">\u003Cpath d=\"M-1.069-0.778Q-1.069-0.796-1.056-0.843L1.600-7.505Q1.655-7.611 1.761-7.611Q1.826-7.611 1.877-7.560Q1.928-7.508 1.928-7.444Q1.928-7.420 1.927-7.408Q1.925-7.396 1.921-7.379L-0.731-0.717Q-0.803-0.611-0.891-0.611Q-0.960-0.611-1.015-0.662Q-1.069-0.714-1.069-0.778M3.265-3.202L3.265-5.099L2.626-5.099L2.626-5.321Q2.943-5.321 3.161-5.531Q3.378-5.741 3.478-6.051Q3.579-6.360 3.579-6.668L3.846-6.668L3.846-5.379L4.922-5.379L4.922-5.099L3.846-5.099L3.846-3.215Q3.846-2.939 3.950-2.740Q4.054-2.542 4.314-2.542Q4.471-2.542 4.577-2.646Q4.683-2.751 4.733-2.904Q4.782-3.058 4.782-3.215L4.782-3.629L5.049-3.629L5.049-3.202Q5.049-2.976 4.950-2.766Q4.851-2.556 4.666-2.424Q4.482-2.293 4.253-2.293Q3.815-2.293 3.540-2.530Q3.265-2.768 3.265-3.202M5.818-3.896Q5.818-4.217 5.943-4.506Q6.067-4.795 6.293-5.018Q6.519-5.242 6.814-5.362Q7.110-5.482 7.428-5.482Q7.756-5.482 8.017-5.382Q8.279-5.283 8.455-5.101Q8.631-4.918 8.725-4.660Q8.819-4.402 8.819-4.070Q8.819-3.978 8.737-3.957L6.481-3.957L6.481-3.896Q6.481-3.308 6.765-2.925Q7.048-2.542 7.616-2.542Q7.937-2.542 8.205-2.735Q8.474-2.928 8.563-3.243Q8.569-3.284 8.645-3.298L8.737-3.298Q8.819-3.274 8.819-3.202Q8.819-3.195 8.812-3.168Q8.699-2.771 8.328-2.532Q7.958-2.293 7.534-2.293Q7.096-2.293 6.696-2.501Q6.296-2.710 6.057-3.077Q5.818-3.444 5.818-3.896M6.488-4.166L8.303-4.166Q8.303-4.443 8.205-4.695Q8.108-4.948 7.910-5.104Q7.712-5.259 7.428-5.259Q7.151-5.259 6.937-5.101Q6.724-4.942 6.606-4.687Q6.488-4.432 6.488-4.166M9.407-2.368L9.407-3.431Q9.407-3.455 9.434-3.482Q9.462-3.509 9.485-3.509L9.595-3.509Q9.660-3.509 9.673-3.451Q9.769-3.017 10.015-2.766Q10.261-2.515 10.675-2.515Q11.017-2.515 11.270-2.648Q11.523-2.781 11.523-3.089Q11.523-3.246 11.429-3.361Q11.335-3.475 11.196-3.544Q11.058-3.612 10.890-3.650L10.309-3.749Q9.954-3.817 9.680-4.038Q9.407-4.258 9.407-4.600Q9.407-4.849 9.518-5.024Q9.629-5.198 9.815-5.297Q10.002-5.396 10.217-5.439Q10.432-5.482 10.675-5.482Q11.088-5.482 11.369-5.300L11.584-5.475Q11.594-5.478 11.601-5.480Q11.608-5.482 11.618-5.482L11.670-5.482Q11.697-5.482 11.721-5.458Q11.745-5.434 11.745-5.406L11.745-4.559Q11.745-4.538 11.721-4.511Q11.697-4.484 11.670-4.484L11.557-4.484Q11.529-4.484 11.504-4.509Q11.478-4.535 11.478-4.559Q11.478-4.795 11.372-4.959Q11.266-5.123 11.083-5.205Q10.900-5.287 10.668-5.287Q10.340-5.287 10.084-5.184Q9.827-5.082 9.827-4.805Q9.827-4.610 10.010-4.501Q10.193-4.391 10.422-4.350L10.996-4.244Q11.242-4.196 11.456-4.068Q11.670-3.940 11.806-3.737Q11.943-3.533 11.943-3.284Q11.943-2.771 11.577-2.532Q11.212-2.293 10.675-2.293Q10.179-2.293 9.848-2.587L9.581-2.313Q9.561-2.293 9.533-2.293L9.485-2.293Q9.462-2.293 9.434-2.320Q9.407-2.347 9.407-2.368M13.098-3.202L13.098-5.099L12.459-5.099L12.459-5.321Q12.777-5.321 12.994-5.531Q13.211-5.741 13.312-6.051Q13.413-6.360 13.413-6.668L13.679-6.668L13.679-5.379L14.756-5.379L14.756-5.099L13.679-5.099L13.679-3.215Q13.679-2.939 13.784-2.740Q13.888-2.542 14.148-2.542Q14.305-2.542 14.411-2.646Q14.517-2.751 14.566-2.904Q14.616-3.058 14.616-3.215L14.616-3.629L14.882-3.629L14.882-3.202Q14.882-2.976 14.783-2.766Q14.684-2.556 14.500-2.424Q14.315-2.293 14.086-2.293Q13.649-2.293 13.373-2.530Q13.098-2.768 13.098-3.202\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M100.11 10.443h56.906v-25.608h-56.905Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(145.446 5.264)\">\u003Cpath d=\"M-33.555-10.569L-33.555-10.648Q-33.518-10.829-33.337-10.850L-32.968-10.850L-32.968-12.887L-33.337-12.887Q-33.518-12.907-33.555-13.099L-33.555-13.174Q-33.514-13.359-33.337-13.379L-32.622-13.379Q-32.451-13.359-32.407-13.174L-32.407-13.099L-32.414-13.078Q-32.216-13.236-31.976-13.324Q-31.737-13.413-31.481-13.413Q-31.177-13.413-30.968-13.290Q-30.760-13.167-30.659-12.942Q-30.558-12.716-30.558-12.405L-30.558-10.850L-30.185-10.850Q-30.004-10.829-29.970-10.648L-29.970-10.569Q-30.004-10.382-30.185-10.361L-31.406-10.361Q-31.576-10.382-31.621-10.569L-31.621-10.648Q-31.576-10.833-31.406-10.850L-31.118-10.850L-31.118-12.378Q-31.118-12.648-31.197-12.786Q-31.276-12.924-31.532-12.924Q-31.768-12.924-31.968-12.810Q-32.168-12.695-32.287-12.496Q-32.407-12.296-32.407-12.063L-32.407-10.850L-32.034-10.850Q-31.853-10.829-31.819-10.648L-31.819-10.569Q-31.853-10.382-32.034-10.361L-33.337-10.361Q-33.518-10.382-33.555-10.569M-28.046-10.327Q-28.459-10.327-28.796-10.540Q-29.133-10.754-29.327-11.113Q-29.522-11.472-29.522-11.872Q-29.522-12.173-29.413-12.455Q-29.304-12.736-29.102-12.959Q-28.900-13.181-28.632-13.307Q-28.364-13.434-28.046-13.434Q-27.728-13.434-27.454-13.306Q-27.181-13.177-26.986-12.962Q-26.791-12.747-26.680-12.466Q-26.569-12.186-26.569-11.872Q-26.569-11.472-26.766-11.111Q-26.962-10.751-27.299-10.539Q-27.636-10.327-28.046-10.327M-28.046-10.816Q-27.639-10.816-27.384-11.161Q-27.130-11.506-27.130-11.930Q-27.130-12.186-27.248-12.420Q-27.366-12.654-27.576-12.800Q-27.786-12.945-28.046-12.945Q-28.312-12.945-28.521-12.800Q-28.729-12.654-28.847-12.420Q-28.965-12.186-28.965-11.930Q-28.965-11.509-28.709-11.163Q-28.452-10.816-28.046-10.816M-25.992-10.569L-25.992-10.648Q-25.940-10.829-25.773-10.850L-25.151-10.850L-25.151-12.887L-25.773-12.887Q-25.944-12.907-25.992-13.099L-25.992-13.174Q-25.940-13.359-25.773-13.379L-24.809-13.379Q-24.635-13.362-24.590-13.174L-24.590-12.887Q-24.361-13.136-24.050-13.275Q-23.739-13.413-23.401-13.413Q-23.144-13.413-22.939-13.295Q-22.734-13.177-22.734-12.945Q-22.734-12.798-22.830-12.695Q-22.926-12.593-23.073-12.593Q-23.206-12.593-23.307-12.690Q-23.408-12.788-23.408-12.924Q-23.736-12.924-24.011-12.748Q-24.286-12.572-24.438-12.280Q-24.590-11.988-24.590-11.656L-24.590-10.850L-23.763-10.850Q-23.582-10.829-23.548-10.648L-23.548-10.569Q-23.582-10.382-23.763-10.361L-25.773-10.361Q-25.940-10.382-25.992-10.569M-22.519-10.569L-22.519-10.648Q-22.474-10.833-22.304-10.850L-22.129-10.850L-22.129-12.887L-22.304-12.887Q-22.485-12.907-22.519-13.099L-22.519-13.174Q-22.474-13.362-22.304-13.379L-21.883-13.379Q-21.716-13.359-21.664-13.174Q-21.384-13.413-21.022-13.413Q-20.854-13.413-20.707-13.318Q-20.560-13.222-20.495-13.071Q-20.342-13.239-20.147-13.326Q-19.952-13.413-19.740-13.413Q-19.374-13.413-19.239-13.114Q-19.104-12.815-19.104-12.405L-19.104-10.850L-18.930-10.850Q-18.745-10.829-18.711-10.648L-18.711-10.569Q-18.756-10.382-18.930-10.361L-19.644-10.361Q-19.815-10.382-19.860-10.569L-19.860-10.648Q-19.815-10.829-19.644-10.850L-19.566-10.850L-19.566-12.378Q-19.566-12.924-19.784-12.924Q-20.075-12.924-20.231-12.653Q-20.386-12.381-20.386-12.063L-20.386-10.850L-20.208-10.850Q-20.027-10.829-19.993-10.648L-19.993-10.569Q-20.037-10.382-20.208-10.361L-20.923-10.361Q-21.097-10.382-21.141-10.569L-21.141-10.648Q-21.097-10.829-20.923-10.850L-20.847-10.850L-20.847-12.378Q-20.847-12.924-21.063-12.924Q-21.353-12.924-21.509-12.651Q-21.664-12.378-21.664-12.063L-21.664-10.850L-21.490-10.850Q-21.309-10.829-21.275-10.648L-21.275-10.569Q-21.319-10.378-21.490-10.361L-22.304-10.361Q-22.485-10.382-22.519-10.569M-18.400-11.335Q-18.400-11.725-18.038-11.950Q-17.676-12.176-17.202-12.263Q-16.729-12.350-16.284-12.357Q-16.284-12.545-16.402-12.678Q-16.520-12.812-16.701-12.878Q-16.883-12.945-17.067-12.945Q-17.368-12.945-17.508-12.924L-17.508-12.873Q-17.508-12.726-17.612-12.625Q-17.717-12.525-17.860-12.525Q-18.014-12.525-18.115-12.632Q-18.216-12.740-18.216-12.887Q-18.216-13.242-17.882-13.338Q-17.549-13.434-17.060-13.434Q-16.825-13.434-16.590-13.365Q-16.356-13.297-16.160-13.165Q-15.963-13.034-15.844-12.841Q-15.724-12.648-15.724-12.405L-15.724-10.901Q-15.724-10.850-15.263-10.850Q-15.092-10.833-15.047-10.648L-15.047-10.569Q-15.092-10.382-15.263-10.361L-15.389-10.361Q-15.690-10.361-15.890-10.402Q-16.090-10.443-16.216-10.607Q-16.619-10.327-17.238-10.327Q-17.532-10.327-17.799-10.450Q-18.065-10.573-18.233-10.802Q-18.400-11.031-18.400-11.335M-17.840-11.328Q-17.840-11.089-17.628-10.952Q-17.416-10.816-17.166-10.816Q-16.975-10.816-16.772-10.867Q-16.568-10.918-16.426-11.039Q-16.284-11.161-16.284-11.356L-16.284-11.872Q-16.531-11.872-16.895-11.822Q-17.259-11.773-17.549-11.651Q-17.840-11.530-17.840-11.328M-14.647-10.569L-14.647-10.648Q-14.603-10.829-14.432-10.850L-13.465-10.850L-13.465-14.148L-14.432-14.148Q-14.603-14.169-14.647-14.357L-14.647-14.435Q-14.603-14.616-14.432-14.637L-13.123-14.637Q-12.955-14.616-12.904-14.435L-12.904-10.850L-11.940-10.850Q-11.766-10.829-11.721-10.648L-11.721-10.569Q-11.766-10.382-11.940-10.361L-14.432-10.361Q-14.603-10.382-14.647-10.569M-10.785-10.569L-10.785-10.648Q-10.741-10.829-10.570-10.850L-9.660-10.850L-9.660-12.887L-10.512-12.887Q-10.686-12.907-10.730-13.099L-10.730-13.174Q-10.686-13.359-10.512-13.379L-9.315-13.379Q-9.144-13.362-9.100-13.174L-9.100-10.850L-8.300-10.850Q-8.129-10.829-8.085-10.648L-8.085-10.569Q-8.129-10.382-8.300-10.361L-10.570-10.361Q-10.741-10.382-10.785-10.569M-9.883-14.234L-9.883-14.281Q-9.883-14.432-9.763-14.538Q-9.643-14.644-9.490-14.644Q-9.339-14.644-9.220-14.538Q-9.100-14.432-9.100-14.281L-9.100-14.234Q-9.100-14.080-9.220-13.974Q-9.339-13.868-9.490-13.868Q-9.643-13.868-9.763-13.974Q-9.883-14.080-9.883-14.234M-4.465-10.361L-7.148-10.361Q-7.241-10.361-7.309-10.433Q-7.377-10.505-7.377-10.593L-7.377-10.689Q-7.377-10.792-7.302-10.857L-5.118-12.887L-6.700-12.887L-6.700-12.631Q-6.745-12.439-6.916-12.419L-7.042-12.419Q-7.210-12.436-7.261-12.631L-7.261-13.174Q-7.210-13.359-7.042-13.379L-4.503-13.379Q-4.407-13.379-4.339-13.311Q-4.270-13.242-4.270-13.147L-4.270-13.048Q-4.270-12.948-4.349-12.880L-6.533-10.850L-4.810-10.850L-4.810-11.195Q-4.766-11.376-4.592-11.397L-4.465-11.397Q-4.294-11.376-4.250-11.195L-4.250-10.569Q-4.294-10.382-4.465-10.361M-0.822-11.663L-2.958-11.663Q-2.910-11.421-2.737-11.226Q-2.565-11.031-2.322-10.923Q-2.079-10.816-1.830-10.816Q-1.416-10.816-1.221-11.069Q-1.215-11.079-1.165-11.171Q-1.116-11.263-1.073-11.301Q-1.030-11.339-0.948-11.349L-0.822-11.349Q-0.654-11.332-0.603-11.144L-0.603-11.096Q-0.661-10.833-0.863-10.660Q-1.064-10.487-1.338-10.407Q-1.611-10.327-1.878-10.327Q-2.302-10.327-2.686-10.527Q-3.071-10.727-3.305-11.077Q-3.539-11.427-3.539-11.858L-3.539-11.909Q-3.539-12.319-3.324-12.672Q-3.108-13.024-2.751-13.229Q-2.394-13.434-1.984-13.434Q-1.543-13.434-1.233-13.239Q-0.924-13.044-0.763-12.704Q-0.603-12.364-0.603-11.923L-0.603-11.872Q-0.654-11.684-0.822-11.663M-2.951-12.145L-1.177-12.145Q-1.218-12.504-1.427-12.725Q-1.635-12.945-1.984-12.945Q-2.329-12.945-2.597-12.716Q-2.866-12.487-2.951-12.145\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.446 5.264)\">\u003Cpath d=\"M-30.137-0.611Q-30.687-1.011-31.058-1.566Q-31.429-2.122-31.610-2.768Q-31.791-3.414-31.791-4.111Q-31.791-4.624-31.691-5.119Q-31.590-5.615-31.385-6.066Q-31.180-6.517-30.867-6.909Q-30.554-7.300-30.137-7.604Q-30.127-7.608-30.120-7.609Q-30.113-7.611-30.103-7.611L-30.035-7.611Q-30-7.611-29.978-7.587Q-29.956-7.563-29.956-7.526Q-29.956-7.481-29.983-7.464Q-30.332-7.163-30.585-6.779Q-30.838-6.394-30.990-5.953Q-31.142-5.512-31.214-5.056Q-31.286-4.600-31.286-4.111Q-31.286-3.110-30.976-2.223Q-30.667-1.336-29.983-0.751Q-29.956-0.734-29.956-0.690Q-29.956-0.652-29.978-0.628Q-30-0.604-30.035-0.604L-30.103-0.604Q-30.110-0.608-30.118-0.609Q-30.127-0.611-30.137-0.611M-27.464-2.361L-29.098-2.361L-29.098-2.641Q-28.869-2.641-28.720-2.675Q-28.572-2.710-28.572-2.850L-28.572-4.699Q-28.572-4.969-28.679-5.030Q-28.787-5.092-29.098-5.092L-29.098-5.372L-28.039-5.447L-28.039-4.798Q-27.868-5.106-27.563-5.277Q-27.259-5.447-26.914-5.447Q-26.514-5.447-26.237-5.307Q-25.960-5.167-25.875-4.819Q-25.707-5.112-25.408-5.280Q-25.109-5.447-24.764-5.447Q-24.258-5.447-23.975-5.224Q-23.691-5-23.691-4.504L-23.691-2.850Q-23.691-2.713-23.542-2.677Q-23.394-2.641-23.168-2.641L-23.168-2.361L-24.798-2.361L-24.798-2.641Q-24.573-2.641-24.422-2.677Q-24.272-2.713-24.272-2.850L-24.272-4.490Q-24.272-4.825-24.392-5.025Q-24.511-5.225-24.826-5.225Q-25.096-5.225-25.330-5.089Q-25.564-4.952-25.702-4.718Q-25.841-4.484-25.841-4.210L-25.841-2.850Q-25.841-2.713-25.692-2.677Q-25.543-2.641-25.318-2.641L-25.318-2.361L-26.948-2.361L-26.948-2.641Q-26.719-2.641-26.571-2.675Q-26.422-2.710-26.422-2.850L-26.422-4.490Q-26.422-4.825-26.541-5.025Q-26.661-5.225-26.976-5.225Q-27.246-5.225-27.480-5.089Q-27.714-4.952-27.852-4.718Q-27.991-4.484-27.991-4.210L-27.991-2.850Q-27.991-2.713-27.840-2.677Q-27.690-2.641-27.464-2.641\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.446 5.264)\">\u003Cpath d=\"M-22.213-3.195L-22.213-4.699Q-22.213-4.969-22.321-5.030Q-22.429-5.092-22.740-5.092L-22.740-5.372L-21.632-5.447L-21.632-3.215L-21.632-3.195Q-21.632-2.915-21.581-2.771Q-21.530-2.628-21.388-2.571Q-21.246-2.515-20.959-2.515Q-20.706-2.515-20.501-2.655Q-20.296-2.795-20.180-3.021Q-20.063-3.246-20.063-3.496L-20.063-4.699Q-20.063-4.969-20.171-5.030Q-20.279-5.092-20.590-5.092L-20.590-5.372L-19.482-5.447L-19.482-3.034Q-19.482-2.843-19.429-2.761Q-19.376-2.679-19.276-2.660Q-19.175-2.641-18.959-2.641L-18.959-2.361L-20.036-2.293L-20.036-2.857Q-20.145-2.675-20.291-2.552Q-20.436-2.429-20.622-2.361Q-20.809-2.293-21.010-2.293Q-22.213-2.293-22.213-3.195M-17.873-1.131Q-17.873-1.165-17.845-1.192Q-17.575-1.421-17.426-1.744Q-17.278-2.067-17.278-2.423L-17.278-2.460Q-17.387-2.361-17.551-2.361Q-17.732-2.361-17.852-2.481Q-17.972-2.600-17.972-2.781Q-17.972-2.956-17.852-3.075Q-17.732-3.195-17.551-3.195Q-17.295-3.195-17.175-2.956Q-17.056-2.716-17.056-2.423Q-17.056-2.023-17.225-1.652Q-17.394-1.281-17.691-1.025Q-17.722-1.004-17.749-1.004Q-17.790-1.004-17.831-1.045Q-17.873-1.086-17.873-1.131\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.446 5.264)\">\u003Cpath d=\"M-13.413-2.368L-13.413-3.431Q-13.413-3.455-13.385-3.482Q-13.358-3.509-13.334-3.509L-13.225-3.509Q-13.160-3.509-13.146-3.451Q-13.050-3.017-12.804-2.766Q-12.558-2.515-12.144-2.515Q-11.803-2.515-11.550-2.648Q-11.297-2.781-11.297-3.089Q-11.297-3.246-11.391-3.361Q-11.485-3.475-11.623-3.544Q-11.762-3.612-11.929-3.650L-12.510-3.749Q-12.866-3.817-13.139-4.038Q-13.413-4.258-13.413-4.600Q-13.413-4.849-13.301-5.024Q-13.190-5.198-13.004-5.297Q-12.818-5.396-12.602-5.439Q-12.387-5.482-12.144-5.482Q-11.731-5.482-11.451-5.300L-11.235-5.475Q-11.225-5.478-11.218-5.480Q-11.211-5.482-11.201-5.482L-11.150-5.482Q-11.123-5.482-11.099-5.458Q-11.075-5.434-11.075-5.406L-11.075-4.559Q-11.075-4.538-11.099-4.511Q-11.123-4.484-11.150-4.484L-11.263-4.484Q-11.290-4.484-11.316-4.509Q-11.341-4.535-11.341-4.559Q-11.341-4.795-11.447-4.959Q-11.553-5.123-11.736-5.205Q-11.919-5.287-12.151-5.287Q-12.479-5.287-12.736-5.184Q-12.992-5.082-12.992-4.805Q-12.992-4.610-12.809-4.501Q-12.626-4.391-12.397-4.350L-11.823-4.244Q-11.577-4.196-11.363-4.068Q-11.150-3.940-11.013-3.737Q-10.876-3.533-10.876-3.284Q-10.876-2.771-11.242-2.532Q-11.608-2.293-12.144-2.293Q-12.640-2.293-12.972-2.587L-13.238-2.313Q-13.259-2.293-13.286-2.293L-13.334-2.293Q-13.358-2.293-13.385-2.320Q-13.413-2.347-13.413-2.368M-8.631-2.361L-10.183-2.361L-10.183-2.641Q-9.957-2.641-9.808-2.675Q-9.660-2.710-9.660-2.850L-9.660-4.699Q-9.660-4.887-9.707-4.971Q-9.755-5.054-9.853-5.073Q-9.950-5.092-10.162-5.092L-10.162-5.372L-9.106-5.447L-9.106-2.850Q-9.106-2.710-8.974-2.675Q-8.843-2.641-8.631-2.641L-8.631-2.361M-9.902-6.668Q-9.902-6.839-9.779-6.958Q-9.656-7.078-9.485-7.078Q-9.318-7.078-9.195-6.958Q-9.072-6.839-9.072-6.668Q-9.072-6.493-9.195-6.370Q-9.318-6.247-9.485-6.247Q-9.656-6.247-9.779-6.370Q-9.902-6.493-9.902-6.668M-8.026-1.828Q-8.026-2.074-7.829-2.258Q-7.633-2.443-7.376-2.522Q-7.513-2.634-7.585-2.795Q-7.657-2.956-7.657-3.137Q-7.657-3.458-7.445-3.704Q-7.780-4.002-7.780-4.412Q-7.780-4.873-7.390-5.160Q-7-5.447-6.522-5.447Q-6.050-5.447-5.715-5.201Q-5.541-5.355-5.331-5.437Q-5.121-5.519-4.892-5.519Q-4.727-5.519-4.606-5.412Q-4.485-5.304-4.485-5.140Q-4.485-5.044-4.557-4.972Q-4.628-4.901-4.721-4.901Q-4.820-4.901-4.890-4.974Q-4.960-5.048-4.960-5.147Q-4.960-5.201-4.946-5.232L-4.939-5.246Q-4.933-5.266-4.924-5.277Q-4.915-5.287-4.912-5.294Q-5.268-5.294-5.555-5.071Q-5.268-4.778-5.268-4.412Q-5.268-4.097-5.452-3.865Q-5.637-3.632-5.925-3.504Q-6.214-3.376-6.522-3.376Q-6.724-3.376-6.915-3.426Q-7.106-3.475-7.284-3.585Q-7.376-3.458-7.376-3.315Q-7.376-3.133-7.248-2.998Q-7.120-2.863-6.935-2.863L-6.303-2.863Q-5.855-2.863-5.486-2.792Q-5.117-2.720-4.857-2.491Q-4.598-2.262-4.598-1.828Q-4.598-1.507-4.893-1.305Q-5.189-1.103-5.592-1.014Q-5.996-0.925-6.310-0.925Q-6.628-0.925-7.031-1.014Q-7.435-1.103-7.730-1.305Q-8.026-1.507-8.026-1.828M-7.571-1.828Q-7.571-1.599-7.352-1.450Q-7.134-1.301-6.842-1.233Q-6.549-1.165-6.310-1.165Q-6.146-1.165-5.937-1.201Q-5.729-1.236-5.522-1.317Q-5.315-1.397-5.184-1.525Q-5.052-1.653-5.052-1.828Q-5.052-2.180-5.433-2.274Q-5.814-2.368-6.317-2.368L-6.935-2.368Q-7.175-2.368-7.373-2.217Q-7.571-2.067-7.571-1.828M-6.522-3.615Q-5.855-3.615-5.855-4.412Q-5.855-5.212-6.522-5.212Q-7.192-5.212-7.192-4.412Q-7.192-3.615-6.522-3.615M-3.682-0.604L-3.750-0.604Q-3.784-0.604-3.806-0.630Q-3.829-0.655-3.829-0.690Q-3.829-0.734-3.798-0.751Q-3.442-1.055-3.193-1.445Q-2.943-1.835-2.791-2.267Q-2.639-2.699-2.569-3.168Q-2.499-3.636-2.499-4.111Q-2.499-4.590-2.569-5.056Q-2.639-5.523-2.793-5.958Q-2.947-6.394-3.198-6.782Q-3.449-7.170-3.798-7.464Q-3.829-7.481-3.829-7.526Q-3.829-7.560-3.806-7.585Q-3.784-7.611-3.750-7.611L-3.682-7.611Q-3.671-7.611-3.663-7.609Q-3.654-7.608-3.644-7.604Q-3.101-7.204-2.728-6.651Q-2.355-6.097-2.174-5.451Q-1.993-4.805-1.993-4.111Q-1.993-3.410-2.174-2.763Q-2.355-2.115-2.730-1.561Q-3.104-1.007-3.644-0.611Q-3.654-0.611-3.663-0.609Q-3.671-0.608-3.682-0.604\" 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=\"M182.624 10.443h56.905v-25.608h-56.905Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(224.33 5.063)\">\u003Cpath d=\"M-25.913-11.335Q-25.913-11.725-25.550-11.950Q-25.188-12.176-24.715-12.263Q-24.241-12.350-23.797-12.357Q-23.797-12.545-23.915-12.678Q-24.033-12.812-24.214-12.878Q-24.395-12.945-24.580-12.945Q-24.880-12.945-25.020-12.924L-25.020-12.873Q-25.020-12.726-25.125-12.625Q-25.229-12.525-25.372-12.525Q-25.526-12.525-25.627-12.632Q-25.728-12.740-25.728-12.887Q-25.728-13.242-25.395-13.338Q-25.061-13.434-24.573-13.434Q-24.337-13.434-24.103-13.365Q-23.869-13.297-23.672-13.165Q-23.476-13.034-23.356-12.841Q-23.236-12.648-23.236-12.405L-23.236-10.901Q-23.236-10.850-22.775-10.850Q-22.604-10.833-22.560-10.648L-22.560-10.569Q-22.604-10.382-22.775-10.361L-22.901-10.361Q-23.202-10.361-23.402-10.402Q-23.602-10.443-23.728-10.607Q-24.132-10.327-24.750-10.327Q-25.044-10.327-25.311-10.450Q-25.578-10.573-25.745-10.802Q-25.913-11.031-25.913-11.335M-25.352-11.328Q-25.352-11.089-25.140-10.952Q-24.928-10.816-24.679-10.816Q-24.487-10.816-24.284-10.867Q-24.081-10.918-23.939-11.039Q-23.797-11.161-23.797-11.356L-23.797-11.872Q-24.043-11.872-24.407-11.822Q-24.771-11.773-25.061-11.651Q-25.352-11.530-25.352-11.328M-21.903-11.110L-21.903-12.887L-22.272-12.887Q-22.454-12.907-22.491-13.099L-22.491-13.174Q-22.450-13.359-22.272-13.379L-21.558-13.379Q-21.387-13.359-21.343-13.174L-21.343-11.137Q-21.343-10.932-21.194-10.874Q-21.045-10.816-20.796-10.816Q-20.615-10.816-20.444-10.882Q-20.273-10.949-20.164-11.080Q-20.054-11.212-20.054-11.397L-20.054-12.887L-20.423-12.887Q-20.608-12.907-20.642-13.099L-20.642-13.174Q-20.608-13.359-20.423-13.379L-19.712-13.379Q-19.538-13.359-19.494-13.174L-19.494-10.850L-19.121-10.850Q-18.940-10.829-18.906-10.648L-18.906-10.569Q-18.940-10.382-19.121-10.361L-19.835-10.361Q-20.010-10.382-20.054-10.556Q-20.406-10.327-20.851-10.327Q-21.056-10.327-21.244-10.363Q-21.432-10.399-21.577-10.487Q-21.722-10.576-21.813-10.732Q-21.903-10.887-21.903-11.110M-18.629-9.794Q-18.629-10.057-18.499-10.286Q-18.369-10.515-18.150-10.655Q-18.311-10.877-18.311-11.157Q-18.311-11.407-18.178-11.636Q-18.396-11.920-18.396-12.285Q-18.396-12.600-18.229-12.860Q-18.061-13.119-17.783-13.266Q-17.504-13.413-17.186-13.413Q-17.005-13.413-16.828-13.360Q-16.650-13.307-16.506-13.218Q-16.171-13.447-15.758-13.447Q-15.549-13.447-15.390-13.333Q-15.231-13.218-15.231-13.020Q-15.231-12.890-15.320-12.798Q-15.409-12.706-15.546-12.706Q-15.662-12.706-15.746-12.774Q-15.830-12.842-15.857-12.952Q-15.983-12.945-16.158-12.866Q-15.980-12.593-15.980-12.285Q-15.980-12.039-16.077-11.836Q-16.175-11.632-16.346-11.477Q-16.517-11.321-16.737-11.236Q-16.957-11.151-17.186-11.151Q-17.525-11.151-17.815-11.315Q-17.826-11.315-17.834-11.251Q-17.843-11.188-17.843-11.157Q-17.843-11.051-17.785-10.957Q-17.726-10.863-17.621-10.829Q-17.607-10.833-17.595-10.834Q-17.583-10.836-17.562-10.836Q-17.549-10.836-17.521-10.829Q-17.494-10.822-17.487-10.822L-16.968-10.822Q-16.284-10.822-15.811-10.611Q-15.337-10.399-15.337-9.794Q-15.337-9.530-15.495-9.332Q-15.652-9.134-15.912-9.007Q-16.171-8.881-16.452-8.823Q-16.732-8.765-16.981-8.765Q-17.323-8.765-17.709-8.872Q-18.096-8.980-18.362-9.214Q-18.629-9.448-18.629-9.794M-18.157-9.800Q-18.157-9.609-17.947-9.486Q-17.737-9.363-17.453-9.305Q-17.169-9.247-16.981-9.247Q-16.793-9.247-16.510-9.305Q-16.226-9.363-16.016-9.486Q-15.806-9.609-15.806-9.800Q-15.806-10.053-16.002-10.175Q-16.199-10.296-16.445-10.325Q-16.691-10.354-16.995-10.354L-17.535-10.354Q-17.696-10.354-17.838-10.284Q-17.979-10.214-18.068-10.086Q-18.157-9.958-18.157-9.800M-17.186-11.636Q-16.923-11.636-16.732-11.827Q-16.540-12.019-16.540-12.285Q-16.540-12.422-16.588-12.537Q-16.636-12.651-16.728-12.743Q-16.821-12.836-16.935-12.883Q-17.050-12.931-17.186-12.931Q-17.453-12.931-17.644-12.740Q-17.836-12.549-17.836-12.285Q-17.836-12.026-17.641-11.831Q-17.446-11.636-17.186-11.636M-15.170-10.569L-15.170-10.648Q-15.125-10.833-14.955-10.850L-14.780-10.850L-14.780-12.887L-14.955-12.887Q-15.136-12.907-15.170-13.099L-15.170-13.174Q-15.125-13.362-14.955-13.379L-14.534-13.379Q-14.367-13.359-14.315-13.174Q-14.035-13.413-13.673-13.413Q-13.505-13.413-13.358-13.318Q-13.211-13.222-13.146-13.071Q-12.993-13.239-12.798-13.326Q-12.603-13.413-12.391-13.413Q-12.025-13.413-11.890-13.114Q-11.755-12.815-11.755-12.405L-11.755-10.850L-11.581-10.850Q-11.396-10.829-11.362-10.648L-11.362-10.569Q-11.407-10.382-11.581-10.361L-12.295-10.361Q-12.466-10.382-12.511-10.569L-12.511-10.648Q-12.466-10.829-12.295-10.850L-12.217-10.850L-12.217-12.378Q-12.217-12.924-12.435-12.924Q-12.726-12.924-12.882-12.653Q-13.037-12.381-13.037-12.063L-13.037-10.850L-12.859-10.850Q-12.678-10.829-12.644-10.648L-12.644-10.569Q-12.688-10.382-12.859-10.361L-13.574-10.361Q-13.748-10.382-13.792-10.569L-13.792-10.648Q-13.748-10.829-13.574-10.850L-13.498-10.850L-13.498-12.378Q-13.498-12.924-13.714-12.924Q-14.004-12.924-14.160-12.651Q-14.315-12.378-14.315-12.063L-14.315-10.850L-14.141-10.850Q-13.960-10.829-13.926-10.648L-13.926-10.569Q-13.970-10.378-14.141-10.361L-14.955-10.361Q-15.136-10.382-15.170-10.569M-8.334-11.663L-10.470-11.663Q-10.422-11.421-10.250-11.226Q-10.077-11.031-9.834-10.923Q-9.592-10.816-9.342-10.816Q-8.929-10.816-8.734-11.069Q-8.727-11.079-8.677-11.171Q-8.628-11.263-8.585-11.301Q-8.542-11.339-8.460-11.349L-8.334-11.349Q-8.166-11.332-8.115-11.144L-8.115-11.096Q-8.173-10.833-8.375-10.660Q-8.577-10.487-8.850-10.407Q-9.123-10.327-9.390-10.327Q-9.814-10.327-10.198-10.527Q-10.583-10.727-10.817-11.077Q-11.051-11.427-11.051-11.858L-11.051-11.909Q-11.051-12.319-10.836-12.672Q-10.621-13.024-10.263-13.229Q-9.906-13.434-9.496-13.434Q-9.055-13.434-8.746-13.239Q-8.436-13.044-8.276-12.704Q-8.115-12.364-8.115-11.923L-8.115-11.872Q-8.166-11.684-8.334-11.663M-10.463-12.145L-8.689-12.145Q-8.730-12.504-8.939-12.725Q-9.147-12.945-9.496-12.945Q-9.841-12.945-10.110-12.716Q-10.378-12.487-10.463-12.145M-7.630-10.569L-7.630-10.648Q-7.592-10.829-7.411-10.850L-7.042-10.850L-7.042-12.887L-7.411-12.887Q-7.592-12.907-7.630-13.099L-7.630-13.174Q-7.589-13.359-7.411-13.379L-6.697-13.379Q-6.526-13.359-6.481-13.174L-6.481-13.099L-6.488-13.078Q-6.290-13.236-6.051-13.324Q-5.811-13.413-5.555-13.413Q-5.251-13.413-5.042-13.290Q-4.834-13.167-4.733-12.942Q-4.632-12.716-4.632-12.405L-4.632-10.850L-4.260-10.850Q-4.079-10.829-4.044-10.648L-4.044-10.569Q-4.079-10.382-4.260-10.361L-5.480-10.361Q-5.651-10.382-5.695-10.569L-5.695-10.648Q-5.651-10.833-5.480-10.850L-5.193-10.850L-5.193-12.378Q-5.193-12.648-5.271-12.786Q-5.350-12.924-5.606-12.924Q-5.842-12.924-6.042-12.810Q-6.242-12.695-6.362-12.496Q-6.481-12.296-6.481-12.063L-6.481-10.850L-6.109-10.850Q-5.928-10.829-5.893-10.648L-5.893-10.569Q-5.928-10.382-6.109-10.361L-7.411-10.361Q-7.592-10.382-7.630-10.569M-2.927-11.328L-2.927-12.887L-3.583-12.887Q-3.757-12.907-3.802-13.099L-3.802-13.174Q-3.757-13.359-3.583-13.379L-2.927-13.379L-2.927-14.035Q-2.882-14.216-2.708-14.240L-2.581-14.240Q-2.411-14.216-2.366-14.035L-2.366-13.379L-1.177-13.379Q-1.009-13.362-0.958-13.174L-0.958-13.099Q-1.006-12.907-1.177-12.887L-2.366-12.887L-2.366-11.356Q-2.366-10.816-1.864-10.816Q-1.645-10.816-1.501-10.978Q-1.358-11.140-1.358-11.356Q-1.358-11.438-1.295-11.499Q-1.231-11.561-1.143-11.571L-1.016-11.571Q-0.842-11.550-0.797-11.369L-0.797-11.328Q-0.797-11.045-0.958-10.814Q-1.119-10.583-1.375-10.455Q-1.631-10.327-1.912-10.327Q-2.359-10.327-2.643-10.599Q-2.927-10.870-2.927-11.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(224.33 5.063)\">\u003Cpath d=\"M-31.173-0.611Q-31.723-1.011-32.094-1.566Q-32.465-2.122-32.646-2.768Q-32.827-3.414-32.827-4.111Q-32.827-4.624-32.727-5.119Q-32.626-5.615-32.421-6.066Q-32.216-6.517-31.903-6.909Q-31.590-7.300-31.173-7.604Q-31.163-7.608-31.156-7.609Q-31.149-7.611-31.139-7.611L-31.071-7.611Q-31.036-7.611-31.014-7.587Q-30.992-7.563-30.992-7.526Q-30.992-7.481-31.019-7.464Q-31.368-7.163-31.621-6.779Q-31.874-6.394-32.026-5.953Q-32.178-5.512-32.250-5.056Q-32.322-4.600-32.322-4.111Q-32.322-3.110-32.012-2.223Q-31.703-1.336-31.019-0.751Q-30.992-0.734-30.992-0.690Q-30.992-0.652-31.014-0.628Q-31.036-0.604-31.071-0.604L-31.139-0.604Q-31.146-0.608-31.154-0.609Q-31.163-0.611-31.173-0.611M-29.656-3.202L-29.656-5.099L-30.295-5.099L-30.295-5.321Q-29.977-5.321-29.760-5.531Q-29.543-5.741-29.442-6.051Q-29.341-6.360-29.341-6.668L-29.075-6.668L-29.075-5.379L-27.998-5.379L-27.998-5.099L-29.075-5.099L-29.075-3.215Q-29.075-2.939-28.970-2.740Q-28.866-2.542-28.606-2.542Q-28.449-2.542-28.343-2.646Q-28.237-2.751-28.188-2.904Q-28.138-3.058-28.138-3.215L-28.138-3.629L-27.871-3.629L-27.871-3.202Q-27.871-2.976-27.971-2.766Q-28.070-2.556-28.254-2.424Q-28.439-2.293-28.668-2.293Q-29.105-2.293-29.380-2.530Q-29.656-2.768-29.656-3.202M-25.311-2.361L-27.048-2.361L-27.048-2.641Q-26.819-2.641-26.670-2.675Q-26.521-2.710-26.521-2.850L-26.521-4.699Q-26.521-4.969-26.629-5.030Q-26.737-5.092-27.048-5.092L-27.048-5.372L-26.019-5.447L-26.019-4.740Q-25.889-5.048-25.646-5.247Q-25.404-5.447-25.086-5.447Q-24.867-5.447-24.696-5.323Q-24.525-5.198-24.525-4.986Q-24.525-4.849-24.624-4.750Q-24.723-4.651-24.857-4.651Q-24.993-4.651-25.093-4.750Q-25.192-4.849-25.192-4.986Q-25.192-5.126-25.093-5.225Q-25.383-5.225-25.583-5.029Q-25.783-4.832-25.875-4.538Q-25.968-4.244-25.968-3.964L-25.968-2.850Q-25.968-2.641-25.311-2.641L-25.311-2.361M-23.883-3.089Q-23.883-3.421-23.659-3.648Q-23.435-3.875-23.091-4.003Q-22.748-4.132-22.375-4.184Q-22.003-4.237-21.699-4.237L-21.699-4.490Q-21.699-4.695-21.806-4.875Q-21.914-5.054-22.095-5.157Q-22.276-5.259-22.485-5.259Q-22.891-5.259-23.127-5.167Q-23.038-5.130-22.992-5.046Q-22.946-4.962-22.946-4.860Q-22.946-4.764-22.992-4.685Q-23.038-4.607-23.119-4.562Q-23.199-4.518-23.288-4.518Q-23.438-4.518-23.539-4.615Q-23.640-4.713-23.640-4.860Q-23.640-5.482-22.485-5.482Q-22.273-5.482-22.023-5.418Q-21.774-5.355-21.572-5.236Q-21.370-5.116-21.244-4.931Q-21.117-4.747-21.117-4.504L-21.117-2.928Q-21.117-2.812-21.056-2.716Q-20.994-2.621-20.882-2.621Q-20.772-2.621-20.707-2.715Q-20.642-2.809-20.642-2.928L-20.642-3.376L-20.376-3.376L-20.376-2.928Q-20.376-2.658-20.603-2.493Q-20.830-2.327-21.111-2.327Q-21.319-2.327-21.456-2.481Q-21.593-2.634-21.617-2.850Q-21.763-2.583-22.045-2.438Q-22.327-2.293-22.652-2.293Q-22.929-2.293-23.213-2.368Q-23.496-2.443-23.690-2.622Q-23.883-2.802-23.883-3.089M-23.267-3.089Q-23.267-2.915-23.167-2.785Q-23.066-2.655-22.910-2.585Q-22.755-2.515-22.591-2.515Q-22.372-2.515-22.163-2.612Q-21.955-2.710-21.827-2.891Q-21.699-3.072-21.699-3.298L-21.699-4.026Q-22.023-4.026-22.389-3.935Q-22.755-3.844-23.011-3.632Q-23.267-3.421-23.267-3.089M-18.342-2.361L-19.894-2.361L-19.894-2.641Q-19.668-2.641-19.520-2.675Q-19.371-2.710-19.371-2.850L-19.371-4.699Q-19.371-4.887-19.419-4.971Q-19.467-5.054-19.564-5.073Q-19.661-5.092-19.873-5.092L-19.873-5.372L-18.817-5.447L-18.817-2.850Q-18.817-2.710-18.686-2.675Q-18.554-2.641-18.342-2.641L-18.342-2.361M-19.614-6.668Q-19.614-6.839-19.491-6.958Q-19.367-7.078-19.197-7.078Q-19.029-7.078-18.906-6.958Q-18.783-6.839-18.783-6.668Q-18.783-6.493-18.906-6.370Q-19.029-6.247-19.197-6.247Q-19.367-6.247-19.491-6.370Q-19.614-6.493-19.614-6.668M-16.014-2.361L-17.648-2.361L-17.648-2.641Q-17.419-2.641-17.271-2.675Q-17.122-2.710-17.122-2.850L-17.122-4.699Q-17.122-4.969-17.230-5.030Q-17.337-5.092-17.648-5.092L-17.648-5.372L-16.589-5.447L-16.589-4.798Q-16.418-5.106-16.114-5.277Q-15.809-5.447-15.464-5.447Q-14.958-5.447-14.675-5.224Q-14.391-5-14.391-4.504L-14.391-2.850Q-14.391-2.713-14.242-2.677Q-14.094-2.641-13.868-2.641L-13.868-2.361L-15.498-2.361L-15.498-2.641Q-15.269-2.641-15.121-2.675Q-14.972-2.710-14.972-2.850L-14.972-4.490Q-14.972-4.825-15.092-5.025Q-15.211-5.225-15.526-5.225Q-15.796-5.225-16.030-5.089Q-16.264-4.952-16.402-4.718Q-16.541-4.484-16.541-4.210L-16.541-2.850Q-16.541-2.713-16.390-2.677Q-16.240-2.641-16.014-2.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(224.33 5.063)\">\u003Cpath d=\"M-10.608-3.844Q-10.608-4.186-10.473-4.485Q-10.338-4.784-10.098-5.008Q-9.859-5.232-9.541-5.357Q-9.223-5.482-8.892-5.482Q-8.447-5.482-8.048-5.266Q-7.648-5.051-7.413-4.673Q-7.179-4.296-7.179-3.844Q-7.179-3.503-7.321-3.219Q-7.463-2.935-7.707-2.728Q-7.952-2.522-8.261-2.407Q-8.570-2.293-8.892-2.293Q-9.322-2.293-9.724-2.494Q-10.126-2.696-10.367-3.048Q-10.608-3.400-10.608-3.844M-8.892-2.542Q-8.290-2.542-8.066-2.920Q-7.842-3.298-7.842-3.930Q-7.842-4.542-8.077-4.901Q-8.311-5.259-8.892-5.259Q-9.944-5.259-9.944-3.930Q-9.944-3.298-9.719-2.920Q-9.493-2.542-8.892-2.542M-4.903-2.361L-6.537-2.361L-6.537-2.641Q-6.308-2.641-6.159-2.675Q-6.010-2.710-6.010-2.850L-6.010-4.699Q-6.010-4.969-6.118-5.030Q-6.226-5.092-6.537-5.092L-6.537-5.372L-5.477-5.447L-5.477-4.798Q-5.306-5.106-5.002-5.277Q-4.698-5.447-4.353-5.447Q-3.847-5.447-3.563-5.224Q-3.279-5-3.279-4.504L-3.279-2.850Q-3.279-2.713-3.131-2.677Q-2.982-2.641-2.756-2.641L-2.756-2.361L-4.387-2.361L-4.387-2.641Q-4.158-2.641-4.009-2.675Q-3.860-2.710-3.860-2.850L-3.860-4.490Q-3.860-4.825-3.980-5.025Q-4.100-5.225-4.414-5.225Q-4.684-5.225-4.918-5.089Q-5.152-4.952-5.291-4.718Q-5.429-4.484-5.429-4.210L-5.429-2.850Q-5.429-2.713-5.279-2.677Q-5.129-2.641-4.903-2.641L-4.903-2.361M-0.501-2.361L-2.104-2.361L-2.104-2.641Q-1.878-2.641-1.729-2.675Q-1.581-2.710-1.581-2.850L-1.581-6.469Q-1.581-6.739-1.688-6.801Q-1.796-6.862-2.104-6.862L-2.104-7.143L-1.027-7.218L-1.027-2.850Q-1.027-2.713-0.877-2.677Q-0.726-2.641-0.501-2.641L-0.501-2.361M0.429-1.226Q0.559-1.158 0.696-1.158Q0.867-1.158 1.017-1.247Q1.167-1.336 1.278-1.481Q1.390-1.626 1.468-1.794L1.731-2.361L0.562-4.887Q0.487-5.034 0.357-5.066Q0.227-5.099-0.005-5.099L-0.005-5.379L1.516-5.379L1.516-5.099Q1.167-5.099 1.167-4.952Q1.171-4.931 1.172-4.914Q1.174-4.897 1.174-4.887L2.032-3.028L2.805-4.699Q2.839-4.767 2.839-4.846Q2.839-4.959 2.755-5.029Q2.671-5.099 2.558-5.099L2.558-5.379L3.755-5.379L3.755-5.099Q3.536-5.099 3.363-4.995Q3.191-4.890 3.098-4.699L1.762-1.794Q1.591-1.424 1.321-1.178Q1.051-0.932 0.696-0.932Q0.426-0.932 0.207-1.098Q-0.012-1.264-0.012-1.527Q-0.012-1.664 0.080-1.753Q0.173-1.841 0.313-1.841Q0.450-1.841 0.538-1.753Q0.627-1.664 0.627-1.527Q0.627-1.424 0.574-1.346Q0.521-1.267 0.429-1.226M4.616-0.604L4.548-0.604Q4.514-0.604 4.491-0.630Q4.469-0.655 4.469-0.690Q4.469-0.734 4.500-0.751Q4.855-1.055 5.105-1.445Q5.354-1.835 5.506-2.267Q5.659-2.699 5.729-3.168Q5.799-3.636 5.799-4.111Q5.799-4.590 5.729-5.056Q5.659-5.523 5.505-5.958Q5.351-6.394 5.100-6.782Q4.848-7.170 4.500-7.464Q4.469-7.481 4.469-7.526Q4.469-7.560 4.491-7.585Q4.514-7.611 4.548-7.611L4.616-7.611Q4.626-7.611 4.635-7.609Q4.643-7.608 4.654-7.604Q5.197-7.204 5.570-6.651Q5.942-6.097 6.123-5.451Q6.305-4.805 6.305-4.111Q6.305-3.410 6.123-2.763Q5.942-2.115 5.568-1.561Q5.194-1.007 4.654-0.611Q4.643-0.611 4.635-0.609Q4.626-0.608 4.616-0.604\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M259.446 10.443h56.906v-25.608h-56.906Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(307.802 6.167)\">\u003Cpath d=\"M-32.968-10.569L-32.968-14.148L-33.337-14.148Q-33.518-14.169-33.555-14.357L-33.555-14.435Q-33.518-14.616-33.337-14.637L-32.622-14.637Q-32.451-14.616-32.407-14.435L-32.407-13.112Q-32.222-13.259-31.992-13.336Q-31.761-13.413-31.525-13.413Q-31.228-13.413-30.968-13.287Q-30.708-13.160-30.520-12.940Q-30.332-12.719-30.232-12.446Q-30.131-12.173-30.131-11.872Q-30.131-11.465-30.329-11.106Q-30.527-10.747-30.866-10.537Q-31.204-10.327-31.614-10.327Q-32.069-10.327-32.407-10.648L-32.407-10.569Q-32.451-10.378-32.622-10.361L-32.749-10.361Q-32.916-10.382-32.968-10.569M-31.652-10.816Q-31.382-10.816-31.163-10.964Q-30.944-11.113-30.818-11.359Q-30.691-11.605-30.691-11.872Q-30.691-12.125-30.801-12.369Q-30.910-12.613-31.113-12.769Q-31.317-12.924-31.580-12.924Q-31.860-12.924-32.089-12.762Q-32.318-12.600-32.407-12.337L-32.407-11.591Q-32.328-11.270-32.135-11.043Q-31.942-10.816-31.652-10.816M-29.546-11.335Q-29.546-11.725-29.184-11.950Q-28.822-12.176-28.348-12.263Q-27.875-12.350-27.430-12.357Q-27.430-12.545-27.548-12.678Q-27.666-12.812-27.847-12.878Q-28.029-12.945-28.213-12.945Q-28.514-12.945-28.654-12.924L-28.654-12.873Q-28.654-12.726-28.758-12.625Q-28.863-12.525-29.006-12.525Q-29.160-12.525-29.261-12.632Q-29.362-12.740-29.362-12.887Q-29.362-13.242-29.028-13.338Q-28.695-13.434-28.206-13.434Q-27.971-13.434-27.736-13.365Q-27.502-13.297-27.306-13.165Q-27.109-13.034-26.990-12.841Q-26.870-12.648-26.870-12.405L-26.870-10.901Q-26.870-10.850-26.409-10.850Q-26.238-10.833-26.193-10.648L-26.193-10.569Q-26.238-10.382-26.409-10.361L-26.535-10.361Q-26.836-10.361-27.036-10.402Q-27.236-10.443-27.362-10.607Q-27.765-10.327-28.384-10.327Q-28.678-10.327-28.945-10.450Q-29.211-10.573-29.379-10.802Q-29.546-11.031-29.546-11.335M-28.986-11.328Q-28.986-11.089-28.774-10.952Q-28.562-10.816-28.312-10.816Q-28.121-10.816-27.918-10.867Q-27.714-10.918-27.572-11.039Q-27.430-11.161-27.430-11.356L-27.430-11.872Q-27.677-11.872-28.041-11.822Q-28.405-11.773-28.695-11.651Q-28.986-11.530-28.986-11.328M-25.137-11.328L-25.137-12.887L-25.793-12.887Q-25.968-12.907-26.012-13.099L-26.012-13.174Q-25.968-13.359-25.793-13.379L-25.137-13.379L-25.137-14.035Q-25.093-14.216-24.918-14.240L-24.792-14.240Q-24.621-14.216-24.576-14.035L-24.576-13.379L-23.387-13.379Q-23.220-13.362-23.168-13.174L-23.168-13.099Q-23.216-12.907-23.387-12.887L-24.576-12.887L-24.576-11.356Q-24.576-10.816-24.074-10.816Q-23.855-10.816-23.712-10.978Q-23.568-11.140-23.568-11.356Q-23.568-11.438-23.505-11.499Q-23.442-11.561-23.353-11.571L-23.226-11.571Q-23.052-11.550-23.008-11.369L-23.008-11.328Q-23.008-11.045-23.168-10.814Q-23.329-10.583-23.585-10.455Q-23.842-10.327-24.122-10.327Q-24.570-10.327-24.853-10.599Q-25.137-10.870-25.137-11.328M-21.982-11.872Q-21.982-12.292-21.769-12.654Q-21.555-13.017-21.191-13.225Q-20.827-13.434-20.407-13.434Q-19.921-13.434-19.590-13.338Q-19.258-13.242-19.258-12.887Q-19.258-12.740-19.357-12.632Q-19.456-12.525-19.607-12.525Q-19.757-12.525-19.861-12.625Q-19.966-12.726-19.966-12.873L-19.966-12.924Q-20.106-12.945-20.400-12.945Q-20.687-12.945-20.921-12.796Q-21.155-12.648-21.288-12.400Q-21.422-12.152-21.422-11.872Q-21.422-11.591-21.271-11.345Q-21.121-11.099-20.871-10.957Q-20.622-10.816-20.335-10.816Q-20.061-10.816-19.950-10.906Q-19.839-10.997-19.737-11.163Q-19.634-11.328-19.532-11.342L-19.385-11.342Q-19.292-11.332-19.236-11.272Q-19.179-11.212-19.179-11.123Q-19.179-11.082-19.197-11.048Q-19.292-10.792-19.470-10.634Q-19.648-10.477-19.889-10.402Q-20.130-10.327-20.407-10.327Q-20.830-10.327-21.194-10.535Q-21.558-10.744-21.770-11.096Q-21.982-11.448-21.982-11.872M-18.694-10.569L-18.694-10.648Q-18.657-10.829-18.475-10.850L-18.106-10.850L-18.106-14.148L-18.475-14.148Q-18.657-14.169-18.694-14.357L-18.694-14.435Q-18.657-14.616-18.475-14.637L-17.761-14.637Q-17.590-14.616-17.546-14.435L-17.546-13.078Q-17.142-13.413-16.619-13.413Q-16.315-13.413-16.107-13.290Q-15.898-13.167-15.797-12.942Q-15.697-12.716-15.697-12.405L-15.697-10.850L-15.324-10.850Q-15.143-10.829-15.109-10.648L-15.109-10.569Q-15.143-10.382-15.324-10.361L-16.544-10.361Q-16.715-10.382-16.760-10.569L-16.760-10.648Q-16.715-10.833-16.544-10.850L-16.257-10.850L-16.257-12.378Q-16.257-12.648-16.336-12.786Q-16.414-12.924-16.671-12.924Q-16.907-12.924-17.107-12.810Q-17.306-12.695-17.426-12.496Q-17.546-12.296-17.546-12.063L-17.546-10.850L-17.173-10.850Q-16.992-10.829-16.958-10.648L-16.958-10.569Q-16.992-10.382-17.173-10.361L-18.475-10.361Q-18.657-10.382-18.694-10.569\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(307.802 6.167)\">\u003Cpath d=\"M-9.431-9.681L-9.431-11.937L-11.680-11.937Q-11.748-11.947-11.794-11.993Q-11.840-12.039-11.840-12.111Q-11.840-12.255-11.680-12.278L-9.431-12.278L-9.431-14.534Q-9.420-14.603-9.374-14.649Q-9.328-14.695-9.256-14.695Q-9.113-14.695-9.089-14.534L-9.089-12.278L-6.847-12.278Q-6.686-12.255-6.686-12.111Q-6.686-12.039-6.732-11.993Q-6.778-11.947-6.847-11.937L-9.089-11.937L-9.089-9.681Q-9.113-9.520-9.256-9.520Q-9.328-9.520-9.374-9.566Q-9.420-9.612-9.431-9.681\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(307.802 6.167)\">\u003Cpath d=\"M-32.406-2.535L-32.406-3.335Q-32.382-3.516-32.198-3.537L-32.051-3.537Q-31.907-3.516-31.856-3.376Q-31.678-2.816-31.043-2.816Q-30.861-2.816-30.661-2.846Q-30.461-2.877-30.315-2.978Q-30.168-3.079-30.168-3.257Q-30.168-3.441-30.362-3.540Q-30.557-3.639-30.796-3.677L-31.408-3.776Q-32.406-3.961-32.406-4.593Q-32.406-4.846-32.280-5.012Q-32.153-5.177-31.943-5.271Q-31.733-5.365-31.509-5.400Q-31.285-5.434-31.043-5.434Q-30.824-5.434-30.655-5.408Q-30.485-5.382-30.342-5.314Q-30.273-5.417-30.161-5.434L-30.092-5.434Q-30.007-5.424-29.952-5.369Q-29.898-5.314-29.887-5.232L-29.887-4.613Q-29.898-4.531-29.952-4.473Q-30.007-4.415-30.092-4.405L-30.239-4.405Q-30.321-4.415-30.379-4.473Q-30.438-4.531-30.448-4.613Q-30.448-4.945-31.056-4.945Q-31.360-4.945-31.639-4.873Q-31.918-4.801-31.918-4.586Q-31.918-4.354-31.330-4.258L-30.714-4.152Q-30.291-4.080-29.985-3.863Q-29.679-3.646-29.679-3.257Q-29.679-2.915-29.886-2.703Q-30.092-2.491-30.398-2.409Q-30.704-2.327-31.043-2.327Q-31.548-2.327-31.897-2.549Q-31.959-2.440-32.001-2.390Q-32.044-2.340-32.136-2.327L-32.198-2.327Q-32.386-2.347-32.406-2.535M-29.142-2.569L-29.142-2.648Q-29.105-2.829-28.923-2.850L-28.554-2.850L-28.554-6.148L-28.923-6.148Q-29.105-6.169-29.142-6.357L-29.142-6.435Q-29.105-6.616-28.923-6.637L-28.209-6.637Q-28.038-6.616-27.994-6.435L-27.994-5.078Q-27.590-5.413-27.067-5.413Q-26.763-5.413-26.555-5.290Q-26.346-5.167-26.245-4.942Q-26.145-4.716-26.145-4.405L-26.145-2.850L-25.772-2.850Q-25.591-2.829-25.557-2.648L-25.557-2.569Q-25.591-2.382-25.772-2.361L-26.992-2.361Q-27.163-2.382-27.208-2.569L-27.208-2.648Q-27.163-2.833-26.992-2.850L-26.705-2.850L-26.705-4.378Q-26.705-4.648-26.784-4.786Q-26.862-4.924-27.119-4.924Q-27.355-4.924-27.554-4.810Q-27.754-4.695-27.874-4.496Q-27.994-4.296-27.994-4.063L-27.994-2.850L-27.621-2.850Q-27.440-2.829-27.406-2.648L-27.406-2.569Q-27.440-2.382-27.621-2.361L-28.923-2.361Q-29.105-2.382-29.142-2.569M-24.839-3.110L-24.839-4.887L-25.208-4.887Q-25.389-4.907-25.427-5.099L-25.427-5.174Q-25.386-5.359-25.208-5.379L-24.494-5.379Q-24.323-5.359-24.278-5.174L-24.278-3.137Q-24.278-2.932-24.130-2.874Q-23.981-2.816-23.731-2.816Q-23.550-2.816-23.379-2.882Q-23.209-2.949-23.099-3.080Q-22.990-3.212-22.990-3.397L-22.990-4.887L-23.359-4.887Q-23.544-4.907-23.578-5.099L-23.578-5.174Q-23.544-5.359-23.359-5.379L-22.648-5.379Q-22.474-5.359-22.429-5.174L-22.429-2.850L-22.057-2.850Q-21.876-2.829-21.841-2.648L-21.841-2.569Q-21.876-2.382-22.057-2.361L-22.771-2.361Q-22.945-2.382-22.990-2.556Q-23.342-2.327-23.786-2.327Q-23.991-2.327-24.179-2.363Q-24.367-2.399-24.513-2.487Q-24.658-2.576-24.748-2.732Q-24.839-2.887-24.839-3.110M-21.493-2.569L-21.493-2.648Q-21.448-2.829-21.277-2.850L-20.505-2.850L-20.505-4.887L-21.253-4.887Q-21.428-4.907-21.472-5.099L-21.472-5.174Q-21.428-5.359-21.253-5.379L-20.505-5.379L-20.505-5.776Q-20.505-6.182-20.149-6.428Q-19.794-6.674-19.374-6.674Q-19.100-6.674-18.887-6.569Q-18.673-6.463-18.673-6.216Q-18.673-6.073-18.769-5.970Q-18.864-5.868-19.008-5.868Q-19.138-5.868-19.244-5.960Q-19.350-6.052-19.350-6.182L-19.421-6.182Q-19.555-6.182-19.674-6.129Q-19.794-6.076-19.869-5.976Q-19.944-5.875-19.944-5.748L-19.944-5.379L-19.042-5.379Q-18.871-5.362-18.827-5.174L-18.827-5.099Q-18.871-4.907-19.042-4.887L-19.944-4.887L-19.944-2.850L-19.175-2.850Q-19.004-2.829-18.960-2.648L-18.960-2.569Q-19.004-2.382-19.175-2.361L-21.277-2.361Q-21.448-2.382-21.493-2.569M-17.777-2.569L-17.777-2.648Q-17.733-2.829-17.562-2.850L-16.790-2.850L-16.790-4.887L-17.538-4.887Q-17.712-4.907-17.757-5.099L-17.757-5.174Q-17.712-5.359-17.538-5.379L-16.790-5.379L-16.790-5.776Q-16.790-6.182-16.434-6.428Q-16.079-6.674-15.658-6.674Q-15.385-6.674-15.171-6.569Q-14.958-6.463-14.958-6.216Q-14.958-6.073-15.053-5.970Q-15.149-5.868-15.293-5.868Q-15.422-5.868-15.528-5.960Q-15.634-6.052-15.634-6.182L-15.706-6.182Q-15.839-6.182-15.959-6.129Q-16.079-6.076-16.154-5.976Q-16.229-5.875-16.229-5.748L-16.229-5.379L-15.327-5.379Q-15.156-5.362-15.111-5.174L-15.111-5.099Q-15.156-4.907-15.327-4.887L-16.229-4.887L-16.229-2.850L-15.460-2.850Q-15.289-2.829-15.245-2.648L-15.245-2.569Q-15.289-2.382-15.460-2.361L-17.562-2.361Q-17.733-2.382-17.777-2.569M-13.949-2.569L-13.949-2.648Q-13.905-2.829-13.734-2.850L-12.767-2.850L-12.767-6.148L-13.734-6.148Q-13.905-6.169-13.949-6.357L-13.949-6.435Q-13.905-6.616-13.734-6.637L-12.425-6.637Q-12.257-6.616-12.206-6.435L-12.206-2.850L-11.242-2.850Q-11.068-2.829-11.023-2.648L-11.023-2.569Q-11.068-2.382-11.242-2.361L-13.734-2.361Q-13.905-2.382-13.949-2.569M-7.554-3.663L-9.690-3.663Q-9.643-3.421-9.470-3.226Q-9.297-3.031-9.055-2.923Q-8.812-2.816-8.563-2.816Q-8.149-2.816-7.954-3.069Q-7.947-3.079-7.898-3.171Q-7.848-3.263-7.805-3.301Q-7.763-3.339-7.681-3.349L-7.554-3.349Q-7.387-3.332-7.336-3.144L-7.336-3.096Q-7.394-2.833-7.595-2.660Q-7.797-2.487-8.070-2.407Q-8.344-2.327-8.610-2.327Q-9.034-2.327-9.419-2.527Q-9.803-2.727-10.037-3.077Q-10.272-3.427-10.272-3.858L-10.272-3.909Q-10.272-4.319-10.056-4.672Q-9.841-5.024-9.484-5.229Q-9.127-5.434-8.716-5.434Q-8.275-5.434-7.966-5.239Q-7.657-5.044-7.496-4.704Q-7.336-4.364-7.336-3.923L-7.336-3.872Q-7.387-3.684-7.554-3.663M-9.684-4.145L-7.910-4.145Q-7.951-4.504-8.159-4.725Q-8.368-4.945-8.716-4.945Q-9.062-4.945-9.330-4.716Q-9.598-4.487-9.684-4.145\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M259.446 73.039h56.906V47.43h-56.906Z\"\u002F>\u003Cg transform=\"translate(312.22 64.735)\">\u003Cpath d=\"M-33.665-2.569L-33.665-2.648Q-33.620-2.833-33.450-2.850L-33.275-2.850L-33.275-4.887L-33.450-4.887Q-33.631-4.907-33.665-5.099L-33.665-5.174Q-33.620-5.362-33.450-5.379L-33.029-5.379Q-32.862-5.359-32.810-5.174Q-32.530-5.413-32.168-5.413Q-32-5.413-31.853-5.318Q-31.706-5.222-31.641-5.071Q-31.488-5.239-31.293-5.326Q-31.098-5.413-30.886-5.413Q-30.520-5.413-30.385-5.114Q-30.250-4.815-30.250-4.405L-30.250-2.850L-30.076-2.850Q-29.891-2.829-29.857-2.648L-29.857-2.569Q-29.902-2.382-30.076-2.361L-30.790-2.361Q-30.961-2.382-31.006-2.569L-31.006-2.648Q-30.961-2.829-30.790-2.850L-30.712-2.850L-30.712-4.378Q-30.712-4.924-30.930-4.924Q-31.221-4.924-31.377-4.653Q-31.532-4.381-31.532-4.063L-31.532-2.850L-31.354-2.850Q-31.173-2.829-31.139-2.648L-31.139-2.569Q-31.183-2.382-31.354-2.361L-32.069-2.361Q-32.243-2.382-32.287-2.569L-32.287-2.648Q-32.243-2.829-32.069-2.850L-31.993-2.850L-31.993-4.378Q-31.993-4.924-32.209-4.924Q-32.499-4.924-32.655-4.651Q-32.810-4.378-32.810-4.063L-32.810-2.850L-32.636-2.850Q-32.455-2.829-32.421-2.648L-32.421-2.569Q-32.465-2.378-32.636-2.361L-33.450-2.361Q-33.631-2.382-33.665-2.569M-28.046-2.327Q-28.459-2.327-28.796-2.540Q-29.133-2.754-29.327-3.113Q-29.522-3.472-29.522-3.872Q-29.522-4.173-29.413-4.455Q-29.304-4.736-29.102-4.959Q-28.900-5.181-28.632-5.307Q-28.364-5.434-28.046-5.434Q-27.728-5.434-27.454-5.306Q-27.181-5.177-26.986-4.962Q-26.791-4.747-26.680-4.466Q-26.569-4.186-26.569-3.872Q-26.569-3.472-26.766-3.111Q-26.962-2.751-27.299-2.539Q-27.636-2.327-28.046-2.327M-28.046-2.816Q-27.639-2.816-27.384-3.161Q-27.130-3.506-27.130-3.930Q-27.130-4.186-27.248-4.420Q-27.366-4.654-27.576-4.800Q-27.786-4.945-28.046-4.945Q-28.312-4.945-28.521-4.800Q-28.729-4.654-28.847-4.420Q-28.965-4.186-28.965-3.930Q-28.965-3.509-28.709-3.163Q-28.452-2.816-28.046-2.816M-24.556-2.327Q-24.963-2.327-25.282-2.546Q-25.602-2.764-25.781-3.118Q-25.961-3.472-25.961-3.872Q-25.961-4.173-25.851-4.453Q-25.742-4.733-25.539-4.952Q-25.335-5.171-25.069-5.292Q-24.802-5.413-24.491-5.413Q-24.043-5.413-23.688-5.133L-23.688-6.148L-24.057-6.148Q-24.242-6.169-24.276-6.357L-24.276-6.435Q-24.242-6.616-24.057-6.637L-23.346-6.637Q-23.172-6.616-23.127-6.435L-23.127-2.850L-22.755-2.850Q-22.574-2.829-22.539-2.648L-22.539-2.569Q-22.574-2.382-22.755-2.361L-23.469-2.361Q-23.643-2.382-23.688-2.569L-23.688-2.682Q-23.859-2.515-24.088-2.421Q-24.317-2.327-24.556-2.327M-24.522-2.816Q-24.207-2.816-23.987-3.051Q-23.766-3.287-23.688-3.615L-23.688-4.343Q-23.739-4.507-23.850-4.639Q-23.961-4.771-24.117-4.848Q-24.272-4.924-24.443-4.924Q-24.713-4.924-24.932-4.776Q-25.151-4.627-25.277-4.378Q-25.404-4.128-25.404-3.865Q-25.404-3.472-25.154-3.144Q-24.905-2.816-24.522-2.816M-19.398-3.663L-21.534-3.663Q-21.487-3.421-21.314-3.226Q-21.141-3.031-20.899-2.923Q-20.656-2.816-20.407-2.816Q-19.993-2.816-19.798-3.069Q-19.791-3.079-19.742-3.171Q-19.692-3.263-19.649-3.301Q-19.607-3.339-19.525-3.349L-19.398-3.349Q-19.231-3.332-19.179-3.144L-19.179-3.096Q-19.238-2.833-19.439-2.660Q-19.641-2.487-19.914-2.407Q-20.188-2.327-20.454-2.327Q-20.878-2.327-21.263-2.527Q-21.647-2.727-21.881-3.077Q-22.116-3.427-22.116-3.858L-22.116-3.909Q-22.116-4.319-21.900-4.672Q-21.685-5.024-21.328-5.229Q-20.971-5.434-20.560-5.434Q-20.119-5.434-19.810-5.239Q-19.501-5.044-19.340-4.704Q-19.179-4.364-19.179-3.923L-19.179-3.872Q-19.231-3.684-19.398-3.663M-21.528-4.145L-19.754-4.145Q-19.795-4.504-20.003-4.725Q-20.212-4.945-20.560-4.945Q-20.906-4.945-21.174-4.716Q-21.442-4.487-21.528-4.145M-18.363-2.569L-18.363-2.648Q-18.318-2.829-18.147-2.850L-17.180-2.850L-17.180-6.148L-18.147-6.148Q-18.318-6.169-18.363-6.357L-18.363-6.435Q-18.318-6.616-18.147-6.637L-16.838-6.637Q-16.671-6.616-16.619-6.435L-16.619-2.850L-15.656-2.850Q-15.481-2.829-15.437-2.648L-15.437-2.569Q-15.481-2.382-15.656-2.361L-18.147-2.361Q-18.318-2.382-18.363-2.569\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-4.965-2.36h16.917\"\u002F>\u003Cpath stroke=\"none\" d=\"m14.552-2.36-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M71.858-2.36H97.31\"\u002F>\u003Cpath stroke=\"none\" d=\"m99.91-2.36-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M157.216-2.36h22.608\"\u002F>\u003Cpath stroke=\"none\" d=\"m182.424-2.36-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M239.73-2.36h16.916\"\u002F>\u003Cpath stroke=\"none\" d=\"m259.246-2.36-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M287.899 10.643V44.63\"\u002F>\u003Cpath stroke=\"none\" d=\"m287.899 47.231 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-neutral)\">\u003Cpath d=\"M100.11-46.463h56.906V-72.07h-56.905Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(146.969 -50.753)\">\u003Cpath d=\"M-33.337-10.569L-33.337-10.648Q-33.292-10.829-33.121-10.850L-32.349-10.850L-32.349-12.887L-33.097-12.887Q-33.272-12.907-33.316-13.099L-33.316-13.174Q-33.272-13.359-33.097-13.379L-32.349-13.379L-32.349-13.776Q-32.349-14.182-31.993-14.428Q-31.638-14.674-31.218-14.674Q-30.944-14.674-30.731-14.569Q-30.517-14.463-30.517-14.216Q-30.517-14.073-30.613-13.970Q-30.708-13.868-30.852-13.868Q-30.982-13.868-31.088-13.960Q-31.194-14.052-31.194-14.182L-31.265-14.182Q-31.399-14.182-31.518-14.129Q-31.638-14.076-31.713-13.976Q-31.788-13.875-31.788-13.748L-31.788-13.379L-30.886-13.379Q-30.715-13.362-30.671-13.174L-30.671-13.099Q-30.715-12.907-30.886-12.887L-31.788-12.887L-31.788-10.850L-31.019-10.850Q-30.848-10.829-30.804-10.648L-30.804-10.569Q-30.848-10.382-31.019-10.361L-33.121-10.361Q-33.292-10.382-33.337-10.569M-29.362-10.569L-29.362-10.648Q-29.317-10.829-29.146-10.850L-28.237-10.850L-28.237-12.887L-29.088-12.887Q-29.263-12.907-29.307-13.099L-29.307-13.174Q-29.263-13.359-29.088-13.379L-27.892-13.379Q-27.721-13.362-27.677-13.174L-27.677-10.850L-26.877-10.850Q-26.706-10.829-26.661-10.648L-26.661-10.569Q-26.706-10.382-26.877-10.361L-29.146-10.361Q-29.317-10.382-29.362-10.569M-28.459-14.234L-28.459-14.281Q-28.459-14.432-28.340-14.538Q-28.220-14.644-28.066-14.644Q-27.916-14.644-27.796-14.538Q-27.677-14.432-27.677-14.281L-27.677-14.234Q-27.677-14.080-27.796-13.974Q-27.916-13.868-28.066-13.868Q-28.220-13.868-28.340-13.974Q-28.459-14.080-28.459-14.234M-25.137-11.328L-25.137-12.887L-25.793-12.887Q-25.968-12.907-26.012-13.099L-26.012-13.174Q-25.968-13.359-25.793-13.379L-25.137-13.379L-25.137-14.035Q-25.093-14.216-24.918-14.240L-24.792-14.240Q-24.621-14.216-24.576-14.035L-24.576-13.379L-23.387-13.379Q-23.220-13.362-23.168-13.174L-23.168-13.099Q-23.216-12.907-23.387-12.887L-24.576-12.887L-24.576-11.356Q-24.576-10.816-24.074-10.816Q-23.855-10.816-23.712-10.978Q-23.568-11.140-23.568-11.356Q-23.568-11.438-23.505-11.499Q-23.442-11.561-23.353-11.571L-23.226-11.571Q-23.052-11.550-23.008-11.369L-23.008-11.328Q-23.008-11.045-23.168-10.814Q-23.329-10.583-23.585-10.455Q-23.842-10.327-24.122-10.327Q-24.570-10.327-24.853-10.599Q-25.137-10.870-25.137-11.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.969 -50.753)\">\u003Cpath d=\"M-19.452-10.368L-19.452-11.431Q-19.452-11.455-19.424-11.482Q-19.397-11.509-19.373-11.509L-19.264-11.509Q-19.199-11.509-19.185-11.451Q-19.089-11.017-18.843-10.766Q-18.597-10.515-18.183-10.515Q-17.842-10.515-17.589-10.648Q-17.336-10.781-17.336-11.089Q-17.336-11.246-17.430-11.361Q-17.524-11.475-17.662-11.544Q-17.801-11.612-17.968-11.650L-18.549-11.749Q-18.905-11.817-19.178-12.038Q-19.452-12.258-19.452-12.600Q-19.452-12.849-19.340-13.024Q-19.229-13.198-19.043-13.297Q-18.857-13.396-18.641-13.439Q-18.426-13.482-18.183-13.482Q-17.770-13.482-17.490-13.300L-17.274-13.475Q-17.264-13.478-17.257-13.480Q-17.250-13.482-17.240-13.482L-17.189-13.482Q-17.162-13.482-17.138-13.458Q-17.114-13.434-17.114-13.406L-17.114-12.559Q-17.114-12.538-17.138-12.511Q-17.162-12.484-17.189-12.484L-17.302-12.484Q-17.329-12.484-17.355-12.509Q-17.380-12.535-17.380-12.559Q-17.380-12.795-17.486-12.959Q-17.592-13.123-17.775-13.205Q-17.958-13.287-18.190-13.287Q-18.518-13.287-18.775-13.184Q-19.031-13.082-19.031-12.805Q-19.031-12.610-18.848-12.501Q-18.665-12.391-18.436-12.350L-17.862-12.244Q-17.616-12.196-17.402-12.068Q-17.189-11.940-17.052-11.737Q-16.915-11.533-16.915-11.284Q-16.915-10.771-17.281-10.532Q-17.647-10.293-18.183-10.293Q-18.679-10.293-19.011-10.587L-19.277-10.313Q-19.298-10.293-19.325-10.293L-19.373-10.293Q-19.397-10.293-19.424-10.320Q-19.452-10.347-19.452-10.368M-15.760-11.202L-15.760-13.099L-16.399-13.099L-16.399-13.321Q-16.081-13.321-15.864-13.531Q-15.647-13.741-15.547-14.051Q-15.446-14.360-15.446-14.668L-15.179-14.668L-15.179-13.379L-14.102-13.379L-14.102-13.099L-15.179-13.099L-15.179-11.215Q-15.179-10.939-15.075-10.740Q-14.971-10.542-14.711-10.542Q-14.554-10.542-14.448-10.646Q-14.342-10.751-14.292-10.904Q-14.243-11.058-14.243-11.215L-14.243-11.629L-13.976-11.629L-13.976-11.202Q-13.976-10.976-14.075-10.766Q-14.174-10.556-14.359-10.424Q-14.543-10.293-14.772-10.293Q-15.210-10.293-15.485-10.530Q-15.760-10.768-15.760-11.202M-13.108-11.089Q-13.108-11.421-12.884-11.648Q-12.660-11.875-12.317-12.003Q-11.973-12.132-11.600-12.184Q-11.228-12.237-10.924-12.237L-10.924-12.490Q-10.924-12.695-11.031-12.875Q-11.139-13.054-11.320-13.157Q-11.501-13.259-11.710-13.259Q-12.117-13.259-12.352-13.167Q-12.264-13.130-12.217-13.046Q-12.171-12.962-12.171-12.860Q-12.171-12.764-12.217-12.685Q-12.264-12.607-12.344-12.562Q-12.424-12.518-12.513-12.518Q-12.663-12.518-12.764-12.615Q-12.865-12.713-12.865-12.860Q-12.865-13.482-11.710-13.482Q-11.498-13.482-11.248-13.418Q-10.999-13.355-10.797-13.236Q-10.596-13.116-10.469-12.931Q-10.343-12.747-10.343-12.504L-10.343-10.928Q-10.343-10.812-10.281-10.716Q-10.220-10.621-10.107-10.621Q-9.997-10.621-9.933-10.715Q-9.868-10.809-9.868-10.928L-9.868-11.376L-9.601-11.376L-9.601-10.928Q-9.601-10.658-9.828-10.493Q-10.056-10.327-10.336-10.327Q-10.544-10.327-10.681-10.481Q-10.818-10.634-10.842-10.850Q-10.989-10.583-11.271-10.438Q-11.553-10.293-11.877-10.293Q-12.154-10.293-12.438-10.368Q-12.722-10.443-12.915-10.622Q-13.108-10.802-13.108-11.089M-12.493-11.089Q-12.493-10.915-12.392-10.785Q-12.291-10.655-12.135-10.585Q-11.980-10.515-11.816-10.515Q-11.597-10.515-11.389-10.612Q-11.180-10.710-11.052-10.891Q-10.924-11.072-10.924-11.298L-10.924-12.026Q-11.248-12.026-11.614-11.935Q-11.980-11.844-12.236-11.632Q-12.493-11.421-12.493-11.089M-8.658-11.202L-8.658-13.099L-9.297-13.099L-9.297-13.321Q-8.979-13.321-8.762-13.531Q-8.545-13.741-8.444-14.051Q-8.343-14.360-8.343-14.668L-8.077-14.668L-8.077-13.379L-7-13.379L-7-13.099L-8.077-13.099L-8.077-11.215Q-8.077-10.939-7.972-10.740Q-7.868-10.542-7.608-10.542Q-7.451-10.542-7.345-10.646Q-7.239-10.751-7.190-10.904Q-7.140-11.058-7.140-11.215L-7.140-11.629L-6.873-11.629L-6.873-11.202Q-6.873-10.976-6.973-10.766Q-7.072-10.556-7.256-10.424Q-7.441-10.293-7.670-10.293Q-8.107-10.293-8.382-10.530Q-8.658-10.768-8.658-11.202M-6.063-10.368L-6.063-11.431Q-6.063-11.455-6.036-11.482Q-6.009-11.509-5.985-11.509L-5.875-11.509Q-5.810-11.509-5.797-11.451Q-5.701-11.017-5.455-10.766Q-5.209-10.515-4.795-10.515Q-4.453-10.515-4.201-10.648Q-3.948-10.781-3.948-11.089Q-3.948-11.246-4.042-11.361Q-4.136-11.475-4.274-11.544Q-4.412-11.612-4.580-11.650L-5.161-11.749Q-5.516-11.817-5.790-12.038Q-6.063-12.258-6.063-12.600Q-6.063-12.849-5.952-13.024Q-5.841-13.198-5.655-13.297Q-5.469-13.396-5.253-13.439Q-5.038-13.482-4.795-13.482Q-4.382-13.482-4.101-13.300L-3.886-13.475Q-3.876-13.478-3.869-13.480Q-3.862-13.482-3.852-13.482L-3.801-13.482Q-3.773-13.482-3.749-13.458Q-3.725-13.434-3.725-13.406L-3.725-12.559Q-3.725-12.538-3.749-12.511Q-3.773-12.484-3.801-12.484L-3.913-12.484Q-3.941-12.484-3.966-12.509Q-3.992-12.535-3.992-12.559Q-3.992-12.795-4.098-12.959Q-4.204-13.123-4.387-13.205Q-4.570-13.287-4.802-13.287Q-5.130-13.287-5.387-13.184Q-5.643-13.082-5.643-12.805Q-5.643-12.610-5.460-12.501Q-5.277-12.391-5.048-12.350L-4.474-12.244Q-4.228-12.196-4.014-12.068Q-3.801-11.940-3.664-11.737Q-3.527-11.533-3.527-11.284Q-3.527-10.771-3.893-10.532Q-4.259-10.293-4.795-10.293Q-5.291-10.293-5.622-10.587L-5.889-10.313Q-5.910-10.293-5.937-10.293L-5.985-10.293Q-6.009-10.293-6.036-10.320Q-6.063-10.347-6.063-10.368\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.969 -50.753)\">\u003Cpath d=\"M-32.140-3.844Q-32.140-4.186-32.005-4.485Q-31.870-4.784-31.630-5.008Q-31.391-5.232-31.073-5.357Q-30.755-5.482-30.424-5.482Q-29.979-5.482-29.580-5.266Q-29.180-5.051-28.945-4.673Q-28.711-4.296-28.711-3.844Q-28.711-3.503-28.853-3.219Q-28.995-2.935-29.239-2.728Q-29.484-2.522-29.793-2.407Q-30.102-2.293-30.424-2.293Q-30.854-2.293-31.256-2.494Q-31.658-2.696-31.899-3.048Q-32.140-3.400-32.140-3.844M-30.424-2.542Q-29.822-2.542-29.598-2.920Q-29.374-3.298-29.374-3.930Q-29.374-4.542-29.609-4.901Q-29.843-5.259-30.424-5.259Q-31.476-5.259-31.476-3.930Q-31.476-3.298-31.251-2.920Q-31.025-2.542-30.424-2.542M-26.435-2.361L-28.069-2.361L-28.069-2.641Q-27.840-2.641-27.691-2.675Q-27.542-2.710-27.542-2.850L-27.542-4.699Q-27.542-4.969-27.650-5.030Q-27.758-5.092-28.069-5.092L-28.069-5.372L-27.009-5.447L-27.009-4.798Q-26.838-5.106-26.534-5.277Q-26.230-5.447-25.885-5.447Q-25.379-5.447-25.095-5.224Q-24.811-5-24.811-4.504L-24.811-2.850Q-24.811-2.713-24.663-2.677Q-24.514-2.641-24.288-2.641L-24.288-2.361L-25.919-2.361L-25.919-2.641Q-25.690-2.641-25.541-2.675Q-25.392-2.710-25.392-2.850L-25.392-4.490Q-25.392-4.825-25.512-5.025Q-25.632-5.225-25.946-5.225Q-26.216-5.225-26.450-5.089Q-26.684-4.952-26.823-4.718Q-26.961-4.484-26.961-4.210L-26.961-2.850Q-26.961-2.713-26.811-2.677Q-26.661-2.641-26.435-2.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.969 -50.753)\">\u003Cpath d=\"M-20.474-3.202L-20.474-5.099L-21.113-5.099L-21.113-5.321Q-20.795-5.321-20.578-5.531Q-20.361-5.741-20.261-6.051Q-20.160-6.360-20.160-6.668L-19.893-6.668L-19.893-5.379L-18.816-5.379L-18.816-5.099L-19.893-5.099L-19.893-3.215Q-19.893-2.939-19.789-2.740Q-19.685-2.542-19.425-2.542Q-19.268-2.542-19.162-2.646Q-19.056-2.751-19.006-2.904Q-18.957-3.058-18.957-3.215L-18.957-3.629L-18.690-3.629L-18.690-3.202Q-18.690-2.976-18.789-2.766Q-18.888-2.556-19.073-2.424Q-19.257-2.293-19.486-2.293Q-19.924-2.293-20.199-2.530Q-20.474-2.768-20.474-3.202M-16.130-2.361L-17.866-2.361L-17.866-2.641Q-17.637-2.641-17.489-2.675Q-17.340-2.710-17.340-2.850L-17.340-4.699Q-17.340-4.969-17.448-5.030Q-17.555-5.092-17.866-5.092L-17.866-5.372L-16.837-5.447L-16.837-4.740Q-16.708-5.048-16.465-5.247Q-16.222-5.447-15.904-5.447Q-15.686-5.447-15.515-5.323Q-15.344-5.198-15.344-4.986Q-15.344-4.849-15.443-4.750Q-15.542-4.651-15.675-4.651Q-15.812-4.651-15.911-4.750Q-16.010-4.849-16.010-4.986Q-16.010-5.126-15.911-5.225Q-16.202-5.225-16.402-5.029Q-16.602-4.832-16.694-4.538Q-16.786-4.244-16.786-3.964L-16.786-2.850Q-16.786-2.641-16.130-2.641L-16.130-2.361M-14.701-3.089Q-14.701-3.421-14.477-3.648Q-14.253-3.875-13.910-4.003Q-13.566-4.132-13.194-4.184Q-12.821-4.237-12.517-4.237L-12.517-4.490Q-12.517-4.695-12.625-4.875Q-12.732-5.054-12.914-5.157Q-13.095-5.259-13.303-5.259Q-13.710-5.259-13.946-5.167Q-13.857-5.130-13.811-5.046Q-13.765-4.962-13.765-4.860Q-13.765-4.764-13.811-4.685Q-13.857-4.607-13.937-4.562Q-14.018-4.518-14.107-4.518Q-14.257-4.518-14.358-4.615Q-14.459-4.713-14.459-4.860Q-14.459-5.482-13.303-5.482Q-13.091-5.482-12.842-5.418Q-12.592-5.355-12.391-5.236Q-12.189-5.116-12.063-4.931Q-11.936-4.747-11.936-4.504L-11.936-2.928Q-11.936-2.812-11.875-2.716Q-11.813-2.621-11.700-2.621Q-11.591-2.621-11.526-2.715Q-11.461-2.809-11.461-2.928L-11.461-3.376L-11.194-3.376L-11.194-2.928Q-11.194-2.658-11.422-2.493Q-11.649-2.327-11.929-2.327Q-12.138-2.327-12.274-2.481Q-12.411-2.634-12.435-2.850Q-12.582-2.583-12.864-2.438Q-13.146-2.293-13.471-2.293Q-13.748-2.293-14.031-2.368Q-14.315-2.443-14.508-2.622Q-14.701-2.802-14.701-3.089M-14.086-3.089Q-14.086-2.915-13.985-2.785Q-13.884-2.655-13.729-2.585Q-13.573-2.515-13.409-2.515Q-13.190-2.515-12.982-2.612Q-12.773-2.710-12.645-2.891Q-12.517-3.072-12.517-3.298L-12.517-4.026Q-12.842-4.026-13.208-3.935Q-13.573-3.844-13.830-3.632Q-14.086-3.421-14.086-3.089M-9.161-2.361L-10.712-2.361L-10.712-2.641Q-10.487-2.641-10.338-2.675Q-10.190-2.710-10.190-2.850L-10.190-4.699Q-10.190-4.887-10.237-4.971Q-10.285-5.054-10.383-5.073Q-10.480-5.092-10.692-5.092L-10.692-5.372L-9.636-5.447L-9.636-2.850Q-9.636-2.710-9.504-2.675Q-9.373-2.641-9.161-2.641L-9.161-2.361M-10.432-6.668Q-10.432-6.839-10.309-6.958Q-10.186-7.078-10.015-7.078Q-9.848-7.078-9.725-6.958Q-9.602-6.839-9.602-6.668Q-9.602-6.493-9.725-6.370Q-9.848-6.247-10.015-6.247Q-10.186-6.247-10.309-6.370Q-10.432-6.493-10.432-6.668M-6.833-2.361L-8.467-2.361L-8.467-2.641Q-8.238-2.641-8.089-2.675Q-7.940-2.710-7.940-2.850L-7.940-4.699Q-7.940-4.969-8.048-5.030Q-8.156-5.092-8.467-5.092L-8.467-5.372L-7.407-5.447L-7.407-4.798Q-7.236-5.106-6.932-5.277Q-6.628-5.447-6.283-5.447Q-5.777-5.447-5.493-5.224Q-5.210-5-5.210-4.504L-5.210-2.850Q-5.210-2.713-5.061-2.677Q-4.912-2.641-4.687-2.641L-4.687-2.361L-6.317-2.361L-6.317-2.641Q-6.088-2.641-5.939-2.675Q-5.791-2.710-5.791-2.850L-5.791-4.490Q-5.791-4.825-5.910-5.025Q-6.030-5.225-6.344-5.225Q-6.614-5.225-6.848-5.089Q-7.083-4.952-7.221-4.718Q-7.359-4.484-7.359-4.210L-7.359-2.850Q-7.359-2.713-7.209-2.677Q-7.059-2.641-6.833-2.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M43.205-15.365c19.917-43.901 19.917-43.901 54.106-43.901\"\u002F>\u003Cpath stroke=\"none\" d=\"m99.91-59.266-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg fill=\"var(--tk-warn)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.83 -56.928)\">\u003Cpath d=\"M-32.754-3.322L-32.754-5.513L-33.457-5.513L-33.457-5.767Q-33.101-5.767-32.859-6Q-32.617-6.232-32.506-6.580Q-32.394-6.927-32.394-7.283L-32.113-7.283L-32.113-5.810L-30.937-5.810L-30.937-5.513L-32.113-5.513L-32.113-3.338Q-32.113-3.017-31.994-2.789Q-31.875-2.560-31.594-2.560Q-31.414-2.560-31.297-2.683Q-31.179-2.806-31.127-2.986Q-31.074-3.166-31.074-3.338L-31.074-3.810L-30.793-3.810L-30.793-3.322Q-30.793-3.068-30.898-2.828Q-31.004-2.588-31.201-2.435Q-31.398-2.283-31.656-2.283Q-31.972-2.283-32.224-2.406Q-32.476-2.529-32.615-2.763Q-32.754-2.998-32.754-3.322M-28.066-2.361L-30.047-2.361L-30.047-2.658Q-29.777-2.658-29.609-2.703Q-29.441-2.748-29.441-2.920L-29.441-5.056Q-29.441-5.271-29.504-5.367Q-29.566-5.463-29.683-5.484Q-29.801-5.506-30.047-5.506L-30.047-5.802L-28.879-5.888L-28.879-5.103Q-28.801-5.314-28.648-5.500Q-28.496-5.685-28.297-5.787Q-28.097-5.888-27.871-5.888Q-27.625-5.888-27.433-5.744Q-27.242-5.599-27.242-5.369Q-27.242-5.213-27.347-5.103Q-27.453-4.994-27.609-4.994Q-27.765-4.994-27.875-5.103Q-27.984-5.213-27.984-5.369Q-27.984-5.529-27.879-5.634Q-28.203-5.634-28.418-5.406Q-28.633-5.177-28.728-4.838Q-28.824-4.498-28.824-4.193L-28.824-2.920Q-28.824-2.752-28.597-2.705Q-28.371-2.658-28.066-2.658L-28.066-2.361M-26.664-3.193Q-26.664-3.677-26.262-3.972Q-25.859-4.267-25.308-4.386Q-24.758-4.506-24.265-4.506L-24.265-4.795Q-24.265-5.021-24.381-5.228Q-24.496-5.435-24.693-5.554Q-24.890-5.674-25.121-5.674Q-25.547-5.674-25.832-5.568Q-25.762-5.541-25.715-5.486Q-25.668-5.431-25.642-5.361Q-25.617-5.291-25.617-5.216Q-25.617-5.111-25.668-5.019Q-25.719-4.927-25.810-4.877Q-25.902-4.826-26.008-4.826Q-26.113-4.826-26.205-4.877Q-26.297-4.927-26.347-5.019Q-26.398-5.111-26.398-5.216Q-26.398-5.634-26.010-5.781Q-25.621-5.927-25.121-5.927Q-24.789-5.927-24.435-5.797Q-24.082-5.666-23.853-5.412Q-23.625-5.158-23.625-4.810L-23.625-3.009Q-23.625-2.877-23.553-2.767Q-23.480-2.658-23.351-2.658Q-23.226-2.658-23.158-2.763Q-23.090-2.869-23.090-3.009L-23.090-3.521L-22.808-3.521L-22.808-3.009Q-22.808-2.806-22.926-2.648Q-23.043-2.490-23.224-2.406Q-23.406-2.322-23.609-2.322Q-23.840-2.322-23.992-2.494Q-24.144-2.666-24.176-2.896Q-24.336-2.615-24.644-2.449Q-24.953-2.283-25.304-2.283Q-25.816-2.283-26.240-2.506Q-26.664-2.728-26.664-3.193M-25.976-3.193Q-25.976-2.908-25.750-2.722Q-25.523-2.537-25.230-2.537Q-24.984-2.537-24.760-2.654Q-24.535-2.771-24.400-2.974Q-24.265-3.177-24.265-3.431L-24.265-4.263Q-24.531-4.263-24.816-4.209Q-25.101-4.154-25.373-4.025Q-25.644-3.896-25.810-3.689Q-25.976-3.482-25.976-3.193M-20.656-2.361L-22.433-2.361L-22.433-2.658Q-22.160-2.658-21.992-2.705Q-21.824-2.752-21.824-2.920L-21.824-5.056Q-21.824-5.271-21.881-5.367Q-21.937-5.463-22.051-5.484Q-22.164-5.506-22.410-5.506L-22.410-5.802L-21.211-5.888L-21.211-2.920Q-21.211-2.752-21.064-2.705Q-20.918-2.658-20.656-2.658L-20.656-2.361M-22.097-7.283Q-22.097-7.474-21.963-7.605Q-21.828-7.736-21.633-7.736Q-21.512-7.736-21.408-7.674Q-21.304-7.611-21.242-7.507Q-21.179-7.404-21.179-7.283Q-21.179-7.088-21.310-6.953Q-21.441-6.818-21.633-6.818Q-21.832-6.818-21.965-6.951Q-22.097-7.084-22.097-7.283M-18.226-2.361L-20.082-2.361L-20.082-2.658Q-19.808-2.658-19.640-2.705Q-19.472-2.752-19.472-2.920L-19.472-5.056Q-19.472-5.271-19.535-5.367Q-19.597-5.463-19.717-5.484Q-19.836-5.506-20.082-5.506L-20.082-5.802L-18.890-5.888L-18.890-5.154Q-18.777-5.369-18.584-5.537Q-18.390-5.705-18.152-5.797Q-17.914-5.888-17.660-5.888Q-16.492-5.888-16.492-4.810L-16.492-2.920Q-16.492-2.752-16.322-2.705Q-16.152-2.658-15.883-2.658L-15.883-2.361L-17.738-2.361L-17.738-2.658Q-17.465-2.658-17.297-2.705Q-17.129-2.752-17.129-2.920L-17.129-4.795Q-17.129-5.177-17.250-5.406Q-17.371-5.634-17.722-5.634Q-18.035-5.634-18.289-5.472Q-18.543-5.310-18.689-5.041Q-18.836-4.771-18.836-4.474L-18.836-2.920Q-18.836-2.752-18.666-2.705Q-18.496-2.658-18.226-2.658\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.83 -56.928)\">\u003Cpath d=\"M-12.246-2.560L-12.246-3.474Q-12.219-3.681-12.008-3.705L-11.840-3.705Q-11.676-3.681-11.617-3.521Q-11.414-2.881-10.687-2.881Q-10.480-2.881-10.252-2.916Q-10.023-2.951-9.855-3.066Q-9.687-3.181-9.687-3.384Q-9.687-3.595-9.910-3.709Q-10.133-3.822-10.406-3.865L-11.105-3.978Q-12.246-4.189-12.246-4.912Q-12.246-5.201-12.102-5.390Q-11.957-5.580-11.717-5.687Q-11.477-5.795-11.221-5.834Q-10.965-5.873-10.687-5.873Q-10.437-5.873-10.244-5.843Q-10.051-5.814-9.887-5.736Q-9.809-5.853-9.680-5.873L-9.602-5.873Q-9.504-5.861-9.441-5.799Q-9.379-5.736-9.367-5.642L-9.367-4.935Q-9.379-4.841-9.441-4.775Q-9.504-4.709-9.602-4.697L-9.770-4.697Q-9.863-4.709-9.930-4.775Q-9.996-4.841-10.008-4.935Q-10.008-5.314-10.703-5.314Q-11.051-5.314-11.369-5.232Q-11.687-5.150-11.687-4.904Q-11.687-4.638-11.016-4.529L-10.312-4.408Q-9.828-4.326-9.478-4.078Q-9.129-3.830-9.129-3.384Q-9.129-2.994-9.365-2.752Q-9.602-2.509-9.951-2.416Q-10.301-2.322-10.687-2.322Q-11.266-2.322-11.664-2.576Q-11.734-2.451-11.783-2.394Q-11.832-2.338-11.937-2.322L-12.008-2.322Q-12.223-2.345-12.246-2.560M-8.516-0.818L-8.516-0.904Q-8.473-1.123-8.266-1.146L-7.844-1.146L-7.844-5.248L-8.266-5.248Q-8.473-5.271-8.516-5.490L-8.516-5.576Q-8.469-5.787-8.266-5.810L-7.449-5.810Q-7.254-5.791-7.203-5.576L-7.203-5.506Q-6.992-5.674-6.728-5.761Q-6.465-5.849-6.195-5.849Q-5.855-5.849-5.559-5.705Q-5.262-5.560-5.047-5.308Q-4.832-5.056-4.717-4.744Q-4.602-4.431-4.602-4.088Q-4.602-3.623-4.828-3.213Q-5.055-2.802-5.441-2.562Q-5.828-2.322-6.297-2.322Q-6.816-2.322-7.203-2.689L-7.203-1.146L-6.777-1.146Q-6.570-1.123-6.531-0.904L-6.531-0.818Q-6.570-0.607-6.777-0.584L-8.266-0.584Q-8.469-0.607-8.516-0.818M-6.340-2.881Q-6.031-2.881-5.781-3.050Q-5.531-3.220-5.387-3.502Q-5.242-3.783-5.242-4.088Q-5.242-4.377-5.367-4.656Q-5.492-4.935-5.725-5.113Q-5.957-5.291-6.258-5.291Q-6.578-5.291-6.840-5.105Q-7.102-4.920-7.203-4.619L-7.203-3.767Q-7.113-3.400-6.893-3.140Q-6.672-2.881-6.340-2.881M-3.891-2.599L-3.891-2.689Q-3.840-2.896-3.645-2.920L-2.539-2.920L-2.539-6.689L-3.645-6.689Q-3.840-6.713-3.891-6.927L-3.891-7.017Q-3.840-7.224-3.645-7.248L-2.148-7.248Q-1.957-7.224-1.898-7.017L-1.898-2.920L-0.797-2.920Q-0.598-2.896-0.547-2.689L-0.547-2.599Q-0.598-2.384-0.797-2.361L-3.645-2.361Q-3.840-2.384-3.891-2.599M0.523-2.599L0.523-2.689Q0.574-2.896 0.770-2.920L1.809-2.920L1.809-5.248L0.836-5.248Q0.637-5.271 0.586-5.490L0.586-5.576Q0.637-5.787 0.836-5.810L2.203-5.810Q2.398-5.791 2.449-5.576L2.449-2.920L3.363-2.920Q3.559-2.896 3.609-2.689L3.609-2.599Q3.559-2.384 3.363-2.361L0.770-2.361Q0.574-2.384 0.523-2.599M1.555-6.787L1.555-6.841Q1.555-7.013 1.691-7.134Q1.828-7.256 2.004-7.256Q2.176-7.256 2.313-7.134Q2.449-7.013 2.449-6.841L2.449-6.787Q2.449-6.611 2.313-6.490Q2.176-6.369 2.004-6.369Q1.828-6.369 1.691-6.490Q1.555-6.611 1.555-6.787M5.352-3.466L5.352-5.248L4.602-5.248Q4.402-5.271 4.352-5.490L4.352-5.576Q4.402-5.787 4.602-5.810L5.352-5.810L5.352-6.560Q5.402-6.767 5.602-6.795L5.746-6.795Q5.941-6.767 5.992-6.560L5.992-5.810L7.352-5.810Q7.543-5.791 7.602-5.576L7.602-5.490Q7.547-5.271 7.352-5.248L5.992-5.248L5.992-3.498Q5.992-2.881 6.566-2.881Q6.816-2.881 6.980-3.066Q7.145-3.252 7.145-3.498Q7.145-3.591 7.217-3.662Q7.289-3.732 7.391-3.744L7.535-3.744Q7.734-3.720 7.785-3.513L7.785-3.466Q7.785-3.142 7.602-2.879Q7.418-2.615 7.125-2.468Q6.832-2.322 6.512-2.322Q6-2.322 5.676-2.632Q5.352-2.943 5.352-3.466\" fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-warn)\" stroke=\"var(--tk-warn)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M128.563-46.263v28.299\"\u002F>\u003Cpath stroke=\"none\" d=\"m128.563-15.365 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003Cg transform=\"translate(165.914 -26.946)\">\u003Cpath d=\"M-31.553-2.361L-33.289-2.361L-33.289-2.641Q-33.060-2.641-32.911-2.675Q-32.763-2.710-32.763-2.850L-32.763-4.699Q-32.763-4.969-32.870-5.030Q-32.978-5.092-33.289-5.092L-33.289-5.372L-32.260-5.447L-32.260-4.740Q-32.130-5.048-31.888-5.247Q-31.645-5.447-31.327-5.447Q-31.108-5.447-30.937-5.323Q-30.766-5.198-30.766-4.986Q-30.766-4.849-30.866-4.750Q-30.965-4.651-31.098-4.651Q-31.235-4.651-31.334-4.750Q-31.433-4.849-31.433-4.986Q-31.433-5.126-31.334-5.225Q-31.624-5.225-31.824-5.029Q-32.024-4.832-32.117-4.538Q-32.209-4.244-32.209-3.964L-32.209-2.850Q-32.209-2.641-31.553-2.641L-31.553-2.361M-30.223-3.896Q-30.223-4.217-30.098-4.506Q-29.973-4.795-29.748-5.018Q-29.522-5.242-29.227-5.362Q-28.931-5.482-28.613-5.482Q-28.285-5.482-28.023-5.382Q-27.762-5.283-27.586-5.101Q-27.410-4.918-27.316-4.660Q-27.222-4.402-27.222-4.070Q-27.222-3.978-27.304-3.957L-29.560-3.957L-29.560-3.896Q-29.560-3.308-29.276-2.925Q-28.992-2.542-28.425-2.542Q-28.104-2.542-27.836-2.735Q-27.567-2.928-27.478-3.243Q-27.471-3.284-27.396-3.298L-27.304-3.298Q-27.222-3.274-27.222-3.202Q-27.222-3.195-27.229-3.168Q-27.342-2.771-27.712-2.532Q-28.083-2.293-28.507-2.293Q-28.945-2.293-29.345-2.501Q-29.744-2.710-29.984-3.077Q-30.223-3.444-30.223-3.896M-29.553-4.166L-27.738-4.166Q-27.738-4.443-27.836-4.695Q-27.933-4.948-28.131-5.104Q-28.329-5.259-28.613-5.259Q-28.890-5.259-29.104-5.101Q-29.317-4.942-29.435-4.687Q-29.553-4.432-29.553-4.166M-26.060-3.195L-26.060-4.699Q-26.060-4.969-26.168-5.030Q-26.275-5.092-26.586-5.092L-26.586-5.372L-25.479-5.447L-25.479-3.215L-25.479-3.195Q-25.479-2.915-25.428-2.771Q-25.376-2.628-25.234-2.571Q-25.093-2.515-24.805-2.515Q-24.553-2.515-24.347-2.655Q-24.142-2.795-24.026-3.021Q-23.910-3.246-23.910-3.496L-23.910-4.699Q-23.910-4.969-24.018-5.030Q-24.125-5.092-24.436-5.092L-24.436-5.372L-23.329-5.447L-23.329-3.034Q-23.329-2.843-23.276-2.761Q-23.223-2.679-23.122-2.660Q-23.021-2.641-22.806-2.641L-22.806-2.361L-23.883-2.293L-23.883-2.857Q-23.992-2.675-24.137-2.552Q-24.283-2.429-24.469-2.361Q-24.655-2.293-24.857-2.293Q-26.060-2.293-26.060-3.195M-22.218-2.368L-22.218-3.431Q-22.218-3.455-22.191-3.482Q-22.163-3.509-22.139-3.509L-22.030-3.509Q-21.965-3.509-21.951-3.451Q-21.856-3.017-21.610-2.766Q-21.364-2.515-20.950-2.515Q-20.608-2.515-20.355-2.648Q-20.102-2.781-20.102-3.089Q-20.102-3.246-20.196-3.361Q-20.290-3.475-20.429-3.544Q-20.567-3.612-20.735-3.650L-21.316-3.749Q-21.671-3.817-21.945-4.038Q-22.218-4.258-22.218-4.600Q-22.218-4.849-22.107-5.024Q-21.996-5.198-21.810-5.297Q-21.623-5.396-21.408-5.439Q-21.193-5.482-20.950-5.482Q-20.536-5.482-20.256-5.300L-20.041-5.475Q-20.031-5.478-20.024-5.480Q-20.017-5.482-20.007-5.482L-19.955-5.482Q-19.928-5.482-19.904-5.458Q-19.880-5.434-19.880-5.406L-19.880-4.559Q-19.880-4.538-19.904-4.511Q-19.928-4.484-19.955-4.484L-20.068-4.484Q-20.096-4.484-20.121-4.509Q-20.147-4.535-20.147-4.559Q-20.147-4.795-20.253-4.959Q-20.359-5.123-20.542-5.205Q-20.724-5.287-20.957-5.287Q-21.285-5.287-21.541-5.184Q-21.798-5.082-21.798-4.805Q-21.798-4.610-21.615-4.501Q-21.432-4.391-21.203-4.350L-20.629-4.244Q-20.383-4.196-20.169-4.068Q-19.955-3.940-19.819-3.737Q-19.682-3.533-19.682-3.284Q-19.682-2.771-20.048-2.532Q-20.413-2.293-20.950-2.293Q-21.446-2.293-21.777-2.587L-22.044-2.313Q-22.064-2.293-22.092-2.293L-22.139-2.293Q-22.163-2.293-22.191-2.320Q-22.218-2.347-22.218-2.368M-19.094-3.896Q-19.094-4.217-18.969-4.506Q-18.845-4.795-18.619-5.018Q-18.393-5.242-18.098-5.362Q-17.802-5.482-17.484-5.482Q-17.156-5.482-16.895-5.382Q-16.633-5.283-16.457-5.101Q-16.281-4.918-16.187-4.660Q-16.093-4.402-16.093-4.070Q-16.093-3.978-16.175-3.957L-18.431-3.957L-18.431-3.896Q-18.431-3.308-18.147-2.925Q-17.864-2.542-17.296-2.542Q-16.975-2.542-16.707-2.735Q-16.438-2.928-16.349-3.243Q-16.343-3.284-16.267-3.298L-16.175-3.298Q-16.093-3.274-16.093-3.202Q-16.093-3.195-16.100-3.168Q-16.213-2.771-16.584-2.532Q-16.954-2.293-17.378-2.293Q-17.816-2.293-18.216-2.501Q-18.616-2.710-18.855-3.077Q-19.094-3.444-19.094-3.896M-18.424-4.166L-16.609-4.166Q-16.609-4.443-16.707-4.695Q-16.804-4.948-17.002-5.104Q-17.200-5.259-17.484-5.259Q-17.761-5.259-17.975-5.101Q-18.188-4.942-18.306-4.687Q-18.424-4.432-18.424-4.166\" 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\">A standard training data pipeline. Normalization statistics \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=\"mopen\">(\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\">μ\u003C\u002Fspan>\u003Cspan class=\"mpunct\">,\u003C\u002Fspan>\u003Cspan class=\"mspace\" style=\"margin-right:0.1667em;\">\u003C\u002Fspan>\u003Cspan class=\"mord mathnormal\" style=\"margin-right:0.0359em;\">σ\u003C\u002Fspan>\u003Cspan class=\"mclose\">)\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan>\u003C\u002Fspan> are computed on the training split ONLY and reused for validation and test; augmentation is applied to training batches only.\u003C\u002Ffigcaption>",1785117776279]