Skip to main content

Are zebras black with white stripes or white with black stripes?

This is a chapter from my fourth book called When hunger yearns

Did you get the letter z as the answer for the last question of the last chapter? Then you are correct which leads me to the question of this chapter. My friend Gemini tells me that there are references to this debate even in the medieval era, highlighting our long standing fascination with zebra stripes. There is a scientific answer but before I get to that let me tell you what I think. I think most people will think black stripes. We are so used to writing on white pages. Painting on white canvases. Black on white is our default. This is a good example of default bias. The figure-ground effect may also help explain why we say black on white stripes by default. This is a neat example of how different psychological concepts can interact and influence our perception. Scientifically we are told that zebras are actually black with white stripes. The zebra's skin beneath the fur is dark and the white stripes are the fur without melanin when normally the fur has melanin that makes it black.

As I thought about this question I remembered a youtube video I watched some time ago called "The mathematical code hidden in nature". It talks about the patterns we observe in nature like zebra stripes, Turing patterns, morphogenesis, reaction-diffusion equations and an interview with a Mathematical Biologist. Many years after Turing saw the Maths in the patterns of nature, scientists have discovered the morphogens that create these patterns as Turing described it. Research is still being done but this gives us another perspective for this question. Genes also play a role and the genes of the zebra would control the properties of the proteins which act like chemicals in the reaction-diffusion process. Why do zebras have stripes? Some theories include thermoregulation, camouflage and protection from biting flies.

If you want something that really challenges your intelligence then there is the zebra puzzle or Einstein's riddle. There are several variations but essentially there are five houses in a row and you are given clues about each resident, and you have to use logic to figure out who lives in which house, who owns which pet, and so on. Then answer the question, who owns the zebra? Legend has it that Einstein created the puzzle when he was young and said that only two percent of the world could solve it. In my research I also learnt about The Zebra Question poem. A man asks a zebra the same question we are answering about its stripes and the zebra responds with similar questions. Questions like : Are you good with bad habits? Or are you bad with good habits? Are you happy with some sad days? Or are you sad with some happy days? The zebra goes on and on and on. From that day the man decides never to ask zebras that question again.

In my thinking the poem is telling us to look at things from different perspectives. Not everything is as simple as black or white. Don't be quick to label and judge and categorize people. Question ourselves before we question others. One opinion piece in one newspaper analyses the poem by stating "Exceptions don't define you". My friend ChatGPT helped me understand the poem further as explained: Through the lens of dichotomies, the poem may be seen to examine how humans tend to categorize and simplify the world into binary distinctions, such as black and white, good and bad, or happy and sad. However, the ambiguity of the zebra's coloration challenges these rigid dichotomies, encouraging a deeper reflection on the interconnectedness and fluidity of opposites. According to analysis on the allpoetry.com website we are told that the poem challenges conventional notions of duality by presenting a series of paradoxical questions. Maybe if the legendary Michael Jackson was alive today to answer the question he would answer the question simply with, "It don't matter if you're black or white."

Comments

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: S...

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...