Forum Discussion
Rajesh_32
Jun 07, 2021Copper Contributor
Find intesection point of line graph
Hello Friends, Need to calculate the intersection point of line graph and want to create a vertical axis passing through the intersection point of the line graph.
- Jun 07, 2021
Rajesh_32
Jun 07, 2021Copper Contributor
PeterBartholomew1 Thanks for your solution. Can you explain me how the chart & intersection point arrived if possible.
PeterBartholomew1
Jun 07, 2021Silver Contributor
I wrote linear equations for both the sales and the consumption
s(p) = s₀ + (s₁-s₀)p
c(p) = c₀ + (c₁-c₀)p
and set them equal to determine the value of p at the point of intersection,
p = (c₀-s₀) / ((s₁-c₁)-(s₀-c₀))
- Rajesh_32Jun 07, 2021Copper ContributorThank you so much for your knowledge share. Its highly informative.