I'm looking to plot Data between two columns, First row has a funtion of x^2 and second has value of x = {1,2,3,4,5}
So I have now two rows with Data one {1,3,9,16,25} and another {1,2,3,4,5}
Is below the correct way to show the above data on Graph in short form without very long process.
Show[Plot[x^2, {x, 0, 10}], ListPlot[{{1,2,3,4,5}]]
If it is then what are the other ways to plot the Graph and If it isn't then what does above function do or what it tells mathematica to perform?
Here is the image to make it more clear of what I want
Thanks in advance.