Puzzle Piece

Calculus Level 3

Let α \alpha be a complex number whose real and imaginary parts are plotted on the horizontal and vertical Cartesian axes.

Consider the following quantity:

Q = 1 + 1 2 k = 1 k = 7 α k 1 1 2 k = 1 k = 7 α k {\large Q} = \frac{\displaystyle 1 + \frac{1}{2} \sum_{k=1}^{k=7} \alpha^k}{\displaystyle 1 - \frac{1}{2} \sum_{k=1}^{k=7} \alpha^k}

Within the square region defined by ( 2 < ( α ) < 2 ) (-2 < \Re(\alpha) < 2) and ( 2 < ( α ) < 2 ) (-2 < \Im(\alpha) < 2) , what is the area of the sub-region for which Q < 1 |Q| < 1 ? This is the blue portion of the diagram below.


The answer is 9.077.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Karan Chatrath
Dec 10, 2019

Simulation code attached below. Answer is: A S = 9.0822 \boxed{AS=9.0822} .

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
clear all
clc

dx = 0.001;
dy = 0.001;
AS = 0;

for x = -2:dx:2
    for y = -2:dy:2
        % Computing alpha denoted as A:
        A = x + j*y;

        % Computing Q:
        S = A^1 + A^2 + A^3 + A^4 + A^5 + A^6 + A^7;
        Q = (1 + 0.5*S)/(1 - 0.5*S);

        % Condition check:
        if abs(Q)<1
            % Area computation:
            AS = AS + dx*dy;
        end
    end
end

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...