Files
PHANTOM/paper/src/chapters/balance_figure.tex
Daniel Alves Rösel a9d73ccce5 Paper first fillout (#39)
* initial environemnt definitions

* high level defintion

* formlating the reward simply

* improved implementation

* tailored docker compose image for secondary tenaordboard

* preliminary desriptions and babble

* details on formulation and defintion of agent and its loop

* typos one

* more grammar issues

* fluidity improvements and refactors

* more decluttering and dnoising

* finalizing introduction review

* some methodology

* somehow this disappeared

* bit more of this and that

* methodology of how we do architectuer and online DP

* fix: compilation

* expanding on the taxonomy and economic references

* authoer notes

* acks + google GCP

* making space w new format nada lit review

* stronger lit review and more sources

* forgot about tables and graphs

* dedupe citations

* adding cloudflare

* fixing env vars

* updating docs with url

* upating embed

* fixing the url

* paper badge

* formaliztaion of rewards and adding definitions

* noisy formulations

* connecting some more dots here

* adding significant weight in prices

* fixing error

* fixing typos and consistency

* extra math formulations and refferenceot DRO

* fixing diagram of loops

* github mindmap

* fixing erro and thiknig about big picture

* enhancing the website

* goals methodology and gitignore

* some more references and theory links

* talking about some wtp

* feature: added wordcounter

* forcing latex builds and fixining the bib #

* refactor: update Cost of Information equations and notation for clarity

* some more math and refactors

* refactor: unify notation and improve clarity in COI equations

* refactor: generalize master function for demand estimation and pricing strategies

* we dont like math but we have to do it :(

* refactor: enhance Cost of Information framework with additional context and illustration

* refactor: enhance literature review and methodology sections with economic theory insights and system architecture details

* alining format to fit the rubric

* refactoring bibliography

* fix: align

* mdp additionally

* trying different title

* adding balance figure

* agentic givergence, finally

* fix: figure fonts adjusted to match
2026-01-13 17:07:29 +01:00

39 lines
1.4 KiB
TeX

\begin{tikzpicture}[
% Styles for consistency
axis/.style={->, >=Stealth, line width=1.2pt, color=black!85},
curve/.style={color=black, line width=2.5pt},
point/.style={circle, fill=black, inner sep=0pt, minimum size=6pt},
label_text/.style={font=\large, align=center, color=black},
annotation_line/.style={thick, -, color=black!60}
]
% Define Radius
\def\R{5}
% Draw Axes
% Extended slightly beyond radius (\R + 1)
\draw[axis] (0,0) -- (\R+1.5,0) node[midway, below=10pt, font=\bfseries\large] {UX Index};
\draw[axis] (0,0) -- (0,\R+1.5) node[midway, left=15pt, rotate=90, font=\bfseries\large] {Performance};
% Draw Perfect 1/4 Circle
% Syntax: arc (start_angle : end_angle : radius)
\draw[curve] (0,\R) arc (90:0:\R);
% 1. Paranoid (High Performance side) -> Angle 67.5 degrees
\node[point] (p1) at (75:\R) {};
\node[label_text, above right=0.1cm and 0.1cm of p1] (l1) {Paranoid};
\draw[annotation_line] (l1) -- (p1);
% 2. Perfect Detection (Exact Middle) -> Angle 45 degrees
\node[point] (p2) at (45:\R) {};
\node[label_text, above right=0.2cm and 0.2cm of p2] (l2) {Perfect Detection};
\draw[annotation_line] (l2) -- (p2);
% 3. No Detection (High UX side) -> Angle 22.5 degrees
\node[point] (p3) at (15:\R) {};
\node[label_text, right=0.5cm of p3] (l3) {No Detection};
\draw[annotation_line] (l3) -- (p3);
\end{tikzpicture}