Let be $f(x)$ a function which can be expressed as a linear combination of other functions: $$f(x)=f_1(x)+f_2(x)+...+f_n(x)$$ would it be possible to apply Monte Carlo integration to each one of the factors and mix them somehow in order to get the right result of $f(x)$? If it's so, how?
Example x 1-dimension: Let's say you want to integrate $f(x)$ between on the interval $[x0,x1]$ using a uniform Monte Carlo estimator: $$f(x)=f_1(x)+f_2(x)$$ $$f_1(x)=ax^2\\f_2(x)=bx+c$$ $$a,b,c\ \ \text{constants}$$
How would you proceed?