how to find intersect with 2 lines (2024)

5 Ansichten (letzte 30 Tage)

Ältere Kommentare anzeigen

JEEVITHA am 18 Nov. 2023

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines

Kommentiert: Sam Chak am 19 Nov. 2023

In MATLAB Online öffnen

find the points of intersection between 𝑥^2+𝑦^2=3 and 𝑥𝑦=1. Convert this into a system of two nonlinear algebraic equations.solve a system of two nonlinear algebraic equations using multivariable Newton-Raphson method with an initial guess of 𝑥=1, 𝑦=1.

dx = 0.1;

x = 0:0.1:5;

f2=xy-1

f1=x.^2+y.^2-3;

y2 = 1×51

1.7321 1.7349 1.7436 1.7578 1.7776 1.8028 1.8330 1.8682 1.9079 1.9519 2.0000 2.0518 2.1071 2.1656 2.2271 2.2913 2.3580 2.4269 2.4980 2.5710 2.6458 2.7221 2.8000 2.8792 2.9597 3.0414 3.1241 3.2078 3.2924 3.3779

figure(1)

p = plot(x, y1, x, y2);

p(1).LineStyle = "-.";

p(2).LineWidth = 2;

how to find intersect with 2 lines (2)

r = find(y1 == y2);

x_intersection = x(r);

x_value_intersection = y1(r);

figure(2)

3 Kommentare

1 älteren Kommentar anzeigen1 älteren Kommentar ausblenden

Steven Lord am 18 Nov. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966322

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966322

This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.

If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.

If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.

Sam Chak am 18 Nov. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966402

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966402

Hi @JEEVITHA,

I understand that Newton–Raphson doesn't require plotting as long as it can find the intersection using the numerical method. However, as advised previously, you should plot the circle and the reciprocal function. Follow the steps provided, even though the homework question does not explicitly require you to plot them.

This will aid in your learning if you genuinely want to understand the material, not just for the sake of submitting the homework and passing the course.

Sam Chak am 19 Nov. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966832

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966832

Hi @JEEVITHA

I see the reciprocal function in y1, but I don't see the circle in y2.

Can you please show the original question again?

Melden Sie sich an, um zu kommentieren.

Melden Sie sich an, um diese Frage zu beantworten.

Antworten (1)

Sam Chak am 18 Nov. 2023

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#answer_1355512

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#answer_1355512

Hi @JEEVITHA

If you post like this, your question will likely be closed by the mods later. Please plot the circle and the reciprocal function on the same graph using the plot() function.

Do you know what the Newton–Raphson algorithm is? Without seeing the procedure, I cannot provide guidance. Of course, I can search on Google, but it's better if you search since this is your homework.

1 Kommentar

-1 ältere Kommentare anzeigen-1 ältere Kommentare ausblenden

Sam Chak am 19 Nov. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966917

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines#comment_2966917

In MATLAB Online öffnen

Hi @JEEVITHA

The curves are incorrectly plotted because f1 and f2 in your code are unused. The circle requires some algebraic manipulations to plot upper and lower arcs.

As a hint, if you are proficient in pure math algebraic manipulations, you will arrive at the answers with the values related to the Golden Ratio. As you can see, the intersections are around x = ±0.6 and x = ±1.6.

% circle: x² + y² = 3

x1 = linspace(-sqrt(3), sqrt(3), 347);

y1a = sqrt(3 - x1.^2); % upper arc

y1b = - sqrt(3 - x1.^2); % lower arc

plot(x1, y1a, x1, y1b, 'color', '#0920b8'), hold on

% reciprocal function: y = 1/x

x2a = linspace(0.35, 3, 266);

x2b = linspace(-3, -0.35, 266);

y2 = @(x) 1./x;

plot(x2a, y2(x2a), x2b, y2(x2b), 'color', '#b80909')

% labels

legend('Circle', '', 'Reciprocal fcn', '')

xlabel('x'), ylabel('y')

grid on

axis equal

how to find intersect with 2 lines (9)

Melden Sie sich an, um zu kommentieren.

Melden Sie sich an, um diese Frage zu beantworten.

Siehe auch

Kategorien

Mathematics and OptimizationSymbolic Math ToolboxMathematicsCalculus

Mehr zu Calculus finden Sie in Help Center und File Exchange

Tags

  • point of intersion and linear differntial equation

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Es ist ein Fehler aufgetreten

Da Änderungen an der Seite vorgenommen wurden, kann diese Aktion nicht abgeschlossen werden. Laden Sie die Seite neu, um sie im aktualisierten Zustand anzuzeigen.


Translated by how to find intersect with 2 lines (10)

how to find intersect with 2 lines (11)

Website auswählen

