The objective is to determine the count of 5-digit numbers $d_1d_2d_3d_4d_5$, where each digit $d_i$ belongs to the set {0, 1, 2, 3, 4, 5, 6, 7}. The number must exceed 50000, and the sum of the first and last digits must satisfy $d_1 + d_5 \leq 8$.
1. Identify the possible values for the first digit ($d_1$):
For the number to be greater than 50000, the first digit $d_1$ must be 5, 6, or 7. Hence, $d_1 \in \{5, 6, 7\}$.
2. Examine the constraint $d_1 + d_5 \leq 8$ for each value of $d_1$:
3. Determine the number of possibilities for the middle digits ($d_2, d_3, d_4$):
As there are no specific restrictions on $d_2$, $d_3$, and $d_4$ beyond belonging to the set {0, 1, 2, 3, 4, 5, 6, 7}, each of these digits has 8 potential values. Consequently, there are $8 \times 8 \times 8 = 8^3 = 512$ combinations for the sequence $d_2d_3d_4$.
4. Calculate the total count of qualifying 5-digit numbers:
The total count is obtained by summing the possibilities for each case of $d_1$:
The aggregate total of such 5-digit numbers is $2048 + 1536 + 1024 = 4608$.
Final Answer:
The total count of the specified 5-digit numbers is $ {4608} $.