Use Show , for example
Show[Plot[x^2, {x, 0, 3.5}], ListPlot[{1, 4, 9}]]

Note that if plot parameters conflict, then Show uses the first plot parameter, if the parameter is not specified in Show. I.e.
Show[Plot[x^2, {x, 0, 3.5}, ImageSize -> 100], ListPlot[{1, 4, 9}, ImageSize -> 400]]
shows a combined size chart of 100.
Show[Plot[x^2, {x, 0, 3.5}, ImageSize -> 100], ListPlot[{1, 4, 9}, ImageSize -> 400], ImageSize -> 300]
Shows a combined size chart of 300.
source share