Te dan la pendiente de una línea (m 1 ) y tienes que encontrar la pendiente de otra línea que es perpendicular a la línea dada.
Ejemplos:
Input : 5 Output : Slope of perpendicular line is : -0.20 Input : 4 Output : Slope of perpendicular line is : -0.25
Supongamos que nos dan dos segmentos de línea perpendiculares AB y CD. La pendiente de AB es m 1 y la línea CD es m 2 .
m 1 * m 2 = -1
Desde arriba, podemos decir
m 2 = – 1/( m 1 ) .
¿Cómo funciona la fórmula anterior?
Sea m1 la pendiente de la línea AB y necesitamos encontrar la pendiente de la línea CD. El siguiente diagrama da una idea sobre el funcionamiento de la fórmula.
C++
// C++ program find slope of perpendicular line #include <bits/stdc++.h> using namespace std; // Function to find // the Slope of other line double findPCSlope(double m) { return -1.0 / m; } int main() { double m = 2.0; cout << findPCSlope(m); return 0; }
Java
// Java program find slope of perpendicular line import java.io.*; import java.util.*; class GFG { // Function to find // the Slope of other line static double findPCSlope(double m) { return -1.0 / m; } public static void main(String[] args) { double m = 2.0; System.out.println(findPCSlope(m)); } }
Python3
# Python 3 program find # slope of perpendicular line # Function to find # the Slope of other line def findPCSlope(m): return -1.0 / m m = 2.0 print(findPCSlope(m)) # This code is contributed # by Smitha
C#
// C# Program to find Slope // of perpendicular to line using System; class GFG { // Function to find // the Slope of other line static double findPCSlope(double m) { return -1.0 / m; } // Driver Code public static void Main() { double m = 2.0; Console.Write(findPCSlope(m)); } } // This code is contributed by nitin mittal
PHP
<?php // PHP program find slope // of perpendicular line // Function to find the // Slope of other line function findPCSlope($m) { return -1.0 / $m; } // Driver Code $m = 2.0; echo findPCSlope($m); // This code is contributed by anuj_67 ?>
Javascript
<script> // Javascript program find slope // of perpendicular line // Function to find // the Slope of other line function findPCSlope(m) { return -1.0 / m; } // Driver code let m = 2.0; document.write(findPCSlope(m)); // This code is contributed by jana_sayantan </script>
Producción:
-0.5
Complejidad de tiempo: O(1)
Espacio Auxiliar: O(1)
Publicación traducida automáticamente
Artículo escrito por Manish_100 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA