{"id":3589,"date":"2022-12-10T15:59:04","date_gmt":"2022-12-10T21:59:04","guid":{"rendered":"https:\/\/laurentlessard.com\/bookproofs\/?p=3589"},"modified":"2022-12-10T22:37:22","modified_gmt":"2022-12-11T04:37:22","slug":"riddler-football-playoffs","status":"publish","type":"post","link":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/","title":{"rendered":"Riddler Football Playoffs"},"content":{"rendered":"<p>This week&#8217;s <a href=\"https:\/\/fivethirtyeight.com\/features\/can-you-win-the-riddler-football-playoff\/\">Riddler Classic<\/a> is a probability question inspired by the ongoing World Cup.<\/p>\n<blockquote><p>\nThe Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &#8220;quality&#8221; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the probability that team $A$ will defeat team $B$ in a game is $\\frac{a}{a+b}$.<\/p>\n<p>In the semifinal games of the playoff, the team with the highest quality (the &#8220;1 seed&#8221;) plays the team with the lowest quality (the &#8220;4 seed&#8221;), while the other two teams play each other as well. The two teams that win their respective semifinal games then play each other in the final.<\/p>\n<p>On average, what is the quality of the RFP champion?\n<\/p><\/blockquote>\n<p>My solution:<br \/>\n<a href=\"javascript:Solution('soln_rfp','toggle_rfp')\" id=\"toggle_rfp\">[Show Solution]<\/a><\/p>\n<div id=\"soln_rfp\" style=\"display: none\">\n<p>Suppose $a \\gt b \\gt c \\gt d$. Consider the event that $A$ is the champion. In order for this to happen, $A$ must first defeat $D$ in the semifinals. Then, either $B$ wins their semifinal match and $A$ defeats $B$ in the finals, or $C$ wins their semifinal match and $A$ defeats $C$ in the finals. We can use a similar argument to compute the probability that $B$, $C$, or $D$ wins, and we obtain the following formulas:<br \/>\n\\begin{align}<br \/>\nP_A &#038;= \\frac{a}{a+d}\\left(\\frac{b}{b+c}\\cdot\\frac{a}{a+b}+\\frac{c}{b+c}\\cdot\\frac{a}{a+c}\\right) \\\\<br \/>\nP_B &#038;= \\frac{b}{b+c}\\left(\\frac{a}{a+d}\\cdot\\frac{b}{a+b}+\\frac{d}{a+d}\\cdot\\frac{b}{b+d}\\right) \\\\<br \/>\nP_C &#038;= \\frac{c}{b+c}\\left(\\frac{a}{a+d}\\cdot\\frac{c}{a+c}+\\frac{d}{a+d}\\cdot\\frac{c}{c+d}\\right) \\\\<br \/>\nP_D &#038;= \\frac{d}{a+d}\\left(\\frac{b}{b+c}\\cdot\\frac{d}{b+d}+\\frac{c}{b+c}\\cdot\\frac{d}{c+d}\\right)<br \/>\n\\end{align}One can check that $P_A+P_B+P_C+P_D=1$ for all values of $(a,b,c,d)$, since exactly one of these four outcomes must occur. The expected value of the quality of the champion is therefore<br \/>\n\\[<br \/>\nx(a,b,c,d) = a P_A + b P_B + c P_C + d P_D.<br \/>\n\\]Ultimately, we seek the average of $x(a,b,c,d)$ where each $a,b,c,d$ is chosen uniformly at random in $[0,1]$. The formulas above require $a\\gt b \\gt c \\gt d$, but by symmetry each of the $4!=24$ permutations of $a,b,c,d$ is equally likely to occur. Therefore, we can restrict our averaging to the case where $a\\gt b \\gt c \\gt d$ and multiply the result by $24$. This leads to the following formula for $\\bar x$, the average value of $x$.<br \/>\n\\[<br \/>\n\\bar x = 24 \\int_{a=0}^1 \\int_{b=0}^a \\int_{c=0}^b \\int_{d=0}^c x(a,b,c,d)\\,<br \/>\n\\mathrm{d}d\\,\\mathrm{d}c\\,\\mathrm{d}b\\,\\mathrm{d}a<br \/>\n\\]This integral is very difficult to evaluate by hand, so I used Mathematica, and found the result to be:<br \/>\n\\begin{align}<br \/>\n\\bar x<br \/>\n&#038;= \\frac{2}{5} \\left(23-(29+2\\pi^2)\\log(2)+39\\log^2(2)-8\\log^3(2)-3\\zeta(3)\\right)\\\\<br \/>\n&#038;\\approx 0.6735417813867959221089<br \/>\n\\end{align}Here, $\\zeta$ is the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Riemann_zeta_function\">Riemann zeta function<\/a>. The constant $\\zeta(3)=\\sum_{n=1}^\\infty\\frac{1}{n^3}\\approx 1.2020569$ is known as <a href=\"https:\/\/en.wikipedia.org\/wiki\/Ap%C3%A9ry%27s_constant\">Ap\u00e9ry&#8217;s constant<\/a>. The reason this constant shows up is because we are repeatedly integrating products of rational functions, and it turns out that<br \/>\n\\[<br \/>\n\\zeta(3) = \\int_0^1\\int_0^1\\int_0^1\\frac{1}{1-xyz}\\,\\mathrm{d}x\\,\\mathrm{d}y\\,\\mathrm{d}z<br \/>\n\\]Fun fact: it is known that $\\zeta(3)$ is irrational, but it is still not known whether it is <a href=\"https:\/\/en.wikipedia.org\/wiki\/Transcendental_number\">transcendental<\/a>!<\/p>\n<h3>Numerical verification<\/h3>\n<p>I also obtained an estimate for $\\bar x$ by performing a Monte Carlo simulation of 10 million games of Riddler Football Playoff in Matlab. Here is my code:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"matlab\">\r\nN = 1e7;\r\n\r\nquality = zeros(N,1);\r\nfor trial = 1:N\r\n   \r\n    x = sort(rand(4,1));\r\n    a = x(4); b = x(3); c = x(2); d = x(1);\r\n    \r\n    % F = winner of Semifinal 1 (A vs D)\r\n    if rand < a\/(a+d)\r\n        f = a;\r\n    else\r\n        f = d;\r\n    end\r\n    \r\n    % G = winner of Semifinal 2 (B vs C)\r\n    if rand < b\/(b+c)\r\n        g = b;\r\n    else\r\n        g = c;\r\n    end\r\n    \r\n    % X = winner of Finals (F vs G)\r\n    if rand < f\/(f+g)\r\n        quality(trial) = f;\r\n    else\r\n        quality(trial) = g;\r\n    end\r\nend\r\navg = mean(quality)\r\nsem = std(quality)\/sqrt(N);\r\nconf_interval = [avg-1.96*sem,avg+1.96*sem]\r\n<\/pre>\n<p>Running the code above took about 10 seconds and produced an estimate of $0.67353$, with a 95% confidence interval $[0.67339, 0.67367]$. So it looks like there is good agreement between the numerical value derived from the exact formula and the empirical Monte Carlo estimate.\n<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This week&#8217;s Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &#8220;quality&#8221; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the &hellip; <a href=\"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Riddler Football Playoffs&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[7],"tags":[28,8,2],"class_list":["post-3589","post","type-post","status-publish","format-standard","hentry","category-riddler","tag-calculus","tag-probability","tag-riddler"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"This week&#039;s Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &quot;quality&quot; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Laurent\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Book Proofs - A blog for mathematical riddles, puzzles, and elegant proofs\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Riddler Football Playoffs - Book Proofs\" \/>\n\t\t<meta property=\"og:description\" content=\"This week&#039;s Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &quot;quality&quot; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-12-10T21:59:04+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-12-11T04:37:22+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Riddler Football Playoffs - Book Proofs\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This week&#039;s Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &quot;quality&quot; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#blogposting\",\"name\":\"Riddler Football Playoffs - Book Proofs\",\"headline\":\"Riddler Football Playoffs\",\"author\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\"},\"datePublished\":\"2022-12-10T15:59:04-06:00\",\"dateModified\":\"2022-12-10T22:37:22-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#webpage\"},\"articleSection\":\"The Riddler, calculus, probability, Riddler\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/riddler\\\/#listItem\",\"name\":\"The Riddler\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/riddler\\\/#listItem\",\"position\":2,\"name\":\"The Riddler\",\"item\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/riddler\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#listItem\",\"name\":\"Riddler Football Playoffs\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#listItem\",\"position\":3,\"name\":\"Riddler Football Playoffs\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/riddler\\\/#listItem\",\"name\":\"The Riddler\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\",\"name\":\"Book Proofs\",\"description\":\"A blog for mathematical riddles, puzzles, and elegant proofs\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/\",\"name\":\"Laurent\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1d179b3e810347763b0da7d94548624f7326a3b71d146194946bba92427ff8fb?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Laurent\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#webpage\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/\",\"name\":\"Riddler Football Playoffs - Book Proofs\",\"description\":\"This week's Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the \\\"quality\\\" of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/riddler-football-playoffs\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"datePublished\":\"2022-12-10T15:59:04-06:00\",\"dateModified\":\"2022-12-10T22:37:22-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#website\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/\",\"name\":\"Book Proofs\",\"description\":\"A blog for mathematical riddles, puzzles, and elegant proofs\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Riddler Football Playoffs - Book Proofs","description":"This week's Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the \"quality\" of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the","canonical_url":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#blogposting","name":"Riddler Football Playoffs - Book Proofs","headline":"Riddler Football Playoffs","author":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"publisher":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization"},"datePublished":"2022-12-10T15:59:04-06:00","dateModified":"2022-12-10T22:37:22-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#webpage"},"isPartOf":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#webpage"},"articleSection":"The Riddler, calculus, probability, Riddler"},{"@type":"BreadcrumbList","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs#listItem","position":1,"name":"Home","item":"https:\/\/laurentlessard.com\/bookproofs","nextItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/#listItem","name":"The Riddler"}},{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/#listItem","position":2,"name":"The Riddler","item":"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/","nextItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#listItem","name":"Riddler Football Playoffs"},"previousItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#listItem","position":3,"name":"Riddler Football Playoffs","previousItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/#listItem","name":"The Riddler"}}]},{"@type":"Organization","@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization","name":"Book Proofs","description":"A blog for mathematical riddles, puzzles, and elegant proofs","url":"https:\/\/laurentlessard.com\/bookproofs\/"},{"@type":"Person","@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author","url":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/","name":"Laurent","image":{"@type":"ImageObject","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1d179b3e810347763b0da7d94548624f7326a3b71d146194946bba92427ff8fb?s=96&d=mm&r=g","width":96,"height":96,"caption":"Laurent"}},{"@type":"WebPage","@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#webpage","url":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/","name":"Riddler Football Playoffs - Book Proofs","description":"This week's Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the \"quality\" of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#website"},"breadcrumb":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/#breadcrumblist"},"author":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"creator":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"datePublished":"2022-12-10T15:59:04-06:00","dateModified":"2022-12-10T22:37:22-06:00"},{"@type":"WebSite","@id":"https:\/\/laurentlessard.com\/bookproofs\/#website","url":"https:\/\/laurentlessard.com\/bookproofs\/","name":"Book Proofs","description":"A blog for mathematical riddles, puzzles, and elegant proofs","inLanguage":"en-US","publisher":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization"}}]},"og:locale":"en_US","og:site_name":"Book Proofs - A blog for mathematical riddles, puzzles, and elegant proofs","og:type":"article","og:title":"Riddler Football Playoffs - Book Proofs","og:description":"This week's Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &quot;quality&quot; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the","og:url":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/","article:published_time":"2022-12-10T21:59:04+00:00","article:modified_time":"2022-12-11T04:37:22+00:00","twitter:card":"summary_large_image","twitter:title":"Riddler Football Playoffs - Book Proofs","twitter:description":"This week's Riddler Classic is a probability question inspired by the ongoing World Cup. The Riddler Football Playoff (RFP) consists of four teams. Each team is assigned a random real number between 0 and 1, representing the &quot;quality&quot; of the team. If team $A$ has quality $a$ and team $B$ has quality $b$, then the"},"aioseo_meta_data":{"post_id":"3589","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-06-01 20:11:39","updated":"2026-06-07 14:58:26","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/laurentlessard.com\/bookproofs\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/\" title=\"The Riddler\">The Riddler<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRiddler Football Playoffs\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/laurentlessard.com\/bookproofs"},{"label":"The Riddler","link":"https:\/\/laurentlessard.com\/bookproofs\/category\/riddler\/"},{"label":"Riddler Football Playoffs","link":"https:\/\/laurentlessard.com\/bookproofs\/riddler-football-playoffs\/"}],"_links":{"self":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3589","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/comments?post=3589"}],"version-history":[{"count":7,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3589\/revisions"}],"predecessor-version":[{"id":3599,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3589\/revisions\/3599"}],"wp:attachment":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/media?parent=3589"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/categories?post=3589"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/tags?post=3589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}