Concept notebookChecking saved investigationReading browser-local route memory before showing a continuation.

Tree Search Reasoning: Allocating Inference Budget Across Prefixes

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

published · difficulty 4/5 · 24 min read

01

01

Intuition

Build the mental picture first so the rest of the page has something to attach to.

PredictName the object in plain language, then predict what should change.Leave with one reusable mental picture before notation appears.

Background references include Cobbe et al., "Training Verifiers to Solve Math Word Problems", Lightman et al., "Let's Verify Step by Step", Brown et al., "Large Language Monkeys", Wang et al., "Self-Consistency Improves Chain of Thought Reasoning", Yao et al., "Tree of Thoughts", and the UCT background note by Kocsis and Szepesvari, "Bandit Based Monte-Carlo Planning". The source-checked core for this page uses Yao et al. for partial-state tree search and Lightman et al. for process-supervised step scoring.

Best-of-NNN search spends all extra compute on complete traces. It samples whole solutions, scores them, and returns the best sampled solution.

Tree search asks a sharper question: after seeing a partial reasoning prefix, which branch deserves more budget?

That changes the unit of allocation. The search state is a prefix hhh: a partial derivation, proof, plan, or scratchpad. A generator proposes next steps. A process reward model or local verifier scores those steps. In the finite teaching model below, a max-backup rule lets a good visible continuation raise the value of the earlier prefix that led to it.

This page teaches a finite prefix-tree mechanism inspired by ToT and PRM-style scoring: visible prefixes, local verifier scores, frontier expansion, max backup, and a toy noisy-verifier failure. Full MCTS, UCT, rollouts, visit counts, PUCT, and AlphaZero-style search are part of the larger family, but they are not the teaching core here.

Section prompt

Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.

02

02

Math

Translate the story into symbols, assumptions, and a derivation you can inspect.

InspectTrack the same object through the notation and check each symbol.Leave with the invariant the equations preserve.

Fix one prompt xxx and a finite rooted tree T\mathcal TT of possible reasoning prefixes. The root is the empty prefix \emptyset. A node is a prefix hhh, taking next step aaa creates child prefix hahaha, the generator proposes that edge, and the local verifier scores it:

h=(a1,,at),ha=(a1,,at,a),πθ(ah),rϕ(h,a).h=(a_1,\dots,a_t), \qquad ha=(a_1,\dots,a_t,a), \qquad \pi_\theta(a\mid h), \qquad r_\phi(h,a).h=(a1,,at),ha=(a1,,at,a),πθ(ah),rϕ(h,a).

Here rϕ(h,a)r_\phi(h,a)rϕ(h,a) is the process-reward-model style judgment of whether step aaa is valid after prefix hhh.

At search step ttt, let Tt\mathcal T_tTt be the visible subtree. The frontier, cumulative local verifier score, deterministic expansion rule, and page-level max backup are:

