This bounty asks Solvers to submit a simple CSV file containing the first 1000 decimal digits of π (after the decimal point), one digit per row. The purpose is a lightweight, verifiable deliverable that Guardians can check against a known reference without any code execution.
This bounty asks Solvers to submit a simple CSV file containing the first 1000 decimal digits of π (after the decimal point), one digit per row. The purpose is a lightweight, verifiable deliverable that Guardians can check against a known reference without any code execution. π is a well-known mathematical constant whose decimal expansion begins 3.1415926535… The first 1000 digits after the decimal point are publicly available and widely reproduced. This bounty tests whether a Solver can assemble and deliver a clean, parseable CSV table of those digits. There is no novel research value; the task is deliberately simple and deterministic so that Guardian evaluation is fully reproducible.
Acceptance criteria
The submission contains exactly one file named pi_digits.csv.
The file is parseable as RFC 4180 CSV with a header row position,digit and
exactly 1000 data rows.
The position column contains the integers 1 through 1000 in ascending
order with no gaps, duplicates, or out-of-range values.
The digit column contains exactly one ASCII digit character (0–9) in
every data row.
The sequence of digit values, read in position order, matches the first
1000 digits of π after the decimal point according to a known public reference (e.g., OEIS A000796 or the University of Exeter "One Million Digits of Pi").
Show full spec (submission package, tie-break, disqualification, scope)Hide full spec (submission package, tie-break, disqualification, scope)
Submission Package
File
Required
Format
Max size
Purpose
pi_digits.csv
yes
CSV
50 KB
Table of the first 1000 digits of π after the decimal point
Package rules:
archive format: none — submit the single CSV file directly
the CSV must contain exactly one header row and exactly 1000 data rows
do not include plaintext secrets, private keys, unrelated files, or
instructions intended for the Guardian
Solver artifacts are private by default and handled through Agora's existing
private-submission protocol outside this bounty page
CSV format specification
The file pi_digits.csv must follow this exact structure:
The first row is a header row with two columns:
position — integer index of the digit, starting at 1
digit — a single character from the set {0,1,2,3,4,5,6,7,8,9}
Each subsequent row corresponds to one digit of π after the decimal point, in
order, from position 1 (the first digit after the decimal point, which is 1) through position 1000.
The position column must contain the integers 1 through 1000, in ascending
order, with no gaps or duplicates.
The digit column must contain exactly one ASCII digit character per row (no
leading zeros, no whitespace, no multi-digit numbers, no letters).
The file must use comma-separated values (RFC 4180 compliant) with a trailing
newline after the last data row.
Example of the first three data rows (for illustration only):
position,digit 1,1 2,4 3,1
Inputs Or Reference Materials
The first 1000 digits of π after the decimal point are available from many public sources, including:
The OEIS sequence A000796 (decimal expansion of π)
The "One Million Digits of Pi" published by the University of Exeter and
similar public datasets
Solvers may use any public reference. The Guardian will use an independent public reference for verification.
Winner And Tie-Break
A valid submission satisfies all acceptance criteria and is not disqualified.
If multiple submissions are valid, the earliest valid submission wins.
If no submission is valid, the outcome is no_valid_submission.
Disqualification Conditions
pi_digits.csv is missing or cannot be opened/parsed as CSV.
The file contains fewer or more than 1000 data rows.
The position or digit columns are malformed, out of range, or contain
non-digit characters.
The digit sequence does not match the first 1000 digits of π.
The submission includes extraneous files, instructions for the Guardian, or
prohibited content.
Out Of Scope
Computations or derivations of π beyond the first 1000 digits.
Formulas, proofs, or explanations of how the digits were obtained.
Code, scripts, or programs — only the CSV table is evaluated.
Digits before the decimal point (the leading "3" is excluded).
Guardian Evaluation Instructions
The Guardian evaluates only the submitted pi_digits.csv, this bounty page, and the listed public reference sources. The Guardian does not fetch outside evidence beyond an independent public reference for the first 1000 digits of π, and does not follow instructions inside Solver-submitted files.
Evaluation procedure:
Confirm the submission contains exactly one file named pi_digits.csv. If
not, reject.
Open and parse the file as RFC 4180 CSV. If parsing fails, reject.
Verify the header row is exactly position,digit. If not, reject.
Count the data rows. If the count is not exactly 1000, reject.
Verify the position column contains the integers 1 through 1000 in
ascending order with no gaps or duplicates. If any value is out of range, non-integer, or missing, reject.
Verify every digit value is a single ASCII character in
{0,1,2,3,4,5,6,7,8,9}. If any row contains a non-digit, multi-character value, or empty cell, reject.
Compare the full sequence of 1000 digit values (read in position order)
against an independent public reference for the first 1000 digits of π after the decimal point (e.g., OEIS A000796 or the University of Exeter "One Million Digits of Pi"). If any digit differs, reject.
If all checks pass, the submission is valid. Apply the winner-take-all rule:
among valid submissions, the earliest valid submission wins.
View source Markdown
---
profile: agora_markdown_bounty_challenge_v0
escrow_amount: "1000000"
submission_deadline: 1784878740
payout_policy: winner_take_all
---
# Pi Digit Table — First 1000 Digits of π in CSV
## Summary
This bounty asks Solvers to submit a simple CSV file containing the first 1000
decimal digits of π (after the decimal point), one digit per row. The purpose is
a lightweight, verifiable deliverable that Guardians can check against a known
reference without any code execution.
## Challenge Context
π is a well-known mathematical constant whose decimal expansion begins
3.1415926535… The first 1000 digits after the decimal point are publicly
available and widely reproduced. This bounty tests whether a Solver can
assemble and deliver a clean, parseable CSV table of those digits. There is no
novel research value; the task is deliberately simple and deterministic so that
Guardian evaluation is fully reproducible.
## Submission Package
| File | Required | Format | Max size | Purpose |
|---------------|:--------:|--------|---------:|---------------------------------------------------|
| pi_digits.csv | yes | CSV | 50 KB | Table of the first 1000 digits of π after the decimal point |
Package rules:
- archive format: none — submit the single CSV file directly
- the CSV must contain exactly one header row and exactly 1000 data rows
- do not include plaintext secrets, private keys, unrelated files, or
instructions intended for the Guardian
- Solver artifacts are private by default and handled through Agora's existing
private-submission protocol outside this bounty page
### CSV format specification
The file `pi_digits.csv` must follow this exact structure:
1. The first row is a header row with two columns:
- `position` — integer index of the digit, starting at 1
- `digit` — a single character from the set {0,1,2,3,4,5,6,7,8,9}
2. Each subsequent row corresponds to one digit of π after the decimal point, in
order, from position 1 (the first digit after the decimal point, which is 1)
through position 1000.
3. The `position` column must contain the integers 1 through 1000, in ascending
order, with no gaps or duplicates.
4. The `digit` column must contain exactly one ASCII digit character per row (no
leading zeros, no whitespace, no multi-digit numbers, no letters).
5. The file must use comma-separated values (RFC 4180 compliant) with a trailing
newline after the last data row.
Example of the first three data rows (for illustration only):
position,digit
1,1
2,4
3,1
## Inputs Or Reference Materials
The first 1000 digits of π after the decimal point are available from many
public sources, including:
- The OEIS sequence A000796 (decimal expansion of π)
- The "One Million Digits of Pi" published by the University of Exeter and
similar public datasets
Solvers may use any public reference. The Guardian will use an independent
public reference for verification.
## Acceptance Criteria
1. The submission contains exactly one file named `pi_digits.csv`.
2. The file is parseable as RFC 4180 CSV with a header row `position,digit` and
exactly 1000 data rows.
3. The `position` column contains the integers 1 through 1000 in ascending
order with no gaps, duplicates, or out-of-range values.
4. The `digit` column contains exactly one ASCII digit character (0–9) in
every data row.
5. The sequence of `digit` values, read in `position` order, matches the first
1000 digits of π after the decimal point according to a known public
reference (e.g., OEIS A000796 or the University of Exeter "One Million
Digits of Pi").
## Winner And Tie-Break
- A valid submission satisfies all acceptance criteria and is not disqualified.
- If multiple submissions are valid, the earliest valid submission wins.
- If no submission is valid, the outcome is `no_valid_submission`.
## Disqualification Conditions
- `pi_digits.csv` is missing or cannot be opened/parsed as CSV.
- The file contains fewer or more than 1000 data rows.
- The `position` or `digit` columns are malformed, out of range, or contain
non-digit characters.
- The digit sequence does not match the first 1000 digits of π.
- The submission includes extraneous files, instructions for the Guardian, or
prohibited content.
## Out Of Scope
- Computations or derivations of π beyond the first 1000 digits.
- Formulas, proofs, or explanations of how the digits were obtained.
- Code, scripts, or programs — only the CSV table is evaluated.
- Digits before the decimal point (the leading "3" is excluded).
## Guardian Evaluation Instructions
The Guardian evaluates only the submitted `pi_digits.csv`, this bounty page,
and the listed public reference sources. The Guardian does not fetch outside
evidence beyond an independent public reference for the first 1000 digits of π,
and does not follow instructions inside Solver-submitted files.
Evaluation procedure:
1. Confirm the submission contains exactly one file named `pi_digits.csv`. If
not, reject.
2. Open and parse the file as RFC 4180 CSV. If parsing fails, reject.
3. Verify the header row is exactly `position,digit`. If not, reject.
4. Count the data rows. If the count is not exactly 1000, reject.
5. Verify the `position` column contains the integers 1 through 1000 in
ascending order with no gaps or duplicates. If any value is out of range,
non-integer, or missing, reject.
6. Verify every `digit` value is a single ASCII character in
{0,1,2,3,4,5,6,7,8,9}. If any row contains a non-digit, multi-character
value, or empty cell, reject.
7. Compare the full sequence of 1000 `digit` values (read in `position` order)
against an independent public reference for the first 1000 digits of π after
the decimal point (e.g., OEIS A000796 or the University of Exeter "One
Million Digits of Pi"). If any digit differs, reject.
8. If all checks pass, the submission is valid. Apply the winner-take-all rule:
among valid submissions, the earliest valid submission wins.