## Screenshot: Structured AI Interaction Prompt
### Overview
The image is a screenshot of a structured text document, likely representing a prompt or a template for an AI interaction. It is divided into three distinct sections by horizontal lines: "System," "Input," and "Output." The text is in English and presents a scenario where an AI is instructed to act as a math teacher to evaluate solution steps.
### Components/Axes
The document has a clear, box-like layout with three primary sections:
1. **System Section (Top):**
* **Header:** "System:" (in bold)
* **Content:** A single paragraph defining the AI's role and task.
2. **Input Section (Middle):**
* **Header:** "Input:" (in bold)
* **Content:** A structured math problem containing:
* A "Question:" sub-header.
* A "Process:" sub-header.
* Three numbered steps (Step 1, Step 2, Step 3).
* A final instruction line.
3. **Output Section (Bottom):**
* **Header:** "Output:" (in bold)
* **Content:** A single character response.
### Detailed Analysis / Content Details
**Full Text Transcription:**
**System:**
I want you to act as a math teacher. I will provide a mathematical question and several solution steps, and it will be your job to judge whether these steps are correct or not.
**Input:**
Question:
How many seconds are in 5.5 minutes?
Process:
Step 1 : 5.5 minutes is the same as 5 minutes and 0.5 minutes.
Step 2 : Since there are 60 seconds in a minute, then there are 300 seconds in 5 minutes.
Step 3 : And since there are 60 seconds in a minute, there are 30 seconds in 0.5 minutes.
Is that Step Correct? You should ONLY tell me + or -.
**Output:**
+.
### Key Observations
* The document uses a consistent format with bold section headers and plain text content.
* The "Input" section contains a complete, self-contained math problem with a clear question, a multi-step process, and specific instructions for the expected output format ("+ or -").
* The "Output" section shows a sample response ("+."), which aligns with the instruction to only provide a "+" or "-" symbol. The period after the "+" may be a formatting artifact or part of the sample.
* The math problem involves unit conversion (minutes to seconds) and is broken down into logical, verifiable steps.
### Interpretation
This image depicts a **prompt engineering template** or a **few-shot example** for configuring an AI model to perform a specific, constrained task: evaluating the correctness of mathematical solution steps.
* **Purpose:** The structure is designed to teach or test an AI's ability to follow precise instructions and perform logical validation. The "System" prompt sets the persona, the "Input" provides the test case, and the "Output" demonstrates the required minimal response format.
* **Data Relationship:** The "Input" is the core data. The three steps logically decompose the problem `5.5 minutes * 60 seconds/minute`. Step 1 correctly splits the decimal. Step 2 correctly calculates `5 * 60 = 300`. Step 3 correctly calculates `0.5 * 60 = 30`. Therefore, the process is mathematically sound, which is correctly reflected by the "+" in the "Output."
* **Notable Pattern:** The instruction "You should ONLY tell me + or -" is a critical constraint, forcing the AI to bypass explanatory text and output a pure, machine-readable judgment. This is common in evaluation pipelines or reinforcement learning from human feedback (RLHF) setups.
* **Anomaly/Clarity:** The final line in the Input, "Is that Step Correct?", is slightly ambiguous. It could be interpreted as asking about the last step (Step 3) only, or the entire process. Given the context and the sample output "+", it is logically interpreted as asking about the entire provided process. The sample output confirms this interpretation.