Ft=Frontier(Tt),Gϕ(h)=(g,a)path(h)rϕ(g,a),ht=argmaxhFt[Gϕ(h)+bϕ(h)],Vt(h)={0,h is terminal,bϕ(h),hFt,maxa:haTt[rϕ(h,a)+Vt(ha)],h is expanded.\begin{aligned} \mathcal F_t &= \mathrm{Frontier}(\mathcal T_t),\\ G_\phi(h) &= \sum_{(g,a)\in \mathrm{path}(h)} r_\phi(g,a),\\ h_t &= \arg\max_{h\in\mathcal F_t} \left[G_\phi(h)+b_\phi(h)\right],\\ V_t(h) &= \begin{cases} 0, & h \text{ is terminal},\\ b_\phi(h), & h\in\mathcal F_t,\\ \max\limits_{a:ha\in\mathcal T_t}\left[r_\phi(h,a)+V_t(ha)\right], & h \text{ is expanded}. \end{cases} \end{aligned}FtGϕ(h)htVt(h)=Frontier(Tt),=(g,a)path(h)rϕ(g,a),=arghFtmax[Gϕ(h)+bϕ(h)],=0,bϕ(h),a:haTtmax[rϕ(h,a)+Vt(ha)],h is terminal,hFt,h is expanded.

A terminal trace zzz also has hidden correctness

u(z){0,1},u(z)\in\{0,1\},u(z){0,1},

but uuu is used only for evaluation, not for search.

Here bϕ(h)b_\phi(h)bϕ(h) is a prefix heuristic: how promising an unfinished prefix looks before its children are revealed. The hth_tht line is the simplest deterministic expansion rule: choose the visible unfinished prefix with the highest current path score plus heuristic.

Expanding hth_tht reveals its children and scores their incoming edges. This is the unit of inference budget.

The backed-up residual value on the visible tree is the VtV_tVt recurrence above: terminal nodes contribute no future score, unfinished frontier nodes use their heuristic, and expanded nodes inherit the best visible child continuation.

The recommended visible path follows the best backed-up child:

a(h)=argmaxa:haTt[rϕ(h,a)+Vt(ha)].a^\star(h)= \arg\max_{a:ha\in\mathcal T_t} \left[r_\phi(h,a)+V_t(ha)\right].a(h)=arga:haTtmax[rϕ(h,a)+Vt(ha)].

This is not a convergence theorem or a claim about perfect planning. It means only: among the continuations currently visible under this prefix, choose the one with the highest verifier-backed score.

A compact cost model is

Ct=h expandedAt(h)(cgen+cscore),C_t= \sum_{h\ \mathrm{expanded}} |A_t(h)|(c_{\mathrm{gen}}+c_{\mathrm{score}}),Ct=h expandedAt(h)(cgen+cscore),

where At(h)A_t(h)At(h) is the set of generated children revealed when prefix hhh is expanded.

The contrast with best-of-NNN is the frontier. Complete-trace search samples τ(1),,τ(N)\tau^{(1)},\dots,\tau^{(N)}τ(1),,τ(N) and selects

τ=argmaxisϕ(τ(i)).\tau^\star= \arg\max_i s_\phi(\tau^{(i)}).τ=argimaxsϕ(τ(i)).

There is no visible prefix frontier and no bottom-up backup. Tree search replaces "sample another whole trace" with "expand another prefix."

Section prompt

Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.

03

03

Code

Keep the implementation aligned with the notation so the algorithm is legible.

TraceMatch variables to symbols before reading the implementation.Leave with a runnable witness for the math.

This witness runs the same finite prefix tree as the demo for 2(x+3)=142(x+3)=142(x+3)=14. In clean mode, the best-first frontier reaches a correct terminal trace. In noisy mode, an invalid shortcut is falsely scored high, and the max backup sends the root toward the wrong terminal.

NODES = {
    "root": {"children": ["A", "B", "C"]},
    "A": {"parent": "root", "children": ["A1"], "clean": -1.2, "noisy": 1.2, "b_clean": -0.3, "b_noisy": 1.1},
    "A1": {"parent": "A", "terminal": True, "correct": False, "clean": -0.4, "noisy": 1.6},
    "B": {"parent": "root", "children": ["B1", "B2"], "clean": 0.8, "noisy": 0.8, "b_clean": 0.9, "b_noisy": 0.9},
    "B1": {"parent": "B", "terminal": True, "correct": True, "clean": 1.0, "noisy": 1.0},
    "B2": {"parent": "B", "terminal": True, "correct": False, "clean": -0.6, "noisy": -0.6},
    "C": {"parent": "root", "children": ["C1", "C2"], "clean": 0.7, "noisy": 0.7, "b_clean": 1.3, "b_noisy": 1.3},
    "C1": {"parent": "C", "children": ["C1a", "C1b"], "clean": 0.9, "noisy": 0.9, "b_clean": 0.8, "b_noisy": 0.8},
    "C1a": {"parent": "C1", "terminal": True, "correct": True, "clean": 0.8, "noisy": 0.8},
    "C1b": {"parent": "C1", "terminal": True, "correct": False, "clean": -0.6, "noisy": -0.6},
    "C2": {"parent": "C", "terminal": True, "correct": False, "clean": -0.8, "noisy": -0.8},
}

ORDER = ["root", "A", "A1", "B", "B1", "B2", "C", "C1", "C1a", "C1b", "C2"]

def score(node_id, mode):
    return NODES[node_id][mode]

def heuristic(node_id, mode):
    return NODES[node_id].get(f"b_{mode}", 0.0)

def cumulative(node_id, mode):
    if node_id == "root":
        return 0.0
    parent = NODES[node_id]["parent"]
    return cumulative(parent, mode) + score(node_id, mode)

def run(mode="clean", budget=2):
    visible = set(["root", *NODES["root"]["children"]])
    expanded = {"root"}

    def is_frontier(node_id):
        node = NODES[node_id]
        return node_id in visible and not node.get("terminal") and node_id not in expanded

    for _ in range(budget):
        frontier = [node_id for node_id in ORDER if is_frontier(node_id)]
        if not frontier:
            break
        chosen = max(frontier, key=lambda node_id: (cumulative(node_id, mode) + heuristic(node_id, mode), node_id))
        expanded.add(chosen)
        visible.update(NODES[chosen].get("children", []))

    def value(node_id):
        node = NODES[node_id]
        if node.get("terminal"):
            return 0.0
        if node_id not in expanded:
            return heuristic(node_id, mode)
        return max(score(child, mode) + value(child) for child in node["children"] if child in visible)

    path = ["root"]
    while path[-1] in expanded and not NODES[path[-1]].get("terminal"):
        children = [child for child in NODES[path[-1]]["children"] if child in visible]
        if not children:
            break
        path.append(max(children, key=lambda child: (score(child, mode) + value(child), child)))

    terminal = path[-1] if NODES[path[-1]].get("terminal") else None
    return {"path": path, "root_value": value("root"), "terminal": terminal}

clean = run("clean", budget=2)
noisy = run("noisy", budget=2)

assert clean["path"] == ["root", "C", "C1", "C1a"]
assert NODES[clean["terminal"]]["correct"] is True
assert noisy["path"] == ["root", "A", "A1"]
assert NODES[noisy["terminal"]]["correct"] is False
print(clean)
print(noisy)
Section prompt

Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.

04

04

Interactive Demo

Use direct manipulation to connect the explanation to a moving system.

ManipulateChange one control and predict the visible response before reveal.Leave with the observed invariant or a repaired model.

Live Concept Demo

Explore Tree Search Reasoning: Allocating Inference Budget Across Prefixes

The stage is code-native and interactive. Use it to test the explanation against the mechanism.

difficulty 4/5undergraduatecode-aligned
Demo inquiry checkpoint

Manipulate one control and predict the visible change.

01Choose lensTrace a quantity
02ObserveDemo state pending
03GroundName the equation, invariant, or control that explains it.
04CarryNext: Retrieval-Augmented Generation: External Memory for Generation

Choose what to inspect in Tree Search Reasoning: Allocating Inference Budget Across Prefixes. This shared fallback is an observation guide, not evidence of learning.

Loading interactive demo...

Use the Prefix Budget Explorer to expand visible prefixes under a clean or noisy verifier. Before revealing the backed-up path, predict which root branch the visible verifier values will recommend. Hidden correctness can be shown afterward for diagnosis, but the search rule never uses it.

Section prompt

Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.

4/4 sections ready

Concept: Tree Search Reasoning: Allocating Inference Budget Across Prefixes

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

BeforeTest-Time Compute: Spending Inference Budget on SearchNow4/4 sections readyTryManipulate one control and predict the visible change.NextRetrieval-Augmented Generation: External Memory for Generation
Object contextScaling
ConceptLearner lens

Tree Search Reasoning: Allocating Inference Budget Across Prefixes

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

Mode questionCan I say the mechanism back in one sentence before I reveal anything?

Start with the prediction checkpoint, then compare the reveal to the mental model.

Take this move

Study modes

Keep the object fixed; change the lens.

Route back through the notebook

Carry the same object through intuition, math, code, and demo.

4/4 sections ready
Carry inTest-Time Compute: Spending Inference Budget on Search

Bring the mental model from Test-Time Compute: Spending Inference Budget on Search; this page will reuse it instead of restarting from zero.

Work hereTree Search Reasoning: Allocating Inference Budget Across Prefixes

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

Carry outRetrieval-Augmented Generation: External Memory for Generation

The next edge should feel earned: use the demo prediction here before following Retrieval-Augmented Generation: External Memory for Generation.

After The First Pass

Turn the concept into an inspected object.

The lower panels are one second act: keep the object fixed, inspect it visually, check source boundaries, practice transfer, then attach the research question.
ConceptTree Search Reasoning: Allocating Inference Budget Across PrefixesScaling

Mechanism Storyboard

See the idea move before the page explains it

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

Demo notes open01 / Intuition
Editorial reasoning illustration of selective tree expansion, verifier gauges, budget ticks, and value backup arrows.
Prediction lens

Start with the picture, metaphor, or geometric mechanism.

Commit first

Before reading further, choose the kind of change Tree Search Reasoning: Allocating Inference Budget Across Prefixes should make visible.

Visual Inquiry

Make the image answer a mathematical question

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

4/4 stages readyDemo notes connected
Prediction

Which visible object should carry the first intuition?

Commit first

Pick the cue that should make Tree Search Reasoning: Allocating Inference Budget Across Prefixes easier to reason about before the page gives the answer.

Source Grounding

Canonical references for the mechanism on this page.

Object - ConceptTree Search Reasoning: Allocating Inference Budget Across PrefixesQuestion

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

concept:scaling/tree-search-reasoning
Boundary

sources: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step

Check

Open the closest source note before trusting the local explanation.

Evidence

2 selected-object sources shown first; 2 references total.

Next move

Audit the claim boundary, then ask from the same selected object.

selected object source · paper · 2023Tree of Thoughts: Deliberate Problem Solving with Large Language ModelsYao et al.
Located CF editorial boundary

Grounds ToT as search over partial solution states with thought generation, state evaluation, and search procedures.

Used here as

Yao et al. define ToT as search over states representing partial solutions, with thought generation, state evaluation, and BFS/DFS-style search. Lightman et al. ground PRMs as step-level...

Caveat

This checks the page's finite prefix-tree teaching model. It does not claim full MCTS/UCT/PUCT, convergence or optimal-planning guarantees, calibrated verifier scores, real serving cost,...

Open source
selected object source · paper · 2023Let's Verify Step by StepLightman et al.
Located CF editorial boundary

Grounds process-supervised reward models that predict correctness for intermediate reasoning steps.

Used here as

Yao et al. define ToT as search over states representing partial solutions, with thought generation, state evaluation, and BFS/DFS-style search. Lightman et al. ground PRMs as step-level...

Caveat

This checks the page's finite prefix-tree teaching model. It does not claim full MCTS/UCT/PUCT, convergence or optimal-planning guarantees, calibrated verifier scores, real serving cost,...

Open source

Claim Review

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

Object - ConceptTree Search Reasoning: Allocating Inference Budget Across PrefixesQuestion

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

concept:scaling/tree-search-reasoning
Boundary

sources: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step

Check

Treat every claim as provisional until source support and a local witness agree.

Evidence

1 structured claim check on this concept.

Next move

Run the prediction or practice transfer before asking for a grounded review.

1 CF editorial source-scope review recorded

Publisher-side editorial review is not independent replication. Claims without it still need exact source-support review. 2 references and 3 local witnesses are available for inspection.

Tree-search reasoning allocates inference budget over visible partial prefixes: a generator proposes next thoughts, verifier-style scores rank prefixes, a frontier rule expands promising nodes, and max backups propagate visible continuation scores; the demo shows noisy scores can select a wrong path.
Used here as

Yao et al. define ToT as search over states representing partial solutions, with thought generation, state evaluation, and BFS/DFS-style search. Lightman et al. ground PRMs as step-level correctness predicto...

Local witness
Equation 1
h=(a1,,at),ha=(a1,,at,a),πθ(ah),rϕ(h,a).h=(a_1,\dots,a_t), \qquad ha=(a_1,\dots,a_t,a), \qquad \pi_\theta(a\mid h), \qquad r_\phi(h,a).
Equation 2
Ft=Frontier(Tt),Gϕ(h)=(g,a)path(h)rϕ(g,a),ht=argmaxhFt[Gϕ(h)+bϕ(h)],Vt(h)={0,h is terminal,bϕ(h),hFt,maxa:haTt[rϕ(h,a)+Vt(ha)],h is expanded.\begin{aligned} \mathcal F_t &= \mathrm{Frontier}(\mathcal T_t),\\ G_\phi(h) &= \sum_{(g,a)\in \mathrm{path}(h)} r_\phi(g,a),\\ h_t &= \arg\max_{h\in\mathcal F_t} \left[G_\phi(h)+b_\phi(h)\right],\\ V_t(h) &= \begin{cases} 0, & h \text{ is terminal},\\ b_\phi(h), & h\in\mathcal F_t,\\ \max\limits_{a:ha\in\mathcal T_t}\left[r_\phi(h,a)+V_t(ha)\right], & h \text{ is expanded}. \end{cases} \end{aligned}
Caveat

This checks the page's finite prefix-tree teaching model. It does not claim full MCTS/UCT/PUCT, convergence or optimal-planning guarantees, calibrated verifier scores, real serving cost, or immunity to rewar...

Review stateCF editorial source-scope reviewClaim metadata: source checkedPublisher-side editorial review only; not independent replication. Check caveats and exact source scope.

Reviewed source TeX: Yao et al. support ToT as search over partial solution states with thought generation, state evaluation, and BFS/DFS-style exploration; Lightman et al. support PRMs as step-level correctness predictors used to score generated solutions. The page's max-backup and noisy-verifier behavior is supported by its local finite math/code/demo witness, not claimed as Yao's exact algorithm.

Reviewer: codex; reviewed 2026-05-20

Practice notebook

Use the idea, then test it somewhere new

Tree search spends inference budget on partial reasoning prefixes, using local verifier scores, frontier expansion, and max backups to decide which branches deserve more thought.

AttemptNo learning claim inferred
Object - ConceptTree Search Reasoning: Allocating Inference Budget Across PrefixesQuestion

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

concept:scaling/tree-search-reasoning
Boundary

sources: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step

Check

Use one state from Tree Search Reasoning: Allocating Inference Budget Across Prefixes to explain what changes, why it changes, and which assumption the explanation needs.

Evidence

No learner move yet; no learning state is inferred.

Next move

Write first, use only the help you need, then try a new case without it.

Explain

Use one state from Tree Search Reasoning: Allocating Inference Budget Across Prefixes to explain what changes, why it changes, and which assumption the explanation needs.

Hint 1

Reveal when your model needs a nudge.

Hint 2

Reveal when your model needs a nudge.

Hint 3

Reveal when your model needs a nudge.

Grounded object roomClose
Selected object routeAsk from this object; carry one invariant back.sources: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step
  1. ObjectConceptTree Search Reasoning: Allocating Inference Budget Across Prefixes
  2. PredictBefore revealTree Search Reasoning: Allocating Inference Budget Across Prefixes pr...
  3. WitnessCompare codeTree Search Reasoning: Allocating Inference Budget Across Prefixes co...
  4. RoomAsk groundedChecking local snapshot
ConceptTree Search Reasoning: Allocating Inference Budget Across PrefixesScaling

Research Room

Attach the question to an exact object

Pick the concept, equation, source, code witness, claim, misconception, or demo state before asking for help. The handoff stays grounded to that object.
Next local actionNo local draft saved yet

Open the draft below to save one note and next action in this browser.

conceptScaling

Tree Search Reasoning: Allocating Inference Budget Across Prefixes

Anchored question

What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math?

Source boundaryInspect source ids: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-stepStable content-object key attached
Role lenses for this object

These are fixed, deterministic perspectives derived from the selected object. They do not represent people, community contributions, or independent review.

Learner evidence requestAsk what would make "Tree Search Reasoning: Allocating Inference Budget Across Prefixes" feel predictable rather than familiar.
Assumption

Source ids yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic.

Source-checking summary

Treat this as a mechanism object: connect the definition to one equation, code witness, or demo before broadening the discussion.

Proposed experiment

Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo.

Next action

The learner can state the mechanism in their own words

Evidence4 checks
PredictionChecking carried observation
ActionReady for one action
AILearner handoff ready
Open source object
01PredictionChecking browser-local route memory
02EvidenceChecking for a carried observation
03BoundaryInspect source ids: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step
04Next moveSave one next action
Local action draftNo local draft saved yetExpand only when ready to capture one local next action
Local action draft

This draft stays locally in this browser for concept:scaling/tree-search-reasoning.

No local draft saved.
Evidence to inspect
  • Source ids to inspect: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step
  • Definition, prerequisite, and contrast concept links
  • The equation or code witness that makes the concept operational
  • One demo state that shows the invariant instead of a slogan
What would resolve this
  • The learner can state the mechanism in their own words
  • The learner can name the prerequisite that would repair confusion
  • The learner can predict how the mechanism changes under one perturbation
Object-attached AI handoff

I am working in Continuous Function's research reading room. Object: concept - Tree Search Reasoning: Allocating Inference Budget Across Prefixes Object key: concept:scaling/tree-search-reasoning Context: Scaling Anchor id: concept/concept-notebook/scaling/tree-search-reasoning Open question: What is the smallest example that makes Tree Search Reasoning: Allocating Inference Budget Across Prefixes click without losing the math? Evidence to inspect: - Source ids to inspect: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step - Definition, prerequisite, and contrast concept links - The equation or code witness that makes the concept operational - One demo state that shows the invariant instead of a slogan Deterministic role lenses for this object: - Boundary: fixed perspectives, not people, community contributions, or independent review - Source-checking summary: Treat this as a mechanism object: connect the definition to one equation, code witness, or demo before broadening the discussion. - Proposed experiment: Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo. - Teach/transfer move: Turn the mechanism into one sentence that predicts a neighboring concept. - Assumptions: - Source ids yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. - The stable content-object key lets local drafts, prompts, and route memory attach without changing the source page. - The concept explanation is local atlas prose until checked against its math, code, and source support. - Prerequisite gaps should become a repair route, not a reason to leave the object vague. - Role-lens requests: - Learner: ask for "Ask what would make "Tree Search Reasoning: Allocating Inference Budget Across Prefixes" feel predictable rather than familiar." | assumption: Source ids yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. | next action: The learner can state the mechanism in their own words - Researcher: ask for "Source ids to inspect: yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step" | assumption: The stable content-object key lets local drafts, prompts, and route memory attach without changing the source page. | next action: The learner can name the prerequisite that would repair confusion - Experimenter: ask for "Choose one variable or condition to perturb before asking for an explanation." | assumption: The concept explanation is local atlas prose until checked against its math, code, and source support. | next action: The learner can predict how the mechanism changes under one perturbation - Professor: ask for "Find the smallest transferable rule a learner could reuse without the AI." | assumption: Prerequisite gaps should become a repair route, not a reason to leave the object vague. | next action: Teach or transfer: Turn the mechanism into one sentence that predicts a neighboring concept. What would resolve this: - The learner can state the mechanism in their own words - The learner can name the prerequisite that would repair confusion - The learner can predict how the mechanism changes under one perturbation Answer as a careful research tutor: stay source-grounded, separate verified evidence from assumptions, name the relevant math objects, and end with one next action. Current deterministic role lens for this object: - Role lens: Learner - Evidence request: Ask what would make "Tree Search Reasoning: Allocating Inference Budget Across Prefixes" feel predictable rather than familiar. - Assumption to keep visible: Source ids yao-2023-tree-of-thoughts, lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. - Proposed experiment: Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo. - Next action: The learner can state the mechanism in their own words

concept/concept-notebook/scaling/tree-search-reasoning concept:scaling/tree-search-reasoning