microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.8.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

katas/content/complex_arithmetic/complex_division/Solution.qs

12lines · modepreview

namespace Kata {    
    open Microsoft.Quantum.Math;
    
    function ComplexDiv(x : Complex, y: Complex) : Complex {
        let (a, b) = x!;
        let (c, d) = y!;
        let denominator = c * c + d * d;
        let real = (a * c + b * d) / denominator;
        let imag = (- a * d + b * c) / denominator;
        return Complex(real, imag);
    }
}