Questions on finding intersections of geometric objects: lines, planes, regions etc. with possible aid of ContourPlot, Interval, InfinitePlane and others.
I've a list of rectangles in the form
{index, {centerX, centerY}, {width, height}}
I want to find intersecting rectangles list. I want to obtain a list on the form
{{indx...indy},{indt...indz}...}
Every element of this list is a list of rectangles…
I Have a problem when plotting 2 functions. I want to find out where the two graphs intersect eachother. That said, I want the coordinates (x, y) of the point.
p1 = Plot[2/(1 + 20 x^2), {x, 0, 3}, AxesLabel -> {"x", "y"},
LabelStyle -> (FontSize…
If I have a list of points in 3D space that are only roughly located on a surface, this surface can be visualized with ListSurfacePlot3D. How can I find the intersection of this approximate surface with a plane, that spans between two vectors u and…
I'have a 2d-system of differential equations, analitycally solved, depending on a parameter. I know that, by continuity, there exist a minimum value of the parameter such that trajectory passes through a specific point. My problem is to find such…
I have two lines:
line1=InfiniteLine[{{0,1},{4,2}}]
line2=InfiniteLine[{{1,2},{4,8}}]
I used RegionIntersection to get intersection of these lines, but I can't get the coordinates of the point in the…
Say we want to compute the largest common subset among a very large number of sets $Q_i$. One option would be to simply run the command:
Intersection[Q1, Q2, Q3, Q4, Q5, Q6, Q7, ...];
However, this seems to choke for very large numbers of input…
It is relatively easy to be able to find where two parametric functions intersect each other, but how about when one is a function and the second is its reflection? In the example below is it possible to define the value of intersection on the y…
There are two functions, f(x,y)=x + y^2 - 8; g(x,y)=-3 x^2 + y^2 - 5;
How can I get the intersection of these two curves?
And how about the intersection among f(x,y),g(x,y) and z=0?
Thanks