Combining Word Embeddings into Sentences

If I have an embedding for each word, is there math that gives me the same embedding when the words are a sentence? For example, I’m looking for v(“I”) + v(“like”) + v(“math”) = v(“I like math”)

where v returns an embedding for the string.