How could we prove the following claim?
The sum of the digits of $k\cdot 999$ is $\ge 27$
I checked $k = 1$ up to $9$. And I found that if it's true of $d$ it's also true of $10\cdot d$.
I also checked many values with a computer, it seems to always be the case. Further we can see that the digit sum must always be a multiple of 9.
I checked how to prove 'casting out nines', but I could not apply the same method here because it's just the digit sum not the digital root. and $27$ is bigger than our base $10$.
Lemma. Let $n$ be an integer $\ge 1000$. Then there exists a positive integer $m$ such that $m<n$, $n-m$ is a multiple of $999$ and for the decimal digit sums, we have $q(m)\le q(n)$.
Proof. $n$ has a $k$-digit decimal expansion $n=\overline{a_ka_{k-1}\ldots a_1}$ (with $k\ge 4$ and $a_k\ge1$), then $m:=n-999\cdot 10^{k-4}$ is non-negative and has a decimal expansion $m=\overline{b_kb_{k-1}\ldots b_1}$, where $b_j=a_j$ for all $j$ except $$\begin{cases}b_k=a_k-1,b_{k-3}=a_{k-3}+1&\text{if }a_{k-3}<9\\ b_k=a_k-1,b_{k-3}=0, b_{k-2}=a_{k-2}+1&\text{if }a_{k-2}<a_{k-3}=9\\ b_k=a_k-1,b_{k-2}=b_{k-3}=0, b_{k-1}=a_{k-1}+1&\text{if }a_{k-1}<a_{k-2}=a_{k-3}=9\\ b_{k-1}=b_{k-2}=b_{k-3}=0&\text{if }a_{k-1}=a_{k-2}=a_{k-3}=9\\ \end{cases} $$ Then for the digit sum of $m$ we find accordingly $$q(m)=\begin{cases}q(n)\\q(n)-9\\q(n)-18\\q(n)-27\end{cases}\le q(n) $$ Hence if $m>0$, the claim follows. On the other hand, if $m=0$, it follows that $n=999\cdot 10^{k-4}$, $q(n)=27$, and we can take $m=999$. $\square$
Corollary. If $n$ is a positive multiple of $999$, then $q(n)\ge 27$.
Proof. By the lemma, the set of positive multiples of $999$ with digit sum $<27$ has no smallest element. $\square$