I have 2 curves illustrated with the following Mathematica code:
Show[Plot[PDF[NormalDistribution[0.044, 0.040], x], {x, 0, 0.5}, PlotStyle -> Red],
Plot[PDF[NormalDistribution[0.138, 0.097], x], {x, 0, 0.5}]]
I need to do 2 things:
- Find the x and y coordinates where the two curves intersect and
- Find the area under the red curve to the right of the x coordinate in the above intersection.
I haven't done this kind of problem in Mathematica before and haven't found a way to do this in the documentation. Not certain what to search for.