Determine the maximum 4-digit integer satisfying the following criteria:
\[ \text{Digits: } a \quad b \quad c \quad d \] Where:
\( a = \) Thousands digit
\( b = \) Hundreds digit
\( c = \) Tens digit
\( d = \) Units digit
\[ a + b + c = 14 \quad \text{(1)} \] \[ b + c + d = 15 \quad \text{(2)} \]
\[ (b + c + d) - (a + b + c) = 15 - 14 \Rightarrow d - a = 1 \Rightarrow d = a + 1 \]
To maximize the 4-digit number \( abcd \), prioritize the highest value for the leftmost digit \( a \).
Given \( d = a + 1 \) and that digits range from 0 to 9, the maximum permissible value for \( a \) such that \( d \leq 9 \) is:
\[ a + 1 \leq 9 \Rightarrow a \leq 8 \] To further maximize the number, the tens digit \( c \) should be as large as possible. A balanced choice for \( a \) is 4.
From equation (1):
\[ a + b + c = 14 \Rightarrow 4 + b + c = 14 \Rightarrow b + c = 10 \quad \text{(3)} \]
From equation (2):
\[ b + c + d = 15 \Rightarrow b + c + 5 = 15 \Rightarrow b + c = 10 \quad \text{(confirms equation 3)} \]
We need to select \( b \) and \( c \) such that \( b + c = 10 \) and the number \( abcd = 4bcd \) is maximized.
This occurs when \( c = 9 \) (maximum tens digit).
Consequently, \( b = 1 \), as \( 1 + 9 = 10 \).
\[ a = 4,\quad b = 1,\quad c = 9,\quad d = 5 \Rightarrow \boxed{4195} \]