Wählen Sie eine Website aus, um übersetzte Inhalte (sofern verfügbar) sowie lokale Veranstaltungen und Angebote anzuzeigen. Auf der Grundlage Ihres Standorts empfehlen wir Ihnen die folgende Auswahl: .

Sie können auch eine Website aus der folgenden Liste auswählen:

Amerika

  • América Latina (Español)
  • Canada (English)
  • United States (English)

Europa

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom(English)

Asien-Pazifik

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
  • 日本Japanese (日本語)
  • 한국Korean (한국어)

Kontakt zu Ihrer lokalen Niederlassung

how to find intersect with 2 lines (2024)

FAQs

How to find when two lines will intersect? ›

Two distinct lines intersect at the most at one point. To find the intersection of two lines we just need to solve their equations. The alternative way is to graph the lines and find their point of intersection. The lines will intersect only if they are non-parallel lines.

How many solutions does it take to intersect two lines? ›

1) No solution: This occurs when the 2 lines are parallel. Since they never tough, they have no points in common. 2) One solution: This occurs when the two lines intersect. The solution is the one point where the lines cross over each other.

How do you find the measure of two intersecting lines? ›

The adjacent angles formed by two intersecting lines are always supplementary, meaning that together they measure 180 degrees. Any pair of adjacent angles formed by intersecting lines will have a sum of 180 degrees. When the lines are perpendicular, each angle will measure 90 degrees, with a total sum of 180 degrees.

How to find the intersection of two lines vectors? ›

To find the point of intersection of these two lines, we must find a point P that lies on both lines. At the point of intersection the coordinates for L1 will equal the coordinates for L2. This means there exist values of s and t such that the x, y and z coordinates of the two lines are equal.

How to find intersection in sets? ›

To find the intersection of two or more sets, you look for elements that are contained in all of the sets. To find the union of two or more sets, you combine all the elements from each set together, making sure to remove any duplicates.

What is the intersecting line formula? ›

Point of intersection means the point at which two lines intersect. These two lines are represented by the equation a1x + b1y + c1= 0 and a2x + b2y + c2 = 0, respectively. Given figure illustrate the point of intersection of two lines.

What is the two intersecting lines theorem? ›

Theorem 1: If two lines intersect, then they intersect in exactly one point.

What is the formula for angle of intersection of two lines? ›

The angle between two lines whose slopes are m1 and m2 is given by the formula tan-1|(m1 - m2)/(1 + m1 m2)|.

How do you find two intersections? ›

Here's a step-by-step process:
  1. Write down the equations of the two functions, f(x) and g(x).
  2. Set the two functions equal to each other: f(x) = g(x).
  3. Solve the equation for x. ...
  4. For each x-value found in step 3, plug it back into either f(x) or g(x) to find the corresponding y-value.

What is the formula for the intersection of two events? ›

Formula of Two Independent Events? We can find the probability of the intersection of two independent events as, P(A∩B) = P(A) × P(B), where, P(A) is the Probability of an event “A” and P(B) = Probability of an event “B” and P(A∩B) is Probability of both independent events “A” and "B" happening together.

How do you find where two functions intersect? ›

Here's a step-by-step process:
  1. Write down the equations of the two functions, f(x) and g(x).
  2. Set the two functions equal to each other: f(x) = g(x).
  3. Solve the equation for x. ...
  4. For each x-value found in step 3, plug it back into either f(x) or g(x) to find the corresponding y-value.

How can you tell from their equations that two lines will never intersect each other? ›

  • If 2 coplanar lines do not have the same slope they will intersect. If they have the same slope they are parallel and will never intersect.
  • If u have 2 points you can find the slope using (x1-x2)/(y1-y2) change in x over change in y between the 2 points.
Oct 11, 2022

How to calculate intersection probability? ›

P(A∩B) is the probability of both independent events “A” and "B" happening together, P(A∩B) formula can be written as P(A∩B) = P(A) × P(B), where, P(A∩B) = Probability of both independent events “A” and "B" happening together.

Top Articles
Latest Posts
Article information

Author: Dean Jakubowski Ret

Last Updated:

Views: 6405

Rating: 5 / 5 (70 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Dean Jakubowski Ret

Birthday: 1996-05-10

Address: Apt. 425 4346 Santiago Islands, Shariside, AK 38830-1874

Phone: +96313309894162

Job: Legacy Sales Designer

Hobby: Baseball, Wood carving, Candle making, Jigsaw puzzles, Lacemaking, Parkour, Drawing

Introduction: My name is Dean Jakubowski Ret, I am a enthusiastic, friendly, homely, handsome, zealous, brainy, elegant person who loves writing and wants to share my knowledge and understanding with you.