Test Contest 1 Problem C

Find all real solutions to the system of equations: $$\left\{ \begin{array}{l} xy = z - x - y,\\ xz = y - x - z,\\ yz = x - y - z. \end{array} \right.$$

Replace sorry in the template below with your solution. See Answer Bank for acceptible answer declarations. Mathlib version used by the checker is v4.29.0.

import Mathlib.Data.Real.Basic

def answer : Set (ℝ × ℝ × ℝ) := sorry

theorem solution (x y z : ℝ) : 
    x * y = z - x - y ∧
    x * z = y - x - z ∧
    y * z = x - y - z ↔
    (x, y, z) ∈ answer := sorry

Submit Solution

Login to submit a solution.

Recent Submissions

# User Time (UTC) Status
237 Kitsune Long time ago PASSED
236 Kitsune Long time ago PASSED
232 kappa Long time ago PASSED
228 kappa Long time ago PASSED
227 FelixMP Long time ago PASSED
226 FelixMP Long time ago Bad answer
View all