jakemf1986 said:
My guess was that if m > n + 1 then we can say something like "with probability 1" they are Linearly Independent.
You have to be precise about how the randomness is to be implemented. If it is implemented by drawing random samples from a continuous probability distributions then this problem becomes a very technical problem in "measure theory" and I don't claim to know the answer.
Measure theory deals with how probabilities are assigned to sets of events and, using typical continuous probability distributions, it has some counterintuitive conclusions. For example, if x is a random sample taken from the uniform distribution on the interval [0,1], then the probability that x is in the set of rational numbers is zero since this set has "measure zero". As another example, let the point (x,y) be chosen by picking x and y indpendently, each from a uniform distribution on the interval [0,1]. What is the probability that x + y = 1? If we look at the set of (x,y) satisfying x + y = 1, it is a line segment, so it has area zero. Measure theory says the probability that (x,y) falls in that set is zero.
I can't tell whether you are interested in such a theoretical view of your question or whether you have some practical application in mind. For example, numbers in computer languages are rational numbers. So if you simulate drawing a random number form a uniform distribution in [0,1], you get a rational number with probability 1, not probability zero. Likewise, measurements of chemical concentrations or stock market prices have a finite number of decimals, so they are rational numbers.
For the theoretical question, let me suggest a specific algorithm for implementing your randomness.
Let m be a given integer > 2
Let v = (v1,v2,...vm) be the random m dimensional vector which is to be constructed.
1) Pick an integer k from the uniform discrete distribution on the set of integers S = {1,2,..m}. Set vk = 1
2) Pick an integer j from the uniform discrete distribution on the set S - {k}. Set vj= 0
3) For each integer i in the set S - {k} - {j}, draw a number x from the the continuous uniform distribution on [0,1] and set vi = x
To pick a random set of n vectors of the type you describe:
Let n be a integer > 0
Let V = {V0,V1,..Vn} be the set of vectors which is to be randomly constructed.
1) Set V0 equal to the vector, all of whose components are 1
2) Construct each of vectors V1,V2,..Vn by the previous algorithm.
So your question boils down to: For a given n and given m, what is the probabiity that a set of vectors randomly constructed by the above algorithms will be linearly independent?