skip to main content


Title: Concept Maps Decrease Students’ Neurocognitive Demand When Thinking about Engineering Problems
The research presented in this paper explores the effect of concept maps on students’ neurocognition when constructing engineering problem statements. In total, 66 engineering students participated in the experiment. Half of the students were asked to create a concept map illustrating all of the systems and stakeholders represented in a building on campus. The other half of students were not asked to draw a concept map. Both groups were then asked to construct an engineering problem statement about improvements to the building. While performing the problem statement task, their neurocognitive activation in their prefrontal cortex (PFC) was measured using a non-intrusive neuroimaging technique called functional near-infrared spectroscopy. The students that were asked to complete the concept mapping task required less cognitive effort to formulate and analyze their problem statements. The specific regions that were less activated were regions of the brain generally associated with working memory and problem evaluation. These results provide new insight into the changes in mental processing that occurs when using tools like concept maps and may provide helpful techniques for students to structure engineering problems.  more » « less
Award ID(s):
1929892
NSF-PAR ID:
10397732
Author(s) / Creator(s):
; ; ; ;
Editor(s):
Jazizadeh, F.; Shealy, T.; Garvin, M.
Date Published:
Journal Name:
Construction Research Congress 2022
Page Range / eLocation ID:
244 to 253
Format(s):
Medium: X
Sponsoring Org:
National Science Foundation
More Like this
  1. ASCE (Ed.)
    The research presented in this paper explores the effect of concept maps on students’ neurocognition when constructing engineering problem statements. In total, 66 engineering students participated in the experiment. Half of the students were asked to create a concept map illustrating all of the systems and stakeholders represented in a building on campus. The other half of students were not asked to draw a concept map. Both groups were then asked to construct an engineering problem statement about improvements to the building. While performing the problem statement task, their neurocognitive activation in the prefrontal cortex (PFC) was measured using a non-intrusive neuroimaging technique called functional near-infrared spectroscopy. The students that were asked to complete the concept mapping task required less cognitive effort to formulate and analyze their problem statements. The specific regions that were less activated were regions of the brain generally associated with working memory and problem evaluation. These results provide new insight into the changes in mental processing that occurs when using tools like concept maps and may provide helpful techniques for students to structure engineering problems. 
    more » « less
  2. The research presented in this paper tested whether drawing concept maps changes how engineering students construct design problem statements and whether these differences are observable in their brains. The process of identifying and constructing problem statements is a critical step in engineering design. Concept mapping has the potential to expand the problem space that students explore through the attention given to the relationship between concepts. It helps integrate existing knowledge in new ways. Engineering students (n=66) were asked to construct a problem statement to improve mobility on campus. Half of these students were randomly chosen to first receive instructions about how to develop a concept map and were asked to draw a concept map about mobility systems on campus. The semantic similarity of concepts in the students’ problem statements, the length of their problem statements, and their neurocognition when developing their statements were measured. The results indicated that students who were asked to first draw concept maps produced a more diverse problem statement with less semantically similar words. The students who first developed concept maps also produce significantly longer problem statements. Concept mapping changed students’ neurocognition. The students who used concept mapping elicited less cognitive activation in their left prefrontal cortex (PFC) and more concentrated activation in their right PFC. The right PFC is generally associated with divergent thinking and the left PFC is generally associated with convergent and analytical thinking. These results provide new insight into how educational interventions, like concept mapping, can change students’ cognition and neurocognition. Better understanding how concept maps, and other tools, help students approach complex problems and the associated changes that occur in their brain can lay the groundwork for novel advances in engineering education that support new tools and pedagogy development for design. 
    more » « less
  3. Jazizadeh, F. ; Shealy, T. ; Garvin, M. (Ed.)
    Challenges associated with the design and construction of the built environment are complex. Students need training to help them deal with this complexity and to help them explore and reframe problems early during project planning and design. Concept maps provide a visual representation of complex information and the relationships between this information. The research presented in this paper tested whether priming students to think in systems by asking them to draw concept maps changes how they construct problem statements. In total, 40 engineering students participated in the study. Half were asked to draw a concept map before constructing a problem statement about how to improve mobility systems around campus. The cognitive effort (i.e., time and words) students spent on the task and the number of unique system elements included in their problem statement were measured. Students that received the concept mapping intervention spent significantly more time thinking about the problem, developed longer problem statements, and included more unique elements of systems. These findings suggest using concept mapping can aid students’ conceptualization of complex problems. 
    more » « less
  4. Neuroimaging provides a relatively new approach for advancing engineering education by exploring changes in neurocognition from educational interventions. The purpose of the research described in this paper is to present the results of a preliminary study that measured students’ neurocognition while concept mapping. Engineering design is an iterative process of exploring both the problem and solution spaces. To aid students in exploring these spaces, half of the 66 engineering students who participated in the study were first asked to develop a concept map and then construct a design problem statement. The concept mapping activity significantly reduced neurocognitive activation in the students’ left prefrontal cortex (PFC) compared to students who did not receive this intervention when constructing their problem statement. The sub-region in the left PFC that elicited less activation is generally associated with analytical judgment and goal-directed planning. The group of students who completed the concept mapping activity had greater focused neurocognitive activation in their right PFC. The right PFC is often associated with divergent thinking and ill-structured representation. Patterns of functional connectivity across students’ PFC also differed between the groups. The concept mapping activity reduced the network density in students’ PFC. Lower network density is one measure of lower cognitive effort. These results provide new insight into the neurocognition of engineering students when designing and how educational interventions can change engineering students’ neurocognition. A better understanding of how interventions like concept mapping shape students’ neurocognition, and how this relates to learning, can lay the groundwork for novel advances in engineering education that support new tools and pedagogy for engineering design. 
    more » « less
  5. null (Ed.)
    Experts often use particular control flow structures to make their code easier to read and modify, such as using the logical operator AND to conjoin conditions rather than nesting separate if statements. Within Boolean expressions, experts take advantage of short-circuit evaluation by ordering their conditions to avoid errors (such as checking that an index is within the bounds of an array before examining the value at that index). How well do students understand these structures? We investigate students' use and understanding of conjoined versus separate conditions within a larger assessment of 125 undergraduate students at the end of their second- and third-semester CS courses (in algorithms & data structures and introductory software engineering). The assessment asked students to: write code where an edge case error could be avoided with short-circuit evaluation, revise their code with nudges towards expert structure, and answer comprehension questions involving code tracing. When writing, students frequently forgot to check for a key edge case. When that case was included, the check was often separated in its own if-statement rather than conjoined with the other conditions. This could indicate a stylistic choice or a belief that the check had to be separated for functionality. Notably, students who included all necessary conditions rarely exhibited the error of ordering them incorrectly. However, with code comprehension, students demonstrated significant misunderstandings about the effects of condition ordering. Students were more accurate on comprehension tasks with nested ifs than conjoined conditions, and this effect was most pronounced when the ordering of the conditions would lead to errors. When conditions were conjoined in a single expression, only 35% of students recognized that checking a value at an index before checking that the index was in bounds would lead to an error. However, 54% of students recognized the problem when the conditions were separated into individual if-statements. This demonstrates a subtlety in code execution that intermediate students may not have mastered and emphasizes the challenges in assessing students' understanding solely via the way they write code. 
    more » « less