You can find where they intersect with Solve (or can use FindRoot).
intersect =
x /. First[
Solve[PDF[NormalDistribution[0.044, 0.040], x] ==
PDF[NormalDistribution[0.138, 0.097], x] && 0 <= x <= 2, x]]
Out [4] = 0.0995521
Now take the CDF to this point.
CDF[NormalDistribution[0.044, 0.040], intersect]
Out [5] = 0.917554
, x = 0 -infinity; . CDF, x = 0.
FindRoot
intersect =
x /. FindRoot[
PDF[NormalDistribution[0.044, 0.040], x] ==
PDF[NormalDistribution[0.138, 0.097], x], {x, 0, 2}]
Out [6] = 0.0995521
- , , . CDF - , PDF .
Wolfram Research