Prove 0.999... = 1

This equation is equivalent to

which is equivalent to

which is equivalent to

which is equivalent to

DONE

=========================================================== edit

The Thirteen Month Horoscope of Birds

01) {eagle, hawk, falcon, condor, vulture}

02) {dove, pigeon}

03) {penguin}

04) {parrot}

05) {ostrich}

06) {hummingbird}

07) {seagull}

08) {flamingo}

09)

10) {owl}

11) {sparrow, scissor-tail, oriole, cardinal}

12) {duck, goose, swan}

13) {crow, raven}

Notes:

 - 13 months for a lunar calendar
=========================================================== edit

In Gladiator (2000 film), in the beginning battle scene in which the Romans battle the Germans, the character Maximus leads a small band of cavalry around the Germans and attacks them from behind while the Roman infantry meets the Germans head-on. Maximus rides atop his horse with his dog by his side. Suppose this cavalry was comprised of only birds. Then the riders would be eagles or hawks or falcons or condors, maybe even seagulls. Their horses would be pigeons, and their dogs would be crows.


In Platoon (film) directed by Oliver Stone, in the scene in which the Americans enter the Vietnamese village, the character Barnes played by Tom Berenger shoots the wife of the village leader while trying to extract information on the NVA (North Vietnamese Army). He then points his gun at the village leader's daughter who is crying because she just witnessed her mother's death. Then Elias played by Willem Dafoe enters the scene preventing Barnes from shooting the young Vietnamese girl. Just before Elias hits Barnes with the but of his assault rifle, there is the sound of a rooster. Shortly afterward, Taylor, played by Charlie Sheen witnesses three US soldiers raping another young Vietnamese girl. All three US soldiers who were raping the young Vietnamese girl had necklaces with the cross, the Christian symbol. Taylor pulls the three US soldiers away from the Vietnamese girl, then one of the three spits in Taylor's face. Then Elias yells at them all, and to the left of Elias, there is a water-buffalo.

In Braveheart, when the character William Wallace portrayed by Mel Gibson rides into his village atop a horse, with his hands behind his head pretending to surrender to the English forces controlling his village just after the English magistrate killed his wife, he has a Nunchaku concealed in his long hair which he uses to hit the English soldier attempting to pull Wallace from his horse. The Scottish villagers band together and defeat the English forces. This is a "COWABUNGA" moment in movie history -- the weapon Wallace used, which marked the beginning of the Scottish rebellion from which the movie is based, the Nunchaku, is the weapon of Michelangelo of the Teenage Mutant Ninja Turtles.

=========================================================== edit
=========================================================== edit

The Greek Orthodox Church began recognizing Saint Francis of Assisi as an Orthodox saint on November 19, 2019. His recognition as a saint of the Greek Orthodox church became official upon the founding of the first Saint Francis of Assisi Greek Orthodox Church. The founder of the church is Michael Angelo Zolindakis.
Iconography of the Saint Francis of Assisi Greek Orthodox Church:
The eight icons behind the altar of the church are as follows:

 - Saint Demetrius of Thessaloniki 
 - Saint Raphael the Archangel 
 - Saint Francis of Assisi
 - Mother Mary and child 
 - Jesus on the Crucifix 
 - Saint John the Baptist 
 - Saint Michael the Archangel 
 - Saint Catherine of Alexandria


Other Icons in the church:

 - Saint George, note: The icon will not be of Saint George killing the dragon, which references the Golden Legend of Saint George and the Dragon.  Michael Angelo is working on an icon to depict a new modified version of the legend in which Saint George befriends the beast, similar to the Wolf of Gubbio Saint Francis legend. 
 - Saint Elias
 - Saint Constantine and Helen


Prayer_to_Saint_Michael

=========================================================== edit

THE MAYOR

 Dedication: Michael Angelos to the Magnificent Eric Garcetti of Los Angeles
============================================================ edit

Programming Exercises:

- Write 2 programs, in which each program draws a circle and a simple cliché Greek line pattern outlining the circle with only lines for the pattern 
   (i)  For the first program use Turtle_graphics

Do not be distracted by the image of non-digital turtle graphics

 
turtle graphics
   (ii) For the second program, use a single segment of the pattern and then use Givens_rotation and translation matrix transformations to plot the segment many times around the outline.  
          Do not use 4 segments as that would produce an image that resembles the Nazi Swastika.
 An example output is in this file: https://en.wikipedia.org/wiki/File:Circular_greek_pattern_python_code_output.jpg
 Another example with slightly different segment designs is in this file: https://commons.wikimedia.org/wiki/File:Ace.20200718.09.greek.circular.patterns.jpg
- Write code to return the annual Chinese animal using the integer year as input, i.e. if input is 1936 then return "mouse", if input is 1182 then return "cat".  
   Hint: the 12 animals in order are dragon for the year 2000 ace, then snake for 2001, then horse, then goat, monkey, rooster, dog, boar, mouse, ox, cat, rabbit
   Hint: if the year is in bce then use a negative number as the input so that for example if the input is 428 bce then return "mouse"
============================================================ edit

Math Exercise

Let B be a 4x4 matrix. Apply the following matrix operations: (i) double column 1, (ii) halve row 3, (iii) add row 3 to row 1, (iv) interchange columns 1 and 4, (v) subtract row 2 from each of the other rows, (vi) replace column 4 by column 3, (vii) delete column 1. (a) Write the result as a product of 8 matrixes and (b) write the result again as a product of 3 matrixes.

Suppose  

(i) double column 1:

Observe that

 


Let   be the right-side transformation matrix that doubles column 1.


(ii) halve row 3:

Observe that

 


Let   be the left-side transformation matrix that halves row 3.


(iii) add row 3 to row 1:

Observe that

 


Let   be the left-side transformation matrix that add row 3 to row 1.


(iv) interchange columns 1 and 4:

Observe that

 


Let   be the right-side transformation matrix that interchanges column 1 and 4.


(v) subtract row 2 from each of the other rows:

Observe that

 


Let   be the left-side transformation matrix that subtracts row 2 from each of the other rows.


(vi) replace column 4 by column 3:

Observe that

 


Let   be the right-side transformation matrix that replaces column 4 by column 3.


(vii) delete column 1:

Observe that

 


Let   be the right-side transformation matrix that deletes column 1.


(a) Given a 4x4 matrix B, the result of all the transformations as a product of 8 matrixes is

 .

(b) The result as a product of 3 matrixes is

 , where   and  .

=========================================================== edit

Math Exercise -- derivation of the coefficients for linear regression line  

Derive the matrix equation   for   data points  ,  


Want to minimize the expression   with respect to  .

 

 

 

 

 

To minimize the expression, set the partial derivatives of   to zero.

 

 

 

 

 

 

 

 

 

 

 

 

   

=========================================================== edit

Math Exercise


Let   and   be arbitrary. Show that any   is equal to   for some polynomial   of degree  .


A polynomial   of degree   is  , where  .

Given matrix  , vector  , the Krylov Sequence is the set of vectors  . The Krylov_subspaces are the spaces spanned by successively larger groups of these vectors.

In the Arnoldi_iteration Algorithm, considering   is a Hessenberg_matrix,   orthogonal, the columns of   are the first n columns of  . So   is the upper left section of   which is also Hessenberg,

  then  

 

 

 

 

so that   satisfies an (n+1) term recurrence relation involving itself and the previous Krylov vectors. Thus the vectors   form bases of successive Krylov Subspaces generated by   and  , where

 .

Therefore any   satisfies

 , where   is a polynomial of degree  

 

   

=========================================================== edit

Miscellaneous