To prove that 5n + 3 and 7n + 4 are relatively prime for all n, the standard method involves calculating their GCD. Initial attempts using induction were unsuccessful, as the base case worked but assumptions led to confusion with variable usage. The discussion emphasizes the importance of using distinct variables for different equations to avoid confusion. Suggestions include directly finding integers s and t that satisfy the equation (5n + 3)s + (7n + 4)t = 1, rather than relying solely on induction. Ultimately, proving the statement directly may be a more straightforward approach than the inductive method.