You are looking for the intersection of two linear lines in a Cartesian plane.
You have to solve it twice: since you have two lines. You need to solve...
- The intersection of "A, C" to the axis "I"
- The interaction of "A, B" to the axis "I"
You can do this using the modeled equation and "setting them" equal to each other and solve. You can find such an answer here: https://stackoverflow.com/a/4543530/1554844
Once you solve for both pairs, you have the "X" coordinates of both. You trivially have the "Y" since you are able to draw the line (think: a line drawn between both i points, they rest on the same Y, and since you are computing those values, you must know "Y" since it is your axis.)