Open In App

Ruby | Complex / function

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
Complex#/() is a Complex class method which returns the division value on two complex numbers.
Syntax: Complex./() Parameter: Complex values Return: division value on two complex numbers.
Example #1 : Ruby
# Ruby code for Complex./() method

# declaring Complex value
a = Complex(200)

# declaring Complex value
b = Complex(-1, 4)

# declaring Complex value
c = Complex('i')


# Multiplication 
puts "Complex / form : #{a/b}\n\n"

puts "Complex / form : #{b/c}\n\n"

puts "Complex / form : #{c/a}\n\n"
Output :
Complex / form : -200/17-800/17i

Complex / form : 4/1+1/1i

Complex / form : 0/1+1/200i

Example #2 : Ruby
# Ruby code for Complex./() method

# declaring Complex value
a = Complex(20, 90)

# declaring Complex value
b = Complex('i')

# declaring Complex value
c = Complex(100, -500)


# division 
puts "Complex / form : #{a/b}\n\n"

puts "Complex / form : #{b/c}\n\n"

puts "Complex / form : #{c/a}\n\n"
Output :
Complex / form : 90/1-20/1i

Complex / form : -1/520+1/2600i

Complex / form : -86/17-38/17i

Next Article

Similar Reads