I've been given the task of writing an algorithm to predict the next value of the Mackey glass time series, given 4 past values using neural networks, so I want to understand how that makes sense.
I know random number generators are pseudo random. But the Mackey glass time series and this answer on StackOverflow made me curious.
I know there are ways to predict data based on the variation of related variables. That's sensible. But why do people try to predict a future value of something that's obviously random, using previous values which were obviously random? The way I see it, on a 2D graph, there's a 50% chance that the value would go up or down. So half of the time you might get a correct prediction, even if you didn't use the previous data. I wouldn't even call it a prediction. It seems so dumb to pretend to predict something like this. Yet, there are people who try to actually theorize it. Why?