Pendiente de la recta paralela a la recta con la pendiente dada

Dado un entero m que es la pendiente de una línea, la tarea es encontrar la pendiente de la línea que es paralela a la línea dada.
Ejemplos: 
 

Entrada: m = 2 
Salida: 2
Entrada: m = -3 
Salida: -3 
 

Acercarse: 
 

Sean P y Q dos rectas paralelas con ecuaciones y = m1x + b1 y y = m2x + b2 respectivamente . Aquí m1 y m2 son las pendientes de las rectas respectivamente. Ahora bien, como las líneas son paralelas, no tienen ningún punto de intersección y, por lo tanto, no habrá un sistema de soluciones para las líneas. Entonces, intentemos resolver las ecuaciones,
 

Para y , m1x + b1 = m2x + b2 
m1x – m2x = b2 – b1 
x(m1 – m2) = b2 – b1 
La única forma en que no puede haber una solución para x es que m1 – m2 sea igual a cero. 
m1 – m2 = 0 
Esto nos da m1 = m2 y las pendientes son iguales. 
 

A continuación se muestra la implementación del enfoque anterior: 
 

C++

// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
 
// Function to return the slope
// of the line which is parallel to
// the line with the given slope
double getSlope(double m)
{
    return m;
}
 
// Driver code
int main()
{
    double m = 2;
    cout << getSlope(m);
 
    return 0;
}

Java

// Java implementation of the approach
class GfG
{
     
// Function to return the slope
// of the line which is parallel to
// the line with the given slope
static double getSlope(double m)
{
    return m;
}
 
// Driver code
public static void main(String[] args)
{
    double m = 2;
    System.out.println(getSlope(m));
}
}
 
// This code is contributed by Code_Mech.

Python3

# Python3 implementation of the approach
 
# Function to return the slope
# of the line which is parallel to
# the line with the given slope
def getSlope(m):
 
    return m;
 
# Driver code
m = 2;
print(getSlope(m));
 
# This code is contributed
# by Akanksha Rai

C#

// C# implementation of the approach
class GFG
{
     
// Function to return the slope
// of the line which is parallel to
// the line with the given slope
static double getSlope(double m)
{
    return m;
}
 
// Driver code
static void Main()
{
    double m = 2;
    System.Console.Write(getSlope(m));
}
}
 
// This code is contributed by mits

PHP

<?php
// PHP implementation of the approach
 
// Function to return the slope
// of the line which is parallel to
// the line with the given slope
function getSlope($m)
{
    return $m;
}
 
// Driver code
$m = 2;
echo getSlope($m);
 
// This code is contributed by Ryuga
?>

Javascript

<script>
 
// javascript implementation of the approach
     
// Function to return the slope
// of the line which is parallel to
// the line with the given slope
function getSlope(m)
{
    return m;
}
 
var m = 2;
document.write(getSlope(m));
 
// This code contributed by Princi Singh
 
</script>
Producción: 

2

 

Tiempo Complejidad: O(1)
Espacio Auxiliar: O(1)

Publicación traducida automáticamente

Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *