I'm using the following code to generate the "lemma" functionality in my document:
\newtheorem{lemma}[theorem]{Lemma}
However, the first lemma I define appears as Lemma 0.1. I tried using the \setcounter{lemma} command to change the count, but it didn't work. I want to be able to set the counter so that the first lemma I define appears as Lemma 5.1. Note that I'm not working with sections or any other partitioning like that, so the 5 is somewhat arbitrary.

theoremdefined? Which document class are you using? This information is relevant, since the counter for your lemmas shares the counter for the theorems. – Gonzalo Medina Apr 25 '14 at 01:58