Does a series of numbers defined as the concatenation of two or more infinite series, for example all the positive integers followed by all the negative integers, make mathematical sense?
I came up with this problem while writing an implementation of infinite series in Erlang. I'm not sure how to represent this in code in a way that isn't horrific, and wondered if it even made any sense. I'm a programmer, not a mathematician, so won't understand any answers too steeped in technical terms!
EDIT: Ok, After reading and being confused by a few answers I have discovered that the mathematical definition of concatenation appears to be a bit different to my understanding of it from programming.
When I say "the concatenation of two infinite series", what I actually mean is a new series that consists of all the elements of the first series followed by all the elements of the second series.
So for the example I gave above, the positive integers followed by the negative integers, you could start at the beginning of the series and get only positive numbers, never in fact reaching the second infinite series.
However, if you then applied some sort of 'filter' to this concatenated (in my definition) infinite series, that would somehow make the first part of it finite, then it would be possible to count up to elements of the second series.
I hope this makes more sense now, and if there is a more appropriate mathematical term I can use instead of concatenation, please let me know. Ta!