Editing
Divergent Thinking
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Divergent Thinking is the "Expand" phase of creativity—the mental ability to generate a "Galaxy" of different, unusual, and unique solutions to a single problem. While "Convergent Thinking" looks for the "One Right Answer" (like in a math test), Divergent Thinking looks for "Every Possible Answer" (like "How many ways can you use a paperclip?"). It is the skill of the "Dreamer" and the "Innovator," focusing on "Fluency," "Flexibility," and "Originality." By practicing divergent thinking, we can break free from "Fixed Mindsets" and find the "Hidden Paths" that lead to breakthrough discoveries. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Divergent Thinking''' — A thought process or method used to generate creative ideas by exploring many possible solutions. * '''JP Guilford''' — The psychologist who first defined "Divergent Thinking" as a core part of human intelligence. * '''The Four Pillars of Divergent Thinking''': # '''Fluency''' — The "Total Number" of ideas you can generate. # '''Flexibility''' — The "Number of Categories" your ideas fall into (e.g., using a brick as a "Tool" vs. using it as "Art"). # '''Originality''' — The "Uniqueness" of the ideas (how many other people thought of it?). # '''Elaboration''' — The "Detail and Depth" of the ideas. * '''Convergent Thinking''' — The opposite process: narrowing down many ideas into the "Single Best" one using logic and criteria. * '''Alternative Uses Test''' — A famous creativity test where you list as many uses as possible for a common object (like a brick or a shoe). * '''Lateral Thinking''' — Edward de Bono's term for "Solving problems through an indirect and creative approach" (Thinking outside the box). * '''Mind Mapping''' — A visual technique for divergent thinking that uses branches to connect ideas. * '''Ideation''' — The formal process of forming new ideas. * '''Functional Fixedness''' — The mental "Block" that makes us only see an object for its traditional use (e.g., seeing a "Hammer" only as something that hits nails). </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Divergent thinking is understood through '''Broadening''' and '''Suspending Judgment'''. '''1. The "Yes, And..." Rule''': The "Killer" of divergent thinking is "No." * When you say "That's a dumb idea" or "That won't work," your brain "Closes its doors." * Divergent thinking requires "Deferred Judgment"—writing down every idea, even the "Crazy" ones, without judging them. * This allows the "Inner Child" of the brain to play, which is where the "Original" ideas live. '''2. Flexibility (Breaking the Category)''': A "Fluent" person might think of 100 ways to use a brick: "Build a wall, build a house, build a chimney..." * A "Flexible" person thinks of "Crush it to make red paint," "Use it as a doorstop," or "Balance it on my head for posture." * Flexibility is about "Jumping" from one mental "Track" to another. '''3. The "Idea Curve"''': The first 10 ideas you have are usually the "Boring" ones (the ones everyone else has). * Ideas 11-30 are the "Weird" ones. * Ideas 31-50 are where the "Breakthroughs" happen. * Divergent thinking is a "Stamina" game—you have to "Push past the obvious" to find the "Genius." '''The 'Torrance Tests of Creative Thinking' (TTCT)'''': The most famous set of tests for divergent thinking, created by Ellis Paul Torrance in the 1960s. It uses simple "Incomplete drawings" and asks people to "Finish the picture" in as many ways as possible. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Alternative Uses' (Calculating a Divergent Thinking score):''' <syntaxhighlight lang="python"> def calculate_dt_score(ideas_list, categories_list): """ Score = Fluency (Number) + Flexibility (Categories) """ fluency = len(ideas_list) flexibility = len(categories_list) total_score = fluency + (flexibility * 5) # Weighting flexibility more if total_score > 50: return f"Score: {total_score} | LEVEL: Master Innovator." elif total_score > 20: return f"Score: {total_score} | LEVEL: Creative Thinker." else: return f"Score: {total_score} | LEVEL: Conventional Thinker." # Person A: 10 ideas, but all in 1 category (Building) print(f"A: {calculate_dt_score(['Wall', 'House', 'Path'], ['Building'])}") # Person B: 5 ideas, but in 5 different categories print(f"B: {calculate_dt_score(['Paint', 'Doorstop', 'Weapon', 'Gift', 'Toy'], ['Art', 'Utility', 'Safety', 'Social', 'Play'])}") </syntaxhighlight> ; Divergent Landmarks : '''The 3M 'Post-it' Story''' → A scientist was looking for a "Strong glue" (Convergent) but found a "Weak glue" and used "Divergent Thinking" to find a billion-dollar use for it. : '''NASA's 'Apollo 13' CO2 Filter''' → When the astronauts were dying, the engineers on Earth used extreme divergent thinking to "Build a filter out of socks, tape, and a plastic bag"—saving the mission. : '''Edward de Bono's 'Six Thinking Hats'''' → A tool used by companies to force employees to "Switch" their thinking style (e.g., the "Green Hat" is for pure divergent thinking). : '''The 'Paperclip' Study''' → A famous longitudinal study showing that 98% of 5-year-olds are "Creative Geniuses" in divergent thinking, but that number drops to 2% by the time they are 25. (Does school "Kill" creativity?). </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Divergent vs. Convergent Thinking ! Feature !! Divergent (Expanding) !! Convergent (Narrowing) |- | Goal || Finding "Many" options || Finding the "Best" option |- | Brain State || Free-flowing / Playful || Focused / Logical |- | Analogy || A 'Rainstorm' of ideas || A 'Funnel' of logic |- | Key Tool || "Yes, and..." || "No, because..." |} '''The Concept of "Remote Association"''': Analyzing why "Different" things belong together. Creativity is often the ability to find a "Thread" between two things that seem to have "Nothing in common" (e.g., "A shark" and "A vacuum cleaner"). Divergent thinking is the "Search engine" that finds those threads. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating divergent thinking: # '''The "Execution" Problem''': Is a person with "1,000 ideas" more valuable than a person with "1 idea they actually built"? (The "Dreamer vs. Doer" debate). # '''Originality vs. Utility''': If an idea is "Unique" but "Useless," is it still "Creative"? (Psychologists say: "Creativity requires both Originality AND Usefulness"). # '''Brain-Drain''': Why is divergent thinking so "Tiring"? (Because the brain has to "Inhibit" its habit of taking the easy path). # '''Cultural Bias''': Do Western cultures value "Divergent Thinking" (Originality) more than Eastern cultures, which might value "Mastery" and "Harmony" (Convergent)? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''AI Divergence-Boosters''': AIs that "Listen" to a meeting and "Suggest" the most "Bizarre and Unlikely" connections to prevent everyone from "Thinking the same." # '''Divergent VR Environments''': VR spaces where the "Laws of Physics" are broken (e.g., you walk on the ceiling) to "Force" the brain into a divergent state. # '''Neuro-Plasticity Apps''': Daily games designed to "Break" your functional fixedness by making you find new uses for "Virtual Objects" every morning. # '''The 'Creative' Resume''': A future where your "Divergent Thinking Score" is more important to a company than your "University Grades." [[Category:Psychology]] [[Category:Education]] [[Category:Psychology of Creativity]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information