I’m in the middle of some exercises for an intro to proofs class, and want to know if it is possible to write the following:
“For all real $n \geq N$” as $(\forall n \in \mathbb{R} \geq N)$.
If that is incorrect syntax, I’d like to know the correct way!
While abbreviations like that may be used informally, they are usually not valid formal syntax. Most commonly, you would write $\forall n\in\mathbb R(n\geq N \to(\dots))$ (or some minor notational variation of this). In fact, the $\forall n\in\mathbb R(\dots)$ is usually itself an informal abbreviation for $\forall n.(n\in\mathbb R \to (\dots))$.
An alternative approach would be to use set builder notation and write $\forall n\in\{x\in\mathbb R\mid x\geq N\}(\dots)$.
What exactly is valid depends on the exact formal notation you're using. I would not be surprised, though, if you haven't been given a clear, comprehensive description of the formal syntax you're supposed to be using. The above is based on common conventions, but conventions vary1. If you have been given a description of the formal syntax you're supposed to use, you can check yourself whether your translation is a well-formed formula with respect to that syntax.
I do recommend trying to stick to a clear syntax and not use abbreviations, especially undefined abbreviations, at least early on. It is quite common, for example, for people to not have a clear understanding of the abbreviation $\exists x\in\mathbb R.P(x)$.
1 Eindhoven notation (as illustrated here, for example), explicitly covers this pattern of usage, and would lead to something like $(\forall n:\mathbb R\mid n\geq N\bullet(\dots))$.