Following my textbooks definition of a full binary tree, which is: If T is a full binary tree with i internal vertices, then T's total vertices = 2i + 1. So with 1000 internal vertices, there would be 2001 total vertices.
I then used this formula to calculate the number of edges. E = (total vertices)-1. The answer would then be 2000 edges, Am I right?