Saturday, April 15, 2023

Nothing to be afraid of the Artificial Intelligence (AI)

I always wonder why people tend to be afraid of the AI so much. It sounds just a resemblance to those industrial workers kicked out of their factory job when a new machinery was introduced during the industrial revolution. I actually believe that the further AI development will rather make humanity thrive instead of being destroyed.

I have realised that people in general tend to overestimate the artificial intelligence (AI) because of what the media agitate. The AI is just an application whose capacity really depends on the underneath structure, the infrastructure and the platform. Well, there is no worry to be afraid of the AI taking over humans. The AI is more intelligent for some field but not all the fields which humans are familiar with. 



Moreover, the neuron network of the AI and the humans are completely different. The brain cells and the nerves of humans and the majority natural creatures are interrelated with the other organs of their body. For instance, gut heavily influences their thought process and mindset. In contrast, the AI thought process and neuron networks are self-contained inside their CPI and memory.

Sunday, April 09, 2023

Brownian Motion -> Wiener Process -> Ito Process

This is the mathematical and statistical model referring to a physics theory. Originally, this was invented to predict the randomly floating atoms' movement. This is applied to financial modelling to predict the random walk movement of stock prices. 

Wiener process is derived from the model of Brownian motion to take an account of the variance varying differently from Brownian motion. The popular model is Ito Process invented by Prof. Kiyoshi Ito, Japanese mathematician, which is the derivation of Wiener process. 
 
Ito-Process is more practical to explain in the financial market modelling because the future expected prices of financial assets often drift away from the current point. 

The equation introduced here shows the differential of the variable in the time series. The drift coefficient denotes the lagging effect or the seasonal effect of the variable at a certain time period. The diffusion coefficient is simply the random walk part based on the normally distributed random variable while its theoretical explanation is far more complicated than explained here. 
 
With Python, the diffusion is described as numpy.random.normal(0,SD) where SD stands for standard deviation or volatility in the financial modelling.

After plotting the time series, the expected value at the target time period tends to form a normal distribution. Then, the expected value is calculated under the given confidence interval with the confidence level (usually 95%) / the significance level (usually 5%). In case, it had better test the normality to avoid the bias. 
 
Together with the unit root test assessing the stationarity of financial market and the capital asset pricing model indicating the assets' profitability and risk, the random walk model based on Ito process are popularly used in the financial market analyses.