check this format content in detail

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.

Review the thesis formatting section by section

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.

check in detail content in detail

Reading File
Browsing Directory

~/

Browsing Directory

~/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d

Searching the Web

university thesis formatting checklist abstract table of contents chapter headings references formatting

I’ll audit the thesis for both formatting consistency and content structure, section by section.
Running Command

mkdir -p "/tmp/workspace/thesis-review/src" "/tmp/workspace/thesis-review/output" && python3 - <<'PY' from docx import Document from docx.enum.style import WD_STYLE_TYPE from collections import Counter, defaultdict from pathlib import Path import re, json p=Path('/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx') doc=Document(str(p)) out=Path('/tmp/workspace/thesis-review/output') # metadata & styles meta={'paragraphs':len(doc.paragraphs),'tables':len(doc.tables),'sections':len(doc.sections),'inline_shapes':len(doc.inline_shapes), 'core_properties': {k:getattr(doc.core_properties,k) for k in ['title','author','subject','keywords','created','modified','last_modified_by']}} styles=Counter((x.style.name if x.style else 'None') for x in doc.paragraphs if x.text.strip()) meta['paragraph_styles']=styles for i,s in enumerate(doc.sections,1): meta[f'section_{i}']={'top_in':round(s.top_margin.inches,3),'bottom_in':round(s.bottom_margin.inches,3),'left_in':round(s.left_margin.inches,3),'right_in':round(s.right_margin.inches,3),'header_in':round(s.header_distance.inches,3),'footer_in':round(s.footer_distance.inches,3),'different_first':s.different_first_page_header_footer} (out/'metadata.json').write_text(json.dumps(meta,default=str,indent=2)) # all paragraphs with format metadata lines=[] for i,x in enumerate(doc.paragraphs,1): t=' '.join(x.text.split()) if not t: continue pf=x.paragraph_format runs=[r for r in x.runs if r.text] fonts=Counter((r.font.name or '', r.font.size.pt if r.font.size else None, bool(r.bold), bool(r.italic)) for r in runs) lines.append(f'{i:05d}\t[{x.style.name}]\t{t}\t| align={x.alignment} before={pf.space_before.pt if pf.space_before else None} after={pf.space_after.pt if pf.space_after else None} line={pf.line_spacing} indentL={pf.left_indent.inches if pf.left_indent else 0} first={pf.first_line_indent.inches if pf.first_line_indent else 0} fonts={dict(fonts)}') (out/'paragraphs_with_format.txt').write_text('\n'.join(lines)) # headings plus nearby text h=[] for i,x in enumerate(doc.paragraphs): t=' '.join(x.text.split()) if t and (x.style.name.lower().startswith('heading') or re.match(r'^(chapter\s+|[0-9]+(\.[0-9]+)*\s)',t,re.I)): h.append((i+1,x.style.name,t)) (out/'headings.txt').write_text('\n'.join(f'{i}\t[{s}]\t{t}' for i,s,t in h)) # tables text for ti,tb in enumerate(doc.tables,1): rows=[] for row in tb.rows: rows.append(' | '.join(' '.join(cell.text.split()) for cell in row.cells)) (out/f'table_{ti:02d}.txt').write_text('\n'.join(rows)) print(json.dumps(meta,default=str,indent=2)) print('headings',len(h),'tables',len(doc.tables)) PY

Reading File
Reading File
Reading File
Running Command

python3 - <<'PY' from docx import Document from docx.oxml.ns import qn from collections import Counter p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx' d=Document(p) # Count manual formatting and page breaks; headers/footers for si,s in enumerate(d.sections,1): print('SECTION',si,'header=',repr(s.header.paragraphs[0].text if s.header.paragraphs else ''),'footer=',repr(s.footer.paragraphs[0].text if s.footer.paragraphs else '')) print('PAGE_BREAKS',sum(1 for p in d.paragraphs for r in p.runs if 'w:type="page"' in r._r.xml)) # common font sizes/names/runs c=Counter() for p in d.paragraphs: for r in p.runs: if r.text.strip(): c[(r.font.name or 'inherited',r.font.size.pt if r.font.size else 'inherited')]+=1 print('FONTS',c.most_common(20)) # find fields, comments-ish, TOC xml=d.part.element.xml for x in ['TOC','HYPERLINK','PAGE','w:footnoteReference','w:commentRangeStart','w:ins','w:del']: print(x,xml.count(x)) PY

Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Searching PubMed

interhemispheric transfer children

Finding Sources
Running Command

python3 - <<'PY' from docx import Document from pathlib import Path import re p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx'; d=Document(p); out=Path('/tmp/workspace/thesis-review/output') # simple review print every textual paragraph, section-like candidates and references / spelling items=[] for n,x in enumerate(d.paragraphs,1): t=' '.join(x.text.split()) if not t: continue # titles / leading labels focus if (len(t)<125 and (t.isupper() or re.match(r'^(CHAPTER|[0-9]+\.|Abstract|INTRODUCTION|REVIEW|METHODOLOGY|RESULTS|DISCUSSION|CONCLUSION|REFERENCES|APPENDIX|LIST OF|DECLARATION|CERTIFICATE|ACKNOWLEDG)',t,re.I))): items.append(f'{n}: {t}') (out/'section_candidates.txt').write_text('\n'.join(items)) # spelling / likely improper word patterns terms=['assesment','spilt-brain','Kruskal–Walli','Kruskal-Walli','thereby','this word served','right- handed','mixed – handed','fulfilment','interhemispheric'] for term in terms: hits=[f'{n}: {" ".join(x.text.split())}' for n,x in enumerate(d.paragraphs,1) if term.lower() in x.text.lower()] if hits: (out/f'hits_{re.sub("[^a-zA-Z]+","_",term)}.txt').write_text('\n'.join(hits)) # tables overview s=[] for i,t in enumerate(d.tables,1): s.append(f'TABLE {i}: {len(t.rows)} rows x {len(t.columns)} cols') s+=[' '+' | '.join(' '.join(c.text.split())[:80] for c in r.cells) for r in t.rows[:3]] (out/'tables_overview.txt').write_text('\n'.join(s)) # list particular entire content probably sections around ranges into manageable sections every 50 paragraphs original for start in range(1,len(d.paragraphs)+1,100): a=[] for n,x in list(enumerate(d.paragraphs,1))[start-1:start+99]: if x.text.strip(): a.append(f'{n}: {" ".join(x.text.split())}') (out/f'content_{start:03d}_{min(start+99,len(d.paragraphs)):03d}.txt').write_text('\n'.join(a)) print('done',len(items)) PY

Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Running Command

python3 - <<'PY' from docx import Document from collections import Counter p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx';d=Document(p) # identify figures from inline shape anchors plus headings, duplicate names, blank paras/ hard PB/ formatting anomalies print('PARAS',len(d.paragraphs),'TABLES',len(d.tables),'FIGURES',len(d.inline_shapes)) print('EMPTY',sum(not x.text.strip() for x in d.paragraphs)) for i,t in enumerate(d.tables,1): texts=[' '.join(c.text.split()) for r in t.rows for c in r.cells] print(i, 'emptycells',sum(not x for x in texts),'lastrow', [ ' '.join(c.text.split()) for c in t.rows[-1].cells]) # document note: print all para entries 550 onwards for n,x in enumerate(d.paragraphs,1): if n>=550 and x.text.strip():print(n, ' '.join(x.text.split())) PY

Running Command

python3 - <<'PY' from docx import Document import re p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx';d=Document(p) # citation numbers cited in text first 561 paras nums=[] for n,x in enumerate(d.paragraphs,1): if n>=561: break t=x.text # individual numeric notes approximate attached or standalone, exclude tables etc nums+= [(n,int(z)) for z in re.findall(r'(?<![A-Za-z0-9])([0-9]{1,2})(?![A-Za-z0-9])',t)] print('max',max(z for _,z in nums),'unique',sorted(set(z for _,z in nums))) # output full TOC table + ref count and duplicate raw normalized titles print('TOC') for row in d.tables[0].rows: print(' | '.join(c.text.replace('\n',' ').strip() for c in row.cells)) print('LOF') for row in d.tables[1].rows:print(' | '.join(c.text.replace('\n',' ').strip() for c in row.cells)) print('LOT') for row in d.tables[2].rows:print(' | '.join(c.text.replace('\n',' ').strip() for c in row.cells)) PY

Reading File

Detailed thesis review

I reviewed the uploaded .docx for document structure, formatting, tables, figures, language, internal consistency, and academic content. It contains 772 paragraphs, 18 tables, and 12 embedded figures.
Overall assessment: The thesis has a clear research topic and a generally logical chapter sequence, but it is not ready for final submission. The main problems are inconsistent formatting, unstructured Word styles, unresolved language errors, reference-list problems, internal title/annexure inconsistencies, and a corrupted Kannada consent section.
I could not compare it against your college’s official thesis template, so margin/font compliance should be confirmed against that manual. General university guidance expects consistent chapter heading styles, a complete and consistent reference section, and a table of contents that matches the final document, as noted in UCI thesis guidance and Colorado State formatting guidance.

1. High-priority corrections before submission

A. Rebuild the formatting with Word styles

All substantive paragraphs, including chapters and subheadings, are formatted as Normal or List Paragraph. There are no proper Heading 1, Heading 2, or Heading 3 styles.
Why this matters
  • The Table of Contents is manually created, not automatically generated.
  • Headings cannot be updated consistently.
  • Navigation pane, figure/table lists, and page references will be unreliable.
  • Any later formatting edit may disturb the layout.
Required fix
  • Apply Heading 1 to all chapter headings:
    • INTRODUCTION
    • AIM AND OBJECTIVES
    • REVIEW OF LITERATURE
    • METHODOLOGY
    • RESULTS
    • DISCUSSION
    • CONCLUSION
    • REFERENCES
    • ANNEXURES
  • Apply Heading 2 to major subheadings such as:
    • Study design
    • Participants
    • Outcome measures
    • Statistical analysis
    • Strengths and limitations
  • Apply Heading 3 to tool-specific sections and task stages.
  • Then regenerate the Table of Contents, List of Figures, and List of Tables.

B. Correct the Kannada annexure corruption

The Kannada participant information sheet has:
  • Missing spacing between words in many paragraphs
  • Text that is visibly corrupted or mojibake in the Kannada informed-consent section
  • Unclear phrasing and broken paragraphs
For example, the paragraph beginning around document paragraph 756 shows corrupted encoding rather than readable Kannada.
Required fix: Replace the corrupted content from a verified original Kannada source. Do not manually submit the current version. Have a fluent Kannada reader, ethics committee representative, or professional translator review the final participant sheet and consent form.

C. Fix title inconsistencies across sections

The study title is not identical throughout the thesis.
LocationWording issue
Cover page“Behavioral Assessment of Interhemispheric Connection…”
CertificateUses “Behavioural” and “CROSS- SECTIONAL”
Annexure 03 participant sheetSays “An Observational Study”
Informed consent formSays “An Observational Study”
Kannada documentsUses another translated variation
Required fix: Choose one approved title and use it exactly, including capitalization, spelling, punctuation, and study-design label, on:
  • Cover page
  • Certificate
  • Declaration
  • Copyright page
  • Abstract
  • Ethics approval document
  • Participant information sheet
  • Consent forms
  • Plagiarism certificate
  • All annexures
If the approved design is cross-sectional, do not call it “observational” in selected annexures unless your guide and ethics approval specifically use both terms.

D. Repair the references and citations

The reference section begins with both “REFERENCES” and a second heading, “REFERENCE:”. Use only one heading: REFERENCES.
Problems found:
  • References are not numbered, while the body uses numerical citation style.
  • The first reference is repeated later:
    • Bloom and Hynd appears twice.
  • One author is misspelled:
    • Gbedd JN” should be checked against the original paper. The known author is likely Giedd JN.
  • Some references are incomplete or use inconsistent journal/title capitalization.
  • Punctuation and spacing are inconsistent.
  • The list appears to have only about 23 entries, while citations in the text include multiple non-sequential citation numbers such as 21, 22, and 23.
  • The title format differs between in-text citations and the reference list.
  • DOI format is absent throughout.
Required fix
  1. Select a reference style required by the institution, likely Vancouver for this format.
  2. Use Zotero, Mendeley, EndNote, or Word citation tools.
  3. Insert citations using one uniform system.
  4. Number every reference in citation order.
  5. Delete duplicate records.
  6. Verify every author, title, journal, year, volume, issue, pages, and DOI against the original publication.

2. Front-matter review

Cover page

Good points

  • Has title, student name, register number, degree, college, university, location, and submission month/year.
  • Centered cover-page structure is broadly appropriate.

Corrections needed

  • “In partial fulfilment for the award of the degree” should be:
    • “In partial fulfilment of the requirements for the award of the degree of…”
  • Use one spelling convention throughout:
    • Behavioural is British English
    • Behavioral is American English
      The document currently uses both.
  • Check whether the official college name must be written as:
    • “R. L. Jalappa College of Physiotherapy”
    • “RL Jalappa College of Physiotherapy”
    • “R.L. Jalappa College of Physiotherapy”
      All three styles appear in the document.
  • “KARNATAKA-563101” should usually be formatted with a space:
    • Karnataka - 563101
  • Use the same university capitalization across all pages.

Certificate

Corrections needed

  • “Bonafide” is generally written as bona fide in formal academic English, unless your institution’s approved certificate wording uses “Bonafide.”
  • The project title has an inconsistent hyphen/space:
    • “CROSS- SECTIONAL”
    • Correct: CROSS-SECTIONAL
  • The guide’s name appears in different forms:
    • “Dr PAVAN KUMAR B N”
    • “Dr. PAVANKUMAR B N(PT)”
    • “Pavankumar B N”
  • Standardize honorifics, initials, qualification notation, and designation.
  • Improve the signature block alignment. “SIGNATURE SIGNATURE” should be arranged in a clean two-column table without visible table borders.

Declaration and copyright page

Corrections needed

  • The candidate declaration uses inconsistent capitalization:
    • “Bonafide and genuine project work”
  • Better wording:
    • “I hereby declare that this project report titled ‘…’ is my original work, completed under the guidance of …”
  • Copyright page:
    • “for academic or project purpose” should be “for academic purposes.”
  • Confirm whether the university requires “Deemed to be University” to appear exactly as stated in its approved format.

Acknowledgement

Corrections needed

  • The acknowledgement is overly repetitive in places and needs proofreading for grammar.
  • Standardize names and professional titles.
  • Keep the tone formal and concise.
  • The signature currently appears as “POOJITHA.” Use the full official name:
    • Poojitha N G

Abstract

The abstract should be checked carefully against the prescribed word limit and required headings. Ensure it includes, in one concise form:
  • Background
  • Aim
  • Methods
  • Sample size and age group
  • Key measures
  • Principal results with key statistics
  • Conclusion
  • Keywords
Avoid claims that go beyond the cross-sectional design, such as proving developmental change or clinical screening value.

Table of Contents, List of Figures, List of Tables, Abbreviations

Table of Contents

Problems:
  • It says “TABLE OF CONTENT”. Correct it to “TABLE OF CONTENTS.”
  • Some chapter titles do not match the chapter text:
    • TOC says “Aim and objective”
    • Chapter heading says “AIM AND OBJECTIVE”
    • Better: AIM AND OBJECTIVES
  • TOC says “Result”; chapter heading says “RESULTS.”
  • TOC says “Reference”; section heading says “REFERENCES.”
  • Page ranges are manually typed and must be updated after final formatting.

List of Figures

Problems:
  • “Bimanual coordination” appears twice without distinguishing the two figures.
  • Figure titles should match the exact captions in the body.
  • Ensure all figures have consistent caption formats:
    • Figure 4.1: Tactile intermanual transfer
    • Figure 4.2: Bimanual tapping
  • Use chapter-based numbering rather than “Figure 1, Figure 2” across a full thesis, if this is the institutional norm.

List of Tables

Problems:
  • It lists only 10 tables, whereas the document contains 18 tables.
  • The List of Tables needs updating after all results tables are finalized.
  • It should include every table in the thesis and use consistent capitalization.

List of Abbreviations

Problems:
  • Heading should be LIST OF ABBREVIATIONS, not “LIST OF ABBREVIATION.”
  • Check that every abbreviation is used in the text and defined at first use.
  • “ITA” is defined as “Inter-Tap Asynchrony,” but confirm whether the abbreviation is actually used consistently.
  • “TIA” appears in results tables for tactile intermanual accuracy, which could be confused with “TIA” in medicine. Define it clearly and use one expansion consistently.

3. Chapter-by-chapter content review

Chapter 1: Introduction

Strengths

  • Establishes the relevance of the corpus callosum and interhemispheric communication.
  • Identifies the 6-12-year age group.
  • Connects tactile transfer and bimanual motor performance to the research question.

Main issues

  1. Overstated or informal language
    • Current wording: “Without such connectivity, each hemisphere functions independently, causing chaos and confusion in behavior.”
    • This is too broad and not scientifically precise.
    • Replace with neutral wording:
      • “Reduced interhemispheric communication may affect the integration of sensory, motor, and cognitive information.”
  2. Grammar and clarity problems
    • “The human brain is a bilaterally organized structure into two hemispheres…”
    • Better:
      • “The human brain is bilaterally organized into two cerebral hemispheres…”
  3. Unsupported developmental claims
    • “The corpus callosum develops gradually and starts developing from birth to early adulthood.”
    • Developmental claims must be cited accurately and phrased cautiously.
    • Avoid presenting broad developmental statements as settled without a direct supporting source.
  4. Citation formatting is inconsistent
    • Examples:
      • 2,21
      • 2&3
      • 5,23 .In
    • Use one method only, such as superscript Vancouver citations or bracketed citations:
      • [2,3]
      • [5,23]
  5. Causal language
    • The study is cross-sectional. Do not write that age “causes” better brain communication.
    • Use:
      • “was associated with”
      • “showed an age-related pattern”
      • “was consistent with maturational differences”
  6. Introduction needs a sharper research gap Add a dedicated paragraph stating:
    • What is known internationally
    • What is unknown in Indian school-aged children
    • Why task-based measures are relevant in the local physiotherapy context
    • Why the three selected tests were chosen
    • How this study addresses the gap

Aim and Objectives

The heading reads “AIM AND OBJECTIVE”. Change it to “AIM AND OBJECTIVES.”

Ensure objective wording is measurable

The objectives should be written using parallel verbs, for example:
  1. To assess tactile intermanual transfer in typically developing school-aged children.
  2. To assess bimanual tapping and bimanual coordination.
  3. To examine the association between age and task-based measures of interhemispheric connectivity.
  4. To compare task-based performance across age groups and sex.
Ensure every objective has a corresponding method, results table, and conclusion statement.

Chapter 2: Review of Literature

This is one of the most important sections needing revision.

Major problems

  1. Spelling errors in headings
    • “INTERHEMISPHERIC CONNECTIVITY ASSESMENT
    • “NEUROIMAGING ASSESMENT
    • Correct: ASSESSMENT
  2. Narrative is not consistently academic
    • Several paragraphs read as conversational explanations rather than a critical literature review.
    • Example:
      • “This is important for the thesis because it means…”
    • Replace with academically neutral synthesis:
      • “These findings suggest that measures of interhemispheric transfer may reflect both facilitatory and inhibitory callosal processes, depending on task demands.”
  3. Sentence corruption
    • In the Gazzaniga paragraph:
      • “...diverging or conflicting responses this word served as the foundation...”
    • This is an editing artifact and must be removed.
  4. Typographical error
    • “spilt-brain patients”
    • Correct: split-brain patients
  5. Literature review is descriptive rather than critical It lists studies one by one but does not sufficiently compare:
    • Study design
    • Sample characteristics
    • Measures used
    • Main findings
    • Limitations
    • Relevance to the present study

Recommended structure

SubheadingWhat to cover
Corpus callosum and interhemispheric connectivityRelevant anatomy, functional role, developmental context
Development of interhemispheric transfer in childhoodAge-related evidence, key developmental findings
Handedness and lateralityEHI, rationale for inclusion/exclusion of mixed-handed participants
Tactile intermanual transferPrior tasks, validity, outcomes, developmental evidence
Bimanual tapping and coordinationIn-phase and anti-phase paradigms, gap score, prior evidence
Research gapLimited Indian normative data, need for task-based assessment

Specific corrections

  • “right- handed, mixed – handed” should be:
    • right-handed, mixed-handed
  • “Since hand preference is linked brain hemisphere use” should be:
    • “Because hand preference is associated with cerebral lateralization…”
  • “The formula for LQ is[(R-L)/(R+L)] ×100” should be:
    • LQ = [(R - L) / (R + L)] × 100

Chapter 3: Methodology

Strengths

  • Identifies participant age range.
  • Includes inclusion/exclusion criteria.
  • Describes multiple task-based assessments.
  • Uses non-parametric tests where appropriate.

Major corrections needed

  1. Formula missing The document contains:
    • LQ = ×100
    The formula is incomplete. It must be restored:
    • LQ = [(R - L) / (R + L)] × 100
  2. Tool numbering is inconsistent
    • “Tool 2: Task 1”
    • “TOOL NO 2: TASK 2”
    • “TOOL 4: TASK 3”
    Use one sequence:
    • Tool 1: Edinburgh Handedness Inventory
    • Tool 2: Tactile Intermanual Transfer
    • Tool 3: Bimanual Tapping
    • Tool 4: Bimanual Coordination
  3. Spelling errors
    • “10 item questionaries” → 10-item questionnaire
    • “the chid” → the child
    • “There result” → The result
    • “intermanuallly” → intermanually
    • “intermanaul” → intermanual
    • “INTREPRETATION” → INTERPRETATION
    • “Sever-disconnection” → likely Severe disconnection
  4. Procedure needs reproducibility The methods must be detailed enough for another researcher to repeat them. Add:
    • Testing location and environment
    • Examiner training
    • Order of task administration
    • Number of trials
    • Practice trials
    • Rest intervals
    • Materials used
    • Scoring method
    • Whether assessors were blinded
    • Handling of incomplete data or unsuccessful trials
  5. Unsupported tool interpretation cutoffs The thesis presents categories such as:
    • “Normal transfer”
    • “Mild reduction”
    • “Severe disconnection”
    • “Significant anti-coordination deficit”
    Each cutoff requires a cited source or an explicit statement that it is an investigator-defined operational category. Do not present new cutoffs as established clinical norms unless validated.
  6. Methodological wording
    • “A mobile application metronome will be set…” is future tense.
    • In a completed thesis, change to past tense:
      • “A mobile metronome application was set at 60 beats per minute.”
  7. Ethical details Include:
    • IEC approval number
    • Approval date
    • Consent procedure
    • Child assent procedure
    • Privacy/data storage approach
    • Data retention period, if required by the institution

Tables in Methodology

Specific issues

  • Table 4.1 has an empty final cell.
  • Table 4.3 heading has “INTREPRETATION.”
  • Table 4.6 includes “Sever-disconnection.”
  • Table 4.6 and the bimanual coordination threshold description need validation.
  • Some categorical cutoffs overlap or are unclear.
For example, the discussion itself identifies a conflict in the bimanual coordination threshold:
  • “>30% = significant difficulty”
  • Yet another category is “40-59% = moderate”
This must be resolved before finalizing tables and interpretation.

4. Results chapter

Strengths

  • The results are organized by demographics, tactile transfer, bimanual tapping, bimanual coordination, age correlation, age-group comparisons, and sex-wise comparisons.
  • The sample size, N = 120, is consistently stated.
  • Tables include descriptive and inferential statistics.

Main problems

  1. Too much repetition Several result paragraphs restate almost every number already visible in the table. Results should present:
  • The main finding
  • The most relevant statistic
  • The implication
    Avoid rewriting the whole table in prose.
  1. Test naming error
  • “Kruskal–Walli’s test”
  • Correct: Kruskal-Wallis test
  1. Post-hoc analysis is missing The thesis states that Kruskal-Wallis tests found significant age-group differences, but also admits that post-hoc pairwise comparisons were not completed.
This is a substantive issue. If overall age-group differences are significant, perform and report:
  • Dunn’s post-hoc test or another appropriate pairwise comparison
  • Multiple-comparison adjustment, such as Bonferroni or Holm correction
  • Exact age groups that differ
Until then, do not state which age groups performed better than others.
  1. Overinterpretation of correlation Avoid saying performance “improved” based solely on cross-sectional correlation. Use:
  • “Age was positively associated with…”
  • “Older age groups showed higher values…”
  1. No variability in Condition 1 The discussion says bimanual coordination Condition 1 had no variability. This should be reported transparently in Results and addressed under limitations.
  2. Tables need uniform formatting Standardize:
  • Decimal places
  • Use of % signs
  • Alignment of numerical data
  • Capitalization
  • Table-note formatting
  • “n” and “N”
  • Spacing around statistical symbols:
    • p < 0.001
    • ρ = 0.428
    • H = 21.069

Suggested result wording

Instead of:
“This indicates that higher age was associated with better tactile intermanual transfer performance.”
Use:
“Age was positively associated with Transfer Index scores (Spearman’s ρ = 0.428, p < 0.001), indicating higher scores among older participants.”
This is more precise and does not imply causation.

5. Discussion chapter

Strengths

  • Discusses age effects and sex comparisons.
  • Includes strengths and limitations.
  • Acknowledges the need for post-hoc comparisons.
  • Notes the problem with the Condition 3 classification threshold.

Important corrections

  1. Do not make screening or diagnostic claims The thesis says task performance may be useful for school or community screening and may help identify neurological difficulties.
This is too strong for the present study because:
  • The sample includes typically developing children.
  • The design is cross-sectional.
  • There is no diagnostic validation sample.
  • No sensitivity, specificity, predictive value, reliability, or validated local norm study is reported.
Use cautious wording:
“These task-based measures may be explored in future research as potential components of developmental assessment. Diagnostic or screening use would require validation in clinical populations and the establishment of age-specific normative data.”
  1. Do not imply confirmed corpus-callosum integrity Task scores cannot by themselves demonstrate “intact callosal function” or directly establish corpus callosum integrity. They are behavioral measures that may reflect interhemispheric processing but are influenced by attention, comprehension, motor ability, task familiarity, and other factors.
  2. Clarify the limitations Keep the current limitations and add:
  • Convenience or school-based sampling, if applicable
  • Lack of neuroimaging confirmation
  • Unmeasured socioeconomic, educational, and motor-development factors
  • Potential measurement bias
  • Lack of test-retest or inter-rater reliability reporting
  • Limited generalizability outside the sampled population
  1. Remove unsupported claims Phrases such as “provide a foundation for future normative and clinical use” should be softened unless the study was designed and powered to establish normative values.

6. Conclusion

The conclusion needs a full rewrite for grammar, precision, and scope.

Current problems

  • “The results Of the study…”
  • “This finding corresponds of corpus callosum…”
  • “Non-invasive and cost-free test…”
  • “physiotherapists in detecting cases of poor brain interhemispheric communication such as ADHD, autism…”
These statements are grammatically incorrect and overstate clinical application.

Suggested revised conclusion

This cross-sectional study assessed task-based measures of interhemispheric performance in 120 typically developing children aged 6-12 years. Tactile intermanual transfer, bimanual tapping, and bimanual coordination measures showed significant associations with age, whereas sex-wise differences were not statistically significant for the reported measures. The findings support the feasibility of using simple behavioural tasks to describe age-related patterns of sensory and motor interhemispheric performance in this sample. However, these measures should not be used as diagnostic or screening tools without further validation, age-specific normative data, reliability assessment, and study in relevant clinical populations.

7. Annexures and ethics documents

Annexure numbering

The annexure labels are inconsistent:
  • ANNEXURE 01
  • ANNEXURE 02
  • ANNEXURE 03
  • Then again “ANNEXURE - 2” for the English consent form
  • Kannada documents begin again with “Annexure - 1” and “Annexure - 2”
Use a single sequence, for example:
  1. Annexure I: Ethical Committee Approval
  2. Annexure II: Plagiarism Certificate
  3. Annexure III: English Participant Information Sheet
  4. Annexure IV: English Informed Consent Form
  5. Annexure V: Kannada Participant Information Sheet
  6. Annexure VI: Kannada Informed Consent Form

Participant information sheet

Corrections needed

  • Use “participant” consistently, not “your participation” when the participant is the child and consent is being obtained from a parent/guardian.
  • “withdraw at any time before submitting the survey” is inappropriate because this is not a survey.
    • Replace with:
      • “You may withdraw your child from the study at any time without penalty or loss of entitled benefits.”
  • “There are no anticipated physical, psychological, or social risks” is too absolute.
    • Better:
      • “No significant risks are anticipated. The child may experience minor fatigue or discomfort during the tasks and may take a break or stop at any time.”
  • “Ethical Approval” should include IEC approval number and date.
  • Confirm whether personal mobile numbers and email addresses should remain in a publicly submitted thesis. These are visible in the Kannada annexure and may create a privacy concern.

Informed consent form

Corrections needed

  • Add signature/date fields for:
    • Parent/guardian
    • Investigator
    • Witness, if required
  • Include a child assent form if the IEC requires assent for children aged 6-12 years.
  • Ensure wording matches the actual approved IEC consent form.
  • Correct internal inconsistency between “no personal identifying information will be collected” and any demographic data actually collected. If identifiers are collected during recruitment but removed for analysis, say so accurately.

8. Global language and typography issues

Recurrent spelling and grammar errors found

  • Assesment → Assessment
  • Spilt-brain → Split-brain
  • Questionaries → Questionnaire
  • Chid → Child
  • There result → The result
  • Intermanuallly → Intermanually
  • Intermanaul → Intermanual
  • Intrepretation → Interpretation
  • Kruskal-Walli’s → Kruskal-Wallis
  • Sever-disconnection → Severe disconnection
  • “In partial fulfilment for” → In partial fulfilment of
  • “List of abbreviation” → List of abbreviations
  • “Table of content” → Table of contents

Typography issues

  • Font use is mostly Times New Roman, but embedded text includes other fonts such as Nirmala UI and Tunga, likely due to Kannada content. That is acceptable for Kannada, but English text should use one approved font consistently.
  • The document uses several font sizes, including 14 pt, 16 pt, 18 pt, 20 pt, and 22 pt. This is acceptable for title pages, but chapter text, headings, captions, and tables need a defined consistent format.
  • Margins are currently 1 inch on all sides. Confirm this against institutional requirements.
  • The document has 384 empty paragraphs, apparently used to force vertical spacing. Replace these with:
    • Page breaks
    • Paragraph spacing
    • Proper section breaks
  • Automated review found no usable Heading styles and no automatically generated TOC field.

9. Recommended final workflow

  1. Obtain the official college thesis template or formatting guideline.
  2. Make one clean master copy of the thesis.
  3. Correct all title, name, designation, and institutional-name inconsistencies.
  4. Apply real Word heading styles.
  5. Reformat chapters, tables, figures, captions, and annexures.
  6. Repair the Kannada documents from verified originals.
  7. Rewrite and proofread Introduction, Review of Literature, Methodology, Discussion, and Conclusion.
  8. Complete the post-hoc analysis for significant Kruskal-Wallis findings.
  9. Validate all interpretation cutoffs and cite their source.
  10. Rebuild the reference list using a citation manager.
  11. Regenerate the Table of Contents, List of Tables, and List of Figures.
  12. Conduct a final spelling, grammar, reference, and page-number check after converting the final document to PDF.
The thesis has a workable research framework, but the formatting, language, references, annexures, and interpretation need revision before final submission.

check only content whether title aim and objective and result with discussion is matching check the content properrly

Reading File
Reading File
Reading File
Reading File
Reading File
Finding Sources
Searching PubMed

corpus callosum bimanual coordination children

Searching the Web

STROBE cross-sectional study results discussion associations causal inference reporting guideline

Running Command

python3 - <<'PY' from docx import Document p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx'; d=Document(p) for a,b,label in [(175,215,'AIM_OBJECTIVES'),(380,472,'RESULTS'),(470,521,'DISCUSSION')]: print('\n###',label) for n,x in enumerate(d.paragraphs,1): if a<=n<=b and x.text.strip(): print(f'{n}: {" ".join(x.text.split())}') PY

Content matching check: Title, aim/objectives, results, and discussion

Overall verdict

The core content is mostly aligned, but there are important gaps and a few claims that are stronger than the results support.
ComponentMatch statusMain finding
Title and aimMostly matchesBoth address task-based assessment of interhemispheric function in healthy school-aged children
Objectives and resultsPartly matchesPrimary objective is covered; secondary “normative reference values” objective is only partially achieved
Results and discussionMostly matchesDiscussion follows the reported results, but some interpretations are too strong
Conclusion and resultsPartly matchesConclusion overstates diagnostic/screening value and causation

1. Title vs aim and objectives

Title

“Behavioral Assessment of Interhemispheric Connection in School-Aged Children Using Task-Based Measures: A Cross-Sectional Study”

Aim

“To assess interhemispheric connectivity typically in healthy school-aged children using task-based observational measures.”

Primary objective

“To assess and profile interhemispheric connectivity in healthy school-aged children using task-based measures - a tactile intermanual transfer, bimanual coordination and bimanual tapping.”

Assessment

These are broadly matching. The title, aim, and primary objective all focus on:
  • Healthy school-aged children
  • Interhemispheric connectivity/function
  • Behavioural or task-based assessment
  • Tactile intermanual transfer
  • Bimanual tapping
  • Bimanual coordination

Needed correction

The title uses “interhemispheric connection”, whereas the aim/objectives use “interhemispheric connectivity.”
Use one term throughout. “Interhemispheric connectivity” is more appropriate academically, but it must be used cautiously because the study measures behavioural task performance, not connectivity directly through imaging or electrophysiology.
A more precise title would be:
Behavioural Assessment of Interhemispheric Function in Healthy School-Aged Children Using Task-Based Measures: A Cross-Sectional Study
or:
Task-Based Assessment of Interhemispheric Transfer and Bimanual Coordination in Healthy School-Aged Children: A Cross-Sectional Study
“Interhemispheric function,” “transfer,” and “coordination” match your actual measures more directly than “connection.”

2. Aim/objectives vs results

Primary objective

To assess and profile interhemispheric connectivity using tactile intermanual transfer, bimanual coordination, and bimanual tapping.

Is it answered in Results?

Yes.
The Results chapter reports:
  • Tactile intramanual and intermanual accuracy
  • Transfer Index
  • Bimanual tapping, including in-phase accuracy, anti-phase accuracy, and Gap Score
  • Bimanual coordination scores
  • Distribution of performance categories
  • Age-related associations
  • Sex-wise comparisons
Therefore, the primary objective is adequately covered.

Important wording correction

The study does not directly assess the anatomical or physiological “integrity” of the corpus callosum or interhemispheric connectivity. It assesses task-based behavioural indicators associated with interhemispheric sensory transfer and motor coordination.
For example, statements such as:
“The tactile intermanual task is used to assess the integrity of the posterior section of the corpus callosum.”
are too strong unless there is neuroimaging or validated diagnostic evidence.
Better wording:
“The tactile intermanual transfer task was used as a behavioural measure of interhemispheric sensory transfer.”
Similarly:
“Bimanual tapping was used as a behavioural measure of bimanual motor coordination and interhemispheric motor control.”

Secondary objective

“To establish preliminary normative reference values for task-based measures of interhemispheric connectivity in the children population.”

Is it answered in Results?

Partially.
You report:
  • Median
  • IQR
  • Range
  • Performance distributions
  • Age-related correlations
  • Comparisons across three age bands
  • Age-specific figures from 6 to 12 years
This gives preliminary descriptive reference data.

But it is not fully achieved as written

To claim “normative reference values,” the study should ideally have:
  • A representative sample
  • Balanced age-wise recruitment
  • Adequate sample size in each individual age group
  • Clearly presented age-specific reference values
  • Percentiles or reference intervals, such as 5th, 25th, 50th, 75th, and 95th percentiles
  • A validated protocol and cutoffs
  • Confirmation that the reference sample represents the intended population
Your age groups are uneven:
  • 6-8 years: 59 participants
  • 9-10 years: 35 participants
  • 11-12 years: 26 participants
Some individual ages have small samples, for example 9-year-olds. Therefore, the thesis can state that it provides preliminary descriptive values, but should not claim final or formal normative values.

Better secondary objective

“To describe preliminary age-related reference values for task-based measures of interhemispheric sensory transfer and bimanual coordination in healthy school-aged children.”

Better result statement

“The study provides preliminary descriptive age-related values for the assessed task-based measures. Larger representative samples are required before these values can be considered normative reference standards.”

3. Additional age and sex analyses

The Results and Discussion include:
  • Correlation of age with task measures
  • Comparison across age groups
  • Comparison between boys and girls

Is this matching with objectives?

Age analysis is relevant, because the secondary objective is to establish preliminary age-related reference values.
However, sex comparison is not explicitly mentioned in the stated objectives. It appears in the Results and Discussion, but not in the aim/objectives section.

Required correction

Either add a secondary objective:
“To compare task-based measures of interhemispheric sensory transfer and bimanual coordination between male and female participants.”
Or label sex analysis clearly as an exploratory analysis in Methods and Results.
Do not present sex as a central study aim unless it is listed as an objective.

4. Results vs discussion

Areas that match well

The discussion generally follows the results appropriately:
ResultDiscussion alignment
High median Transfer Index, 87.5% in normal categoryDiscusses generally high tactile transfer performance
In-phase accuracy higher than anti-phase accuracyDiscusses expected greater difficulty of anti-phase tapping
Low median Gap ScoreDiscusses generally good bimanual independence
Age positively associated with Transfer Index and bimanual coordinationDiscusses age-related pattern across sensory and motor measures
Gap Score negatively associated with ageDiscusses reduced difference between in-phase and anti-phase performance with age
No statistically significant sex differenceDiscussion reports no significant sex effects
Condition 1 had no variabilityDiscussion acknowledges it as a methodological limitation
So, the main discussion is connected to the reported results.

5. Results-discussion inconsistencies that must be corrected

A. Three age bands versus seven individual age groups

Tables compare:
  • 6-8 years
  • 9-10 years
  • 11-12 years
But figures and figure descriptions compare:
  • Age 6
  • Age 7
  • Age 8
  • Age 9
  • Age 10
  • Age 11
  • Age 12
This is not inherently wrong, but the analysis must be clearly separated.

Problem

The Results report different Kruskal-Wallis values:
  • Table 5.8: Transfer Index, H = 21.069, p < 0.001
  • Figure 8 narrative: Transfer Index, H = 24.153, p < 0.001
And:
  • Table 5.8: Bimanual coordination, H = 19.342, p < 0.001
  • Figure 9 narrative: Bimanual coordination, H = 19.660, p = 0.003
These may represent analyses using:
  • Three age bands in the table
  • Seven individual ages in the figures
But this is not explained. It currently appears inconsistent.

Required correction

State clearly:
“Table 5.8 compares the three predefined age bands: 6-8, 9-10, and 11-12 years. Figures 8 and 9 present exploratory analyses across the seven individual age groups from 6 to 12 years; therefore, their Kruskal-Wallis statistics differ from those in Table 5.8.”
If the figures are not based on a separate, clearly planned analysis, use only one approach throughout.

B. Discussion says all major measures improved significantly with age

The Discussion opens with:
“All major task-based measures - tactile transfer, bimanual tapping, and bimanual coordination - improved significantly with age…”
This is too broad.
The Results show significant age associations for:
  • Transfer Index
  • TIA intermanual accuracy
  • Overall bimanual coordination
  • Bimanual coordination Condition 2
  • Bimanual coordination Condition 3
  • Gap Score, negatively correlated with age
However:
  • Not every individual measure is reported as significant.
  • Condition 1 had no variability and could not be analysed.
  • In-phase and anti-phase tapping accuracy are not clearly reported as separately age-associated in the provided results.

Better wording

“Age was significantly associated with Transfer Index, TIA intermanual accuracy, Gap Score, overall bimanual coordination, and selected bimanual coordination conditions. Condition 1 showed no variability and was not analysed inferentially.”

C. “Age is the primary factor” is too strong

The Discussion and overall interpretation state:
“Age, rather than sex, is the primary factor associated with sensory and motor interhemispheric performance…”
Your study shows:
  • Significant associations with age
  • No statistically significant differences by sex
But it does not prove that age is the “primary factor.” Other variables were not fully assessed, for example:
  • Handedness
  • Motor experience
  • School environment
  • Cognitive ability
  • Attention
  • Socioeconomic background
  • Familiarity with tasks
  • Developmental variation

Better wording

“In this sample, age was significantly associated with several sensory-transfer and bimanual-coordination measures, whereas no statistically significant sex differences were observed.”
This is accurate and directly supported by your results.

D. Causal language does not match a cross-sectional study

Your Discussion and Conclusion repeatedly use:
  • “improved with age”
  • “developmental change”
  • “maturing corpus callosum”
  • “increasing efficiency”
  • “children improve their brain communication”
A cross-sectional study can show an association between age and performance. It cannot show within-child improvement, maturation, or causation. Cross-sectional research can report associations but is only suggestive of causation, as noted in Kaplan & Sadock’s Comprehensive Textbook of Psychiatry and the STROBE reporting guidance.

Use these instead

AvoidUse
improved with agewas positively associated with age
age-related improvementage-related differences
increasing corpus callosum efficiencypattern consistent with developmental differences
children improve brain communicationolder children showed higher performance on selected measures
maturation caused better performancefindings may reflect developmental processes, but causality cannot be inferred

6. Discussion claims that are not fully supported by the results

Screening claim

The Discussion says the tasks may be suitable for school or community screening, and children with lower scores could be flagged for further evaluation.
This claim is not adequately supported by the study because:
  • Only typically developing children were studied.
  • No clinical comparison group was included.
  • No sensitivity/specificity analysis was done.
  • No diagnostic cutoff validation was done.
  • Some cutoffs overlap or need validation.
  • Reference values are preliminary, not formal norms.

Replace with

“These brief behavioural tasks may be useful for future research on age-related interhemispheric performance. Their role in screening or clinical assessment requires validation in larger representative samples and relevant clinical populations.”

“Normal,” “mild reduction,” and “impairment” labels

Your Results classify children as:
  • Normal transfer
  • Mild reduction
  • Moderate impairment
  • Severe impairment
  • Significant coordination deficit
This is risky unless all categories are directly taken from a validated published scoring protocol.
Since the sample is healthy school-aged children, calling some participants “impaired” can be inappropriate without diagnostic validation.

Better wording, unless validated cutoffs exist

  • Higher-score category
  • Intermediate-score category
  • Lower-score category
  • Lower task performance
  • Reduced performance relative to the study-defined threshold
If the cutoffs are validated and cited, retain them but clearly name the reference source.

7. Conclusion vs objectives and results

The conclusion has the correct broad theme: age-associated differences in task performance.
But it includes claims that exceed the data:
“This information can be helpful for physiotherapists in detecting cases of poor brain interhemispheric communication such as ADHD, autism, coordination problems.”
This does not match the study design or results. The study did not assess children with ADHD, autism, developmental coordination disorder, or corpus-callosum disorders.

Better conclusion

This cross-sectional study described task-based measures of tactile intermanual transfer, bimanual tapping, and bimanual coordination in 120 healthy children aged 6-12 years. Age was significantly associated with several sensory-transfer and bimanual-coordination measures, while no statistically significant sex differences were observed in the reported outcomes. The findings provide preliminary descriptive data on task performance across the school-age range. However, because the study was cross-sectional and involved only typically developing children, the results cannot establish causal developmental change, diagnostic cutoffs, or clinical screening utility. Larger longitudinal and validation studies are needed before clinical or screening application.

Final judgment

Content coherence: Good, but needs scientific tightening

The thesis has a clear central line:
Task-based sensory-transfer and bimanual-motor measures were assessed in healthy children aged 6-12 years, and several measures showed significant associations with age.
This line is appropriately reflected in the title, aim, results, and most of the discussion.

Essential corrections before final submission

  1. Use one term consistently: preferably interhemispheric function or interhemispheric transfer and coordination, not direct “connectivity.”
  2. Revise the secondary objective from “establish normative reference values” to describe preliminary age-related values.
  3. Add sex comparison as an objective or state it was exploratory.
  4. Explain why age analyses use both three age bands and seven individual ages.
  5. Resolve the different Kruskal-Wallis statistics in tables versus figures.
  6. Replace causal language with association-based language.
  7. Remove or soften claims of corpus-callosum integrity, screening, diagnosis, and detection of ADHD/autism.
  8. State that results provide preliminary descriptive information, not validated normative or diagnostic thresholds.

now say what to change is it anything to change in this and also check introduction section then wt u do u say about this study whether is it good check everthing content properly address me what is missing awt to add and wht is wrong so need to chnage

Reading File
Finding Sources
Searching PubMed

corpus callosum children interhemispheric transfer

Searching the Web

STROBE cross-sectional studies discussion key results objectives limitations interpretation

Running Command

python3 - <<'PY' from docx import Document p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx'; d=Document(p) for a,b,label in [(132,178,'INTRODUCTION'),(179,214,'AIM_OBJECTIVES'),(269,382,'METHODS'),(383,471,'RESULTS'),(472,560,'DISCUSSION_CONCLUSION')]: print('\n### '+label) for n,x in enumerate(d.paragraphs,1): if a<=n<=b and x.text.strip(): print(f'{n}: {" ".join(x.text.split())}') PY

Straight answer

The study idea is good and relevant for physiotherapy. It has a clear population, uses simple non-invasive tasks, and examines an important developmental area: tactile intermanual transfer and bimanual coordination in children aged 6-12 years.
However, the current thesis content needs major scientific editing before submission. The main issue is not the topic. The issue is that some statements claim more than the study can prove.
Your study can validly say:
“In this sample of typically developing children, age was associated with performance on selected task-based measures of tactile intermanual transfer and bimanual coordination.”
It cannot yet say:
“The tests assess corpus-callosum integrity,”
“the study established normative values,”
“these tests can detect ADHD/autism,” or
“age caused improved brain communication.”
This is a cross-sectional study. It measures children at one time point. It can show associations and age-group differences, not direct maturation, causation, diagnosis, or anatomical connectivity. This is also consistent with STROBE cross-sectional reporting guidance, which asks for cautious interpretation linked to objectives and study limitations.

1. What is good about the study

These parts are good and should remain:
  1. Relevant topic
    • Interhemispheric sensory transfer and bimanual coordination are relevant to child development and physiotherapy.
  2. Appropriate age range
    • Children aged 6-12 years are a reasonable group for observing age-related differences in motor and sensory task performance.
  3. Clear participant group
    • The study uses typically developing school-aged children.
  4. Useful task battery
    • Tactile intermanual transfer, bimanual tapping, and bimanual coordination are logically related measures.
    • Using both sensory and motor tasks is a strength.
  5. Reasonable main findings
    • Older age was associated with better Transfer Index, better tactile intermanual accuracy, higher bimanual coordination scores, and lower Gap Score.
    • No significant sex differences were found.
    • These findings are plausible and internally coherent.
  6. Good acknowledgement of some limitations
    • The thesis already notes that post-hoc analysis is incomplete.
    • It also acknowledges that Condition 1 showed no variability.
    • These are important and should remain in the final limitations section.

2. The most important things to change

A. Change the central wording of the study

Current title

“Behavioral Assessment of Interhemispheric Connection in School-Aged Children Using Task-Based Measures: A Cross-Sectional Study”

Problem

“Interhemispheric connection” or “connectivity” can imply that you measured actual brain connectivity or corpus-callosum structure. You did not use MRI, diffusion tensor imaging, EEG, or evoked potentials. You used behavioural tasks.

Better title options

Best option:
Task-Based Assessment of Interhemispheric Transfer and Bimanual Coordination in Typically Developing School-Aged Children: A Cross-Sectional Study
Alternative:
Behavioural Assessment of Interhemispheric Function in Typically Developing School-Aged Children: A Cross-Sectional Study
This is more accurate and fully matches your methods and results.

B. Change the aim and objectives

Current aim

“To assess interhemispheric connectivity typically in healthy school-aged children using task-based observational measures.”

Problems

  • Grammar is incorrect.
  • “Connectivity” is too strong.
  • “Typically” is placed incorrectly.
  • “Healthy” and “typically developing” should not be randomly interchanged. Select one term and use it throughout.

Replace with

To assess task-based measures of interhemispheric sensory transfer and bimanual coordination in typically developing school-aged children.

Current primary objective

“To assess and profile interhemispheric connectivity in healthy school-aged children using task-based measures - a tactile intermanual transfer, bimanual coordination and bimanual tapping.”

Replace with

To describe tactile intermanual transfer, bimanual tapping, and bimanual coordination performance in typically developing children aged 6-12 years.

Current secondary objective

“To establish preliminary normative reference values for task-based measures of interhemispheric connectivity in the children population.”

Problem

Your sample is not sufficiently representative or balanced to establish true norms. You have convenience sampling, unequal age-group sizes, and some individual age groups have small numbers.

Replace with

To generate preliminary age-related descriptive values for tactile intermanual transfer, bimanual tapping, and bimanual coordination measures.

Missing objective: age analysis

Your Results and Discussion focus strongly on age, but age is not clearly stated as an objective.

Add this objective

To examine the association between age and task-based measures of tactile intermanual transfer and bimanual coordination.

Missing objective: sex analysis

You perform a male-female comparison, but it is not listed as an objective.
Either remove the sex analysis or add:
To explore whether task-based performance differs between male and female participants.
Use the word explore because your study may not be powered primarily for a sex-based comparison.

3. Introduction: what is wrong and what to add

Your introduction has the right overall sequence

It goes from:
  1. Brain hemispheres and corpus callosum
  2. Child development
  3. Handedness
  4. Task-based assessment
  5. Tactile transfer
  6. Bimanual tapping
  7. Bimanual coordination
  8. Research gap
  9. Rationale for the study
That structure is good.
But it needs substantial rewriting for accuracy, flow, and scientific caution.

A. Claims that should be softened or removed

Current statement

“Without such connectivity, each hemisphere functions independently, causing chaos and confusion in behavior.”

Why it is wrong

This is dramatic, imprecise, and not appropriate for an academic thesis. Even people with partial callosal abnormalities do not simply have “chaos and confusion in behavior.”

Replace with

“The corpus callosum contributes to the integration of sensory, motor, and cognitive information between the cerebral hemispheres. Altered interhemispheric communication may affect the coordination of selected cognitive and motor functions.”

Current statement

“The corpus callosum develops rapidly at age 3 to 10 years…”

Problem

This is overly simplified and needs an accurate source. Corpus-callosum development continues beyond this period and varies by region.

Replace with

“The corpus callosum undergoes prolonged structural and functional development throughout childhood and adolescence, with developmental changes varying across callosal regions.”

Current statement

“The period of ages 6 to 12 is critical in terms of interconnectivity and synchronisation…”

Problem

“Critical” is too strong unless you clearly define why and provide a strong source.

Replace with

“The school-age period is relevant for studying age-related differences in interhemispheric sensory transfer and bimanual motor coordination because these functions continue to develop during childhood.”

Current statement

“The transfer of touch information from one hand to another can only occur through the corpus callosum.”

Problem

This is too absolute. Task performance can be influenced by many factors, including attention, language, tactile perception, memory, task comprehension, motor skill, visual strategies, and neural pathways beyond the corpus callosum.

Replace with

“Tactile intermanual transfer tasks are commonly used as behavioural measures that may reflect interhemispheric transfer of tactile information, with the corpus callosum having an important role in this process.”

Current statement

“The children with various disorders such as corpus callosum agenesis, brain injury, cerebral palsy and down syndrome fail this task.”

Problem

This is inaccurate and stigmatizing. Children with these conditions can show varied performance. Not every child “fails” the task.

Replace with

“Children with neurological or neurodevelopmental conditions may demonstrate altered performance on interhemispheric transfer and bimanual coordination tasks; however, performance varies by diagnosis, severity, age, and task characteristics.”

Current statement

“Children with ADHD… have high ITA, similar to the outcomes of underdeveloped corpus callosum…”

Problem

This makes an unsupported causal link between ADHD, task performance, and “underdeveloped corpus callosum.” Do not write this unless your cited source directly proves it.

Better wording

“Some studies have reported differences in motor coordination and white-matter characteristics among children with ADHD. These findings should not be interpreted as evidence that a behavioural tapping result directly indicates corpus-callosum abnormality.”

B. Remove unnecessary material

Poffenberger paradigm section

You have a long section on the Poffenberger paradigm and crossed-uncrossed difference, but you did not use that task in your methodology.
This creates confusion.

What to do

Either:
  • Remove the full Poffenberger paragraph, or
  • Reduce it to one or two sentences in the literature review only.
Do not give it a major place in the Introduction if it was not measured in your study.

C. What is missing in the Introduction

Your introduction needs four specific paragraphs near the end.

1. A clear problem statement

Add a paragraph like:
Although several studies have examined interhemispheric transfer and bimanual coordination in children, the available evidence is heterogeneous with respect to task protocols, age groupings, scoring methods, and outcome measures. There is limited descriptive information on the performance of typically developing Indian school-aged children using a combined battery of tactile intermanual transfer, bimanual tapping, and bimanual coordination tasks.

2. A precise research gap

Your current wording:
“there are only few handfuls of behavioural assessments tool…”
This is grammatically weak and unclear.

Replace with

“Limited research has described age-related performance on multiple task-based measures of interhemispheric sensory transfer and bimanual coordination in typically developing Indian school-aged children. In particular, there is limited local descriptive data using a combined task battery.”
Do not claim there is “no research” unless you have thoroughly documented that.

3. Study rationale

Add:
“Task-based assessment may be feasible in school settings because it is non-invasive, low cost, and does not require neuroimaging equipment. However, behavioural task performance should be interpreted as an indicator of functional performance rather than as a direct measure of corpus-callosum structure or brain connectivity.”
This is one of the most important sentences missing from the thesis.

4. Brief study purpose before aim

Add immediately before the Aim section:
“Therefore, this cross-sectional study was undertaken to describe task-based tactile intermanual transfer, bimanual tapping, and bimanual coordination performance in typically developing children aged 6-12 years, and to examine their association with age.”

4. Methodology: important content problems

A. Your sample-size explanation needs correction

Current wording says:
“The sample size was calculated the formula for estimation of single mean…”
But the actual formula is not shown.

Add:

  • Formula used
  • Expected standard deviation source
  • Precision source
  • Why 120 was selected rather than 60
  • Whether the study was powered for age-group or sex comparisons

Important issue

You write that “potential attrition” was considered. In a cross-sectional one-time assessment, attrition is usually not the correct term unless children were enrolled but did not complete testing. Use:
“To allow for incomplete assessments and planned subgroup analyses…”

B. Clarify inclusion and exclusion

You must clearly state:
  • What “typically developing” means
  • How neurological, developmental, psychiatric, sensory, and musculoskeletal conditions were screened
  • Whether children had normal or corrected vision
  • Whether children had normal tactile sensation in both hands
  • Whether children with uncorrected hearing impairment were excluded
  • Whether children receiving occupational therapy, physiotherapy, or neurodevelopmental intervention were excluded
  • How mixed-handedness was defined and handled
  • Why mixed-handed children were excluded, if they were

C. Methods use future tense even though the study is completed

Examples:
  • “will be used”
  • “will be set”
  • “participant sits”
Change all to past tense:
  • “was used”
  • “was set”
  • “the participant was seated”

D. Your tasks need reproducible detail

A reader should be able to repeat the task exactly. Add:
  • Number of practice trials
  • Number of formal trials
  • Whether task order was the same for all children
  • Whether right/left hand order was randomized
  • Whether the examiner gave standardized verbal instructions
  • Whether rest periods were allowed
  • How incorrect answers were handled
  • Whether tasks were video recorded or scored live
  • Whether one examiner assessed all participants
  • Examiner training
  • Inter-rater or intra-rater reliability, if available
  • How distraction, fatigue, or non-completion was managed

E. Restore missing formulas

The document shows:
LQ = ×100
It must be:
Laterality Quotient = [(R - L) / (R + L)] × 100
Also clearly define:
  • R = number of right-hand preferences
  • L = number of left-hand preferences
The Transfer Index formula must also be displayed clearly. It is currently described but not fully shown.

F. Cutoffs need evidence

You use categories such as:
  • Normal transfer
  • Mild reduction
  • Moderate impairment
  • Severe impairment
  • Significant coordination deficit
  • Intact callosal function
These need an original validated source.
If there is no validated source, remove clinical labels such as “impairment,” “severe,” and “intact callosal function.”
Use neutral labels:
  • Higher performance
  • Intermediate performance
  • Lower performance
  • Study-defined category

5. Results: what must change

A. Do not repeat every value in both table and paragraph

For example, the demographic section repeats the same age and sex figures twice.
Keep one concise paragraph:
“The study included 120 children: 59 (49.2%) were aged 6-8 years, 35 (29.2%) were aged 9-10 years, and 26 (21.7%) were aged 11-12 years. There were 68 boys (56.7%) and 52 girls (43.3%).”
Then let the table show the full details.

B. Results should not explain causes

In Results, statements like:
“This indicates effective sensory information transfer between the hands.”
should be minimized. Results should mainly present data.
Better:
“The median Transfer Index was 94.43% (IQR 87.31-100.00), with values ranging from 47.05% to 100.00.”
Interpretation should move to Discussion.

C. Major inconsistency: three age groups versus seven ages

You report:

Table 5.8

Comparison across three age groups:
  • 6-8 years
  • 9-10 years
  • 11-12 years
But Figures 7, 8, and 9 analyze individual ages:
  • 6, 7, 8, 9, 10, 11, 12 years
This is acceptable only if clearly stated as two different analyses.

You must add a note:

“The primary age-group analysis compared the prespecified age bands of 6-8, 9-10, and 11-12 years. Figures presenting individual ages are descriptive or exploratory and should not be interpreted as the primary inferential analysis.”

D. Major inconsistency: Kruskal-Wallis values differ

You have different values for the same outcomes:
OutcomeTable valueFigure narrative value
Transfer IndexH = 21.069H = 24.153
Bimanual coordinationH = 19.342H = 19.660
These cannot simply remain unexplained.

What to do

  1. Check the original statistical output.
  2. Decide which analysis is primary.
  3. Correct any wrong figure description.
  4. State whether one result is based on three age bands and the other on seven individual ages.
  5. Make all text, tables, and figures match exactly.
This is a high-priority correction.

E. Complete post-hoc analysis

Your Kruskal-Wallis tests identify significant differences between age groups, but the thesis itself says post-hoc pairwise analyses have not been completed.
You should perform:
  • Dunn’s post-hoc pairwise test
  • Bonferroni or Holm adjustment for multiple comparisons
Then report which groups differ:
  • 6-8 vs 9-10
  • 6-8 vs 11-12
  • 9-10 vs 11-12
Without post-hoc testing, you can only say:
“At least one age group differed from another.”
You cannot state exactly where the difference occurred.

6. Discussion: what to change

Keep

  • Age was associated with several outcomes.
  • No statistically significant sex differences were found.
  • Tactile and motor tasks gave a broadly consistent age-related pattern.
  • Condition 1 had no variability.
  • Cross-sectional design limits causal interpretation.
  • Post-hoc comparisons are still needed.

Change these claims

Do not say

“All major task-based measures improved significantly with age.”

Say

“Age was significantly associated with Transfer Index, tactile intermanual accuracy, Gap Score, overall bimanual coordination, and selected bimanual coordination conditions.”
This is more exact.

Do not say

“Age is the primary factor associated with interhemispheric performance.”
You did not test all possible factors.

Say

“Within this sample, age was significantly associated with several task-based outcomes, whereas no statistically significant sex differences were observed.”

Do not say

“The findings reflect genuine maturation of the corpus callosum.”
You did not measure corpus-callosum maturation.

Say

“The findings are consistent with age-related developmental differences in task performance reported in prior literature. The present behavioural data do not directly demonstrate structural maturation of the corpus callosum.”

Do not say

“Children with mild reduction or moderate impairment can be flagged for neurodevelopmental evaluation.”
This turns an exploratory study into a screening study without validation.

Say

“Further studies should evaluate the reliability, age-specific reference ranges, and clinical validity of these tasks before they are considered for screening or diagnostic use.”

7. Conclusion: rewrite completely

Your current conclusion is not scientifically safe because it claims:
  • Brain communication improved due to age
  • The corpus callosum became more efficient
  • The study established reference values
  • Physiotherapists can detect ADHD/autism using these tasks
Those claims are beyond the study.

Use this revised conclusion

This cross-sectional study described task-based tactile intermanual transfer, bimanual tapping, and bimanual coordination performance in 120 typically developing children aged 6-12 years. Age was significantly associated with Transfer Index, tactile intermanual accuracy, Gap Score, and selected bimanual coordination measures. No statistically significant sex differences were observed in the reported task outcomes.
The findings provide preliminary descriptive age-related data on selected behavioural measures of interhemispheric sensory transfer and bimanual coordination in this sample. Because the study used a cross-sectional design, convenience sampling, and behavioural tasks without neuroimaging or clinical comparison groups, it cannot establish causal developmental change, corpus-callosum integrity, diagnostic cutoffs, or screening utility. Larger longitudinal studies with representative samples, validated task protocols, reliability testing, and clinical comparison groups are needed.

8. What is missing from the thesis

Add these sections or information if not already present:
  1. Research question
    • Example:
    “How do task-based tactile intermanual transfer, bimanual tapping, and bimanual coordination measures vary with age in typically developing children aged 6-12 years?”
  2. Hypotheses
    • Example:
    “Older age will be associated with higher tactile transfer and bimanual coordination scores and lower Gap Scores.”
    “No significant sex differences are expected in the primary task-based outcomes.”
  3. Operational definitions Define:
    • Interhemispheric sensory transfer
    • Transfer Index
    • Intramanual accuracy
    • Intermanual accuracy
    • Gap Score
    • Bimanual coordination score
    • Typically developing child
  4. Reliability/validity of each task
    • Provide source and evidence for the task protocol, scoring system, and cutoff values.
    • If no validation exists, say it is an adapted/investigator-developed procedure.
  5. Confounding factors Discuss possible effects of:
    • Handedness
    • Age
    • Sex
    • Attention
    • Task comprehension
    • Fine-motor skill
    • Fatigue
    • School environment
    • Prior experience with tasks
  6. Generalizability statement
    • The results apply mainly to the sampled schools and children.
    • Do not generalize directly to all Indian children.
  7. Funding/conflict-of-interest statement
    • State whether the study had funding and whether the researchers had conflicts of interest.

Final assessment

Is this a good study?

Yes, it is a good undergraduate physiotherapy project topic with useful preliminary findings.

Is it ready in its present content form?

No. It needs revision before final submission.

What is the main message after revision?

In typically developing children aged 6-12 years, several behavioural measures of tactile intermanual transfer and bimanual coordination were associated with age. The study provides preliminary descriptive data, but it does not establish brain connectivity, diagnostic criteria, or validated screening norms.

Priority order for revision

  1. Correct title, aim, and objectives.
  2. Rewrite the final part of the Introduction to include a clear gap and cautious rationale.
  3. Remove direct claims about corpus-callosum integrity and brain connectivity.
  4. Correct methods, task descriptions, formulas, and scoring cutoffs.
  5. Resolve all inconsistent statistics between tables and figures.
  6. Perform post-hoc age-group comparisons.
  7. Rewrite Discussion and Conclusion using association-based language.
  8. Remove diagnostic and screening claims about ADHD, autism, or neurological disorders.

Check the Results and Discussion line by line

Reading File
Below is a line-by-line content review of the Results and Discussion sections. The paragraph numbers refer to the Word document paragraph numbers, not printed page numbers.
I am checking:
  • whether the sentence is scientifically correct
  • whether it belongs in Results or Discussion
  • whether it matches your data
  • what exactly should be changed

A. RESULTS SECTION: line-by-line review

Paragraph 392: “Demographic Characteristics”

Keep.
This is an appropriate first subheading.

Paragraph 393: “Table 5.1: Demographic characteristics of the study participants”

Keep, but correct spacing.
Change:
Table 5. 1: Demographic characteristics of the study participants
To:
Table 5.1: Demographic characteristics of the study participants

Paragraph 394

“Among the 120 participants, 59 (49.2%) belonged to the 6-8-year age group...”
Keep, but paragraph 395 repeats the same information.
Use this as the single demographic result paragraph:
The study included 120 participants. Of these, 59 (49.2%) were aged 6-8 years, 35 (29.2%) were aged 9-10 years, and 26 (21.7%) were aged 11-12 years. There were 68 boys (56.7%) and 52 girls (43.3%).

Paragraph 395

This paragraph repeats all information from paragraph 394 and adds unnecessary interpretation:
“This demographic distribution was important for subsequent analysis...”
Delete this full paragraph.
Why:
  • It is repetitive.
  • It is not necessary to explain why demographic data were collected.
  • Results should report the data, not justify the study design.

Paragraph 398

“To assess sensory transfer using the Tactile Intermanual Transfer Index”
Change the wording.
Suggested replacement:
Tactile Intermanual Transfer Performance
This is a Results subheading, not an objective statement.

Paragraph 399

“Table 5.2: Descriptive statistics of tactile intermanual transfer performance”
Keep.
This is appropriate.

Paragraph 400

This paragraph reports:
  • intramanual accuracy
  • intermanual accuracy
  • Transfer Index
Mostly correct, but too interpretive for Results.
Problematic sentence:
“Overall, the findings indicate generally good tactile intermanual transfer ability among the children, supporting effective sensory information transfer between the two hands.”
This suggests the study directly proves effective brain transfer. It does not.

Replace the final two sentences with:

The median Transfer Index was 94.43% (IQR: 87.31-100.00), with values ranging from 47.05% to 100.00%. These findings show variation in tactile intermanual task performance within the study sample.
This is safer and belongs in Results.

Paragraph 401

“Distribution of participants according to Tactile Intermanual Transfer Index”
Keep, but use title case consistently:
Distribution of Participants According to Tactile Intermanual Transfer Index

Paragraph 402

“Table 5.3: Distribution of participants according to Tactile Intermanual Transfer Index”
Keep.

Paragraph 403

This paragraph is mostly a description of Table 5.3.

Problems

  1. It calls categories “normal,” “mild reduction,” “moderate impairment,” and “severe impairment.”
  2. These categories should only be retained if they come from a validated published protocol.
  3. The phrase “severe impairment” is not appropriate for typically developing children unless there is a validated clinical cutoff.
  4. It overinterprets lower scores as definite functional impairment.

Change this sentence:

“Overall, the findings indicate that tactile intermanual transfer was generally well developed among the study participants.”
To:
“Most participants had Transfer Index scores of 80% or higher, whereas 15 participants had scores below 80%.”

Better full final paragraph

Of the 120 participants, 105 (87.5%) had a Transfer Index score of 80% or higher. Twelve participants (10.0%) had scores between 60% and 79%, and three participants (2.5%) had scores between 40% and 59%. No participant had a score below 40%. The distribution of Transfer Index scores is presented in Table 5.3.
This reports facts without assigning unvalidated clinical labels.

Paragraph 404

“To assess motor coordination using bimanual tapping and bimanual coordination”
Change.
Suggested replacement:
Bimanual Tapping and Bimanual Coordination Performance

Paragraph 405

“Descriptive statistics of bimanual tapping performance”
Keep.

Paragraph 406

“Table 5.4 Descriptive statistics of bimanual tapping performance”
Keep, but add a colon.
Table 5.4: Descriptive Statistics of Bimanual Tapping Performance

Paragraph 407

This paragraph reports in-phase accuracy, anti-phase accuracy, and Gap Score.
The data reporting is good, but the interpretation is too strong for Results.
Problematic sentence:
“The relatively low median Gap Score indicates that the majority of children maintained a small difference between the two conditions, reflecting good bimanual independence.”
Use:
“The median Gap Score was 4.00% (IQR: 1.00-6.60), with values ranging from 0% to 50%.”
Then move interpretation to Discussion.

Better final Results sentence

In-phase accuracy was higher than anti-phase accuracy in the study sample, and Gap Score values showed individual variability.

Paragraph 408

“Distribution of participants according to bimanual tapping Gap Score”
Keep, but capitalize consistently.
Distribution of Participants According to Bimanual Tapping Gap Score

Paragraph 409

“Table 5.5 Distribution of participants according to bimanual tapping Gap Score”
Keep, but add a colon.

Paragraph 410

Problems

  1. It uses clinical labels:
    • “good bimanual independence”
    • “moderate coordination difficulty”
    • “significant coordination deficit”
  2. It says:
    “marked impairment in bimanual tapping was uncommon”
    This is too strong, unless validated clinical cutoffs exist.

Replace the last three sentences with:

Most participants had a Gap Score below 15% (n = 113, 94.2%). Five participants (4.2%) had scores between 15% and 30%, and two participants (1.7%) had scores above 30%. The distribution of Gap Scores is presented in Table 5.5.
Use “higher Gap Score” rather than “deficit” unless your cutoff source is validated.

Paragraph 411

“Descriptive statistics of bimanual coordination performance”
Keep.

Paragraph 412

“Table 5.6 Descriptive statistics of bimanual coordination performance”
Keep, but this table requires careful checking.

Important missing content

There is no proper Results paragraph immediately after Table 5.6 describing:
  • Condition 1
  • Condition 2
  • Condition 3
  • Overall bimanual coordination score
  • mean, median, IQR, and range
  • how Condition 1 was handled

Add a paragraph after Table 5.6

Table 5.6 presents descriptive statistics for the bimanual coordination task. Condition 1 showed no variability among participants and was therefore described only. The median score for Condition 2 was 50.00, whereas the median score for Condition 3 was 40.00. The median overall bimanual coordination score was 53.33. The distribution of scores showed variability across participants, particularly for the more complex coordination conditions.
Check all actual table values before inserting this paragraph.

Paragraph 414

“Age-Related Analysis”
Keep.

Paragraph 415

“Because the secondary objective is to establish preliminary normative reference values, age-related analysis of all task-based measures was performed.”

Change this.

Your results do not establish formal normative values. They provide preliminary descriptive age-related data.
Use:
Age-related analyses were performed to describe the association between age and task-based measures of tactile intermanual transfer and bimanual coordination.

Paragraph 416

“Correlation between age and task-based measures of interhemispheric connectivity”

Change.

Use:
Association Between Age and Task-Based Measures
Avoid “interhemispheric connectivity,” because this study does not directly measure neuroanatomical or functional connectivity.

Paragraph 417

“Table 5.7 Correlation between age and task-based measures of interhemispheric connectivity”

Change to:

Table 5.7: Correlation Between Age and Task-Based Measures of Interhemispheric Function
Or more precise:
Table 5.7: Correlation Between Age and Task-Based Sensory Transfer and Bimanual Coordination Measures

Paragraph 418

This is an important Results paragraph.

Good parts

The numerical reporting is clear:
  • Transfer Index: ρ = 0.428, p < 0.001
  • TIA intermanual accuracy: ρ = 0.543, p < 0.001
  • Overall coordination: ρ = 0.388, p < 0.001
  • Gap Score: ρ = −0.245, p = 0.007

Problems

  1. “Higher age was associated with better tactile intermanual transfer performance.”
    • “Better” is interpretive.
  2. “Increasing age and improved overall bimanual coordination.”
    • This implies a developmental causal effect.
  3. “Age-related improvement.”
    • This is too strong for cross-sectional data.

Replace the full paragraph with:

Spearman’s rank correlation analysis showed a significant positive association between age and Transfer Index (ρ = 0.428, p < 0.001), TIA intermanual accuracy (ρ = 0.543, p < 0.001), overall bimanual coordination score (ρ = 0.388, p < 0.001), bimanual coordination Condition 2 (ρ = 0.318, p < 0.001), and Condition 3 (ρ = 0.337, p < 0.001). Age showed a significant negative association with Gap Score (ρ = −0.245, p = 0.007). These results indicate that age was associated with several tactile intermanual transfer and bimanual coordination measures in the study sample.
This is accurate and avoids causation.

Paragraph 419

“Comparison of task-based measures between age groups”
Keep.

Paragraph 420

“Table 5.8 Comparison of task-based measures between age groups”
Keep, but add colon.

Paragraph 421

Problems

  1. “Kruskal-Walli’s test” is wrong.
    • Correct: Kruskal-Wallis test
  2. “The null hypothesis ... was rejected” is not needed in a clinical thesis Results section.
  3. “Age appears to be an important factor associated with the development...” implies causation and developmental trajectory.
  4. The paragraph correctly says post-hoc analyses are needed, but this should be addressed by actually completing them before submission.

Replace with:

The Kruskal-Wallis test showed significant differences across the three age groups for Transfer Index (H = 21.069, p < 0.001), TIA intermanual accuracy (H = 31.053, p < 0.001), Gap Score (H = 7.710, p = 0.021), overall bimanual coordination score (H = 19.342, p < 0.001), and Bimanual Coordination Condition 3 (H = 12.799, p = 0.002). These findings indicate that at least one age group differed from another for these outcomes. Post-hoc pairwise comparisons are required to identify the specific age groups that differed.

Paragraph 422

“Comparison of major task-based measures between males and females”
Keep.
Use “sex” rather than “gender” if the document reports biological male/female categories.

Paragraph 423

“Table 5.9 Comparison of major task-based measures between males and females”
Keep, but add colon.

Paragraph 424

Good

The numerical p-values are reported clearly.

Problems

  • It uses “gender” rather than “sex.”
  • It repeats “no significant difference” many times.
  • The last sentence is acceptable but should remain cautious.

Replace with:

Mann-Whitney U test showed no statistically significant difference between boys and girls for Transfer Index (p = 0.717), Gap Score (p = 0.661), overall bimanual coordination score (p = 0.080), TIA intermanual accuracy (p = 0.631), or Bimanual Coordination Condition 3 (p = 0.590). Thus, no statistically significant sex differences were observed for the reported task-based outcomes in this sample.

Paragraphs 425 and 427: sex-distribution figure

Paragraph 425 is adequate:
“Figure 5 illustrates the sex distribution…”
Paragraph 427 is not appropriate in Results.

Delete paragraph 427

Why:
  • It speculates why boys were more represented.
  • It claims the ratio is “typical” without presenting evidence.
  • It says the sample was balanced, but it is not perfectly balanced.
  • It discusses future research.
  • It belongs neither in Results nor Discussion in its present form.
Keep only:
Figure 5 shows that 68 participants (56.7%) were boys and 52 (43.3%) were girls.

Paragraphs 428 and 430: age-distribution figure

Paragraph 428 is adequate.
Paragraph 430 is too long and repetitive.

Replace paragraph 430 with:

Figure 6 shows the distribution of participants across individual ages from 6 to 12 years. The largest groups were children aged 10 years (n = 25), 7 years (n = 24), and 8 years (n = 23), whereas the smallest group was children aged 9 years (n = 10).

Delete:

“Middle age of the group is 9 years, and range of middle age is from 7 to 10 years.”
This is statistically unclear and should not be included.

Paragraphs 432 to 436: age-specific median figure

Paragraph 432

Good overall, but avoid saying scores “increased” as though the same children were followed over time.
Replace:
“Transfer Index generally increased with age…”
With:
“Higher median Transfer Index values were observed in older age groups…”
Replace:
“Bimanual Coordination also demonstrated an overall increase…”
With:
“Median bimanual coordination scores were generally higher in older age groups…”

Paragraph 433

Too vague.
Replace with:
Figure 7 presents age-specific median Transfer Index, Gap Score, and bimanual coordination values for children aged 6-12 years.

Paragraph 434

Change:
“children become older, they learn…”
To:
“Higher median Transfer Index values were observed in the older age groups.”

Paragraph 435

Change:
“despite overall improvement…”
To:
“Although median bimanual coordination scores were generally higher in older age groups, the pattern was not strictly linear across individual ages.”

Paragraph 436

This is contradictory.
Earlier, the Results show Gap Score was significantly negatively associated with age, p = 0.007. But here you state:
“the score does not change with age because…”
This is incorrect.

Replace paragraph 436 with:

Median Gap Score values showed variation across individual age groups. Correlation analysis demonstrated a weak but statistically significant negative association between age and Gap Score (ρ = −0.245, p = 0.007), indicating lower Gap Scores among older participants in the study sample.

Paragraphs 439 and 440: Transfer Index figure

Major problem

Table 5.8 reports:
H = 21.069, p < 0.001
Figure 8 text reports:
H = 24.153, p < 0.001
You must check the raw analysis. Both cannot represent the exact same analysis.
They may be:
  • Table 5.8: three age bands
  • Figure 8: seven individual age groups
If so, explain it clearly.

Revised paragraph 439

Figure 8 shows a positive association between age and Transfer Index (Spearman’s ρ = 0.428, p < 0.001). The figure also presents exploratory differences across individual ages from 6 to 12 years. The Kruskal-Wallis statistic shown in the figure should be verified against the original statistical output and clearly distinguished from the three age-band analysis reported in Table 5.8.

Paragraph 440

The wording is repetitive and causal.
Replace with:
Figure 8 displays individual Transfer Index values plotted against age. Although higher Transfer Index values were generally observed among older participants, considerable variability was present within each age group. This indicates that age was associated with, but did not fully explain, variation in Transfer Index scores.

Paragraphs 444 to 449: Bimanual Coordination figure

Major problem

Table 5.8 reports:
H = 19.342, p < 0.001
Figure 9 reports:
H = 19.660, p = 0.003
Again, verify the raw output and explain whether this is based on three age bands or seven individual ages.

Replace paragraphs 444-449 with:

Figure 9 shows a positive association between age and overall bimanual coordination score (Spearman’s ρ = 0.388, p < 0.001). Higher scores were generally observed among older participants; however, substantial variability was present within each age group. The Kruskal-Wallis statistic reported in the figure should be verified and clearly distinguished from the age-band analysis reported in Table 5.8. These findings indicate an association between age and bimanual coordination performance in the present sample.

B. DISCUSSION SECTION: line-by-line review

Paragraph 482

“All major task-based measures ... improved significantly with age…”

Change this.

Not every individual measure was reported as significant, and “improved with age” is causal language.

Replace with:

This study assessed task-based tactile intermanual transfer, bimanual tapping, and bimanual coordination in 120 typically developing children aged 6-12 years. Age was significantly associated with Transfer Index, TIA intermanual accuracy, Gap Score, overall bimanual coordination, and selected bimanual coordination conditions. No statistically significant sex differences were observed for the reported outcomes.

Paragraph 484

Keep the first sentence.

It correctly states that younger children were over-represented.

Change this sentence:

“the split was close enough to support a reasonably powered comparison of sex-related differences.”
You cannot claim the study was adequately powered for sex comparison unless you did a power calculation specifically for sex effects.
Use:
“Boys constituted 56.7% and girls 43.3% of the sample. The sex comparison should be interpreted cautiously because the study was not specifically powered to detect small sex-related differences.”

Also soften:

“supports the appropriateness of this age range for detecting behavioural change linked to callosal maturation.”
Use:
“supports the relevance of this age range for examining age-related differences in behavioural task performance.”

Paragraph 486: sensory transfer

Good

  • It compares intramanual and intermanual accuracy.
  • It discusses Transfer Index.
  • It relates findings to prior literature.

Change this phrase:

“information relayed ... via the corpus callosum typically incurs some loss…”
This is too definite and needs direct evidence for the exact task.
Use:
“The lower intermanual than intramanual accuracy may reflect the greater task demands involved when tactile information must be integrated across hands.”

Change:

“87.5% of children fell into the normal transfer category.”
Use:
“87.5% of participants had Transfer Index scores of 80% or higher.”

Change:

“small subgroup ... mild-to-moderate reductions in transfer efficiency”
Use:
“A subgroup of 15 participants had Transfer Index scores below 80%. The clinical meaning of these lower scores cannot be determined from this study alone.”
This is important.

Paragraph 488: bimanual tapping

Good

The comparison of in-phase and anti-phase performance is relevant.

Change this claim:

“the narrowing gap ... reflects maturing interhemispheric inhibitory control rather than a general motor-skill effect alone.”
This is too strong. Your study cannot separate inhibitory control from motor skill, attention, task familiarity, or comprehension.
Use:
“The lower anti-phase accuracy and the small median Gap Score are consistent with the greater coordination demands of anti-phase tapping. However, the present study cannot determine the specific neural mechanisms underlying this difference.”

Paragraph 490: bimanual coordination task

Important corrections

Current:
“Performance ... declined across conditions of increasing demand, from a median of 50.00 in Condition 2 to 40.00 in Condition 3…”
You can say this only if higher score always represents better performance and the two conditions are scored on comparable scales. Confirm this.
Current:
“reflects a genuine, well-documented developmental process rather than a task-specific artefact.”
This is too strong.

Replace final sentence with:

“These findings are consistent with prior developmental literature on bimanual coordination. However, because the present study is cross-sectional and Condition 1 showed no variability, the findings should be interpreted as age-related differences in task performance rather than direct evidence of a specific maturational mechanism.”

Paragraph 493: relationship with age

Good

This paragraph appropriately notes the need for post-hoc analysis.

Change:

“Age correlated significantly with every major outcome…”
This is not exactly correct. Not every outcome, including Condition 1, was analyzable.
Use:
“Age was significantly associated with several major outcomes, including Transfer Index, TIA intermanual accuracy, Gap Score, overall bimanual coordination, and selected bimanual coordination conditions.”

Keep:

“post-hoc pairwise comparisons have not yet been performed…”
But ideally do not submit until they are completed.

Paragraph 495: relationship with sex

Major issue

Current:
“strengthens the case that age, rather than sex, is the primary developmental driver…”
This is too strong.
Also:
“supports the use of a single, sex-combined normative scheme differentiated only by age.”
This is not supported because you have not established norms.

Replace the final two sentences with:

“Within this sample, no statistically significant sex differences were observed for the reported task outcomes. These findings do not establish that sex has no effect in the wider population and do not justify sex-combined normative standards without further validation in larger representative samples.”

Paragraph 497: comparison with literature

Problems

  1. “sits comfortably within the existing literature” is informal.
  2. “corpus callosum is not considered functionally mature until around age ten” is too absolute.
  3. “sensory and motor interhemispheric measures move together developmentally” is too causal for cross-sectional data.

Replace the final two sentences with:

“The findings are broadly consistent with previous reports of age-related differences in tactile transfer and bimanual coordination during childhood. In the present cross-sectional sample, several sensory and motor task measures were associated with age; however, longitudinal studies are required to determine within-child developmental trajectories.”

Paragraph 499: integration and interpretation

Problems

Current:
“performance ... are shaped primarily by age rather than sex”
Not supported.
Current:
“early signs of atypical interhemispheric development”
Not supported because no clinical diagnosis or follow-up exists.

Replace the paragraph with:

Overall, the findings indicate that age was associated with several sensory-transfer and bimanual-coordination outcomes in this sample, whereas no statistically significant sex differences were observed. Considerable individual variability was present within age groups. Lower scores should not be interpreted as evidence of atypical neurodevelopment because the study did not include clinical diagnostic assessment, longitudinal follow-up, or validated screening thresholds.

Paragraph 501: clinical and educational implications

This paragraph needs major rewriting.

Current:
“they may be well suited to school-based or community screening…”
This is not supported.
Current:
“Children ... could be flagged for closer monitoring…”
This is not appropriate without validated screening thresholds.

Replace the entire paragraph with:

The tasks used in this study were brief and non-invasive and may be feasible for future research in school settings. However, the present findings do not establish the reliability, diagnostic accuracy, age-specific reference intervals, or clinical validity required for screening use. Future studies should evaluate these tasks in larger representative samples and in children with relevant neurodevelopmental conditions before considering clinical or school-based screening applications.

Paragraph 503: strengths and limitations

Good points already present

  • Cross-sectional design limitation
  • Condition 1 showed no variability
  • No post-hoc comparison
  • Cutoff overlap

Add these missing limitations

  1. Convenience sampling
  2. Unequal age-group sizes
  3. No neuroimaging or neurophysiological confirmation
  4. No inter-rater/test-retest reliability analysis
  5. Possible effects of attention, language, task comprehension, fatigue, and fine-motor skill
  6. No clinical comparison group
  7. No formal normative sample

Add this paragraph after current limitations:

Additional limitations include convenience sampling, unequal representation across age groups, and the absence of neuroimaging or electrophysiological measures. Performance on behavioural tasks may also be influenced by attention, comprehension, fine-motor ability, task familiarity, and fatigue. The study did not include a clinical comparison group or reliability testing; therefore, its findings should be considered preliminary descriptive data rather than normative or diagnostic standards.

Paragraph 505: overall interpretation

Current statement

“Age, rather than sex, is the primary factor…”
Change.

Current statement

“all improving significantly across the 6-12-year range.”
Change.

Current statement

“provide a promising, age-referenced foundation for future normative and clinical use…”
Too strong.

Replace entire paragraph with:

In this cross-sectional sample of typically developing children aged 6-12 years, age was significantly associated with several task-based measures of tactile intermanual transfer and bimanual coordination, whereas no statistically significant sex differences were observed. These findings provide preliminary descriptive information on age-related patterns of task performance. They do not establish causal developmental change, corpus-callosum integrity, normative reference standards, diagnostic thresholds, or clinical screening utility.

C. Most urgent corrections before final submission

  1. Complete the post-hoc pairwise analysis after Kruskal-Wallis testing.
  2. Verify contradictory Kruskal-Wallis values in Table 5.8 versus Figures 8 and 9.
  3. Remove “normal,” “impairment,” “deficit,” and “intact callosal function” labels unless supported by a validated scoring source.
  4. Use “associated with age,” not “improved with age.”
  5. Do not claim corpus-callosum integrity or brain connectivity was measured.
  6. Remove screening, ADHD, autism, and diagnostic claims.
  7. Add a proper results paragraph for Table 5.6.
  8. Remove repetitive figure explanations and demographic repetition.
  9. Use “sex,” not “gender,” if comparing male and female biological categories.
  10. State that the findings are preliminary descriptive data, not formal normative values.
The Results section has usable data and a logical sequence. The main revision needed is to make the wording more scientific, less repetitive, and more cautious.

Rewrite the result and Discussion section in thesis-ready language

Below is a thesis-ready rewrite of the Results and Discussion sections based on the data currently present in your thesis.
Before pasting it into the thesis:
  1. Verify the values in Table 5.6 against your original statistical output.
  2. Complete post-hoc pairwise comparisons after the significant Kruskal-Wallis tests.
  3. Verify the different Kruskal-Wallis values shown in Table 5.8 and Figures 8-9.
  4. Insert your approved Vancouver citation numbers in the Discussion where indicated by author names.

CHAPTER V

RESULTS

5.1 Demographic Characteristics of the Participants

A total of 120 typically developing children aged 6-12 years participated in the study. Of these, 59 participants (49.2%) were aged 6-8 years, 35 participants (29.2%) were aged 9-10 years, and 26 participants (21.7%) were aged 11-12 years. The sample included 68 boys (56.7%) and 52 girls (43.3%). The demographic characteristics of the participants are presented in Table 5.1.

5.2 Tactile Intermanual Transfer Performance

Table 5.2 presents the descriptive statistics for tactile intermanual transfer performance. The median intramanual accuracy was 95.00% (IQR: 75.00-100.00), with a range of 20.00%-100.00%. The median intermanual accuracy was 85.00% (IQR: 65.00-100.00), with a range of 15.00%-100.00%.
The median Transfer Index was 94.43% (IQR: 87.31-100.00), with values ranging from 47.05% to 100.00%. These findings demonstrate variation in tactile intermanual transfer performance among the participants.

5.3 Distribution of Transfer Index Scores

Table 5.3 shows the distribution of participants according to Transfer Index scores. Of the 120 participants, 105 children (87.5%) had a Transfer Index of 80% or higher. Twelve children (10.0%) had Transfer Index scores between 60% and 79%, whereas three children (2.5%) had scores between 40% and 59%. No participant had a Transfer Index score below 40%.

5.4 Bimanual Tapping Performance

Table 5.4 presents the descriptive statistics for bimanual tapping performance. The median in-phase tapping accuracy was 100.00% (IQR: 96.45-100.00), with values ranging from 66.60% to 100.00%. The median anti-phase tapping accuracy was 94.00% (IQR: 90.00-100.00), with values ranging from 50.00% to 100.00%.
The median Gap Score was 4.00% (IQR: 1.00-6.60), with a range of 0%-50%. In-phase accuracy was higher than anti-phase accuracy in the study sample, and Gap Score values showed individual variation.

5.5 Distribution of Bimanual Tapping Gap Scores

Table 5.5 presents the distribution of Gap Scores among the participants. A total of 113 children (94.2%) had a Gap Score below 15%. Five children (4.2%) had Gap Scores between 15% and 30%, while two children (1.7%) had Gap Scores above 30%.

5.6 Bimanual Coordination Performance

Table 5.6 presents the descriptive statistics for bimanual coordination performance. Condition 1 showed no variability among the participants and was therefore described only. The median score for Condition 2 was 50.00, whereas the median score for Condition 3 was 40.00. The median overall bimanual coordination score was 53.33.
The bimanual coordination scores showed variation between participants, particularly in the more complex coordination conditions.
Important: Confirm these values against Table 5.6 before final submission. If the scoring direction differs between conditions, do not compare the median values directly without explaining the scoring method.

5.7 Association Between Age and Task-Based Measures

Spearman’s rank correlation analysis was performed to examine the association between age and task-based measures of tactile intermanual transfer and bimanual coordination. Age showed a significant positive association with Transfer Index (ρ = 0.428, p < 0.001), tactile intermanual intermanual accuracy (ρ = 0.543, p < 0.001), overall bimanual coordination score (ρ = 0.388, p < 0.001), bimanual coordination Condition 2 (ρ = 0.318, p < 0.001), and bimanual coordination Condition 3 (ρ = 0.337, p < 0.001).
Age showed a significant negative association with Gap Score (ρ = -0.245, p = 0.007). Thus, older age was associated with lower Gap Score values in the present sample.
These findings indicate that age was significantly associated with several measures of tactile intermanual transfer and bimanual coordination. The correlation results are presented in Table 5.7.

5.8 Comparison of Task-Based Measures Across Age Groups

Table 5.8 presents the comparison of task-based measures across the three predefined age groups: 6-8 years, 9-10 years, and 11-12 years. The Kruskal-Wallis test showed statistically significant differences among age groups for Transfer Index (H = 21.069, p < 0.001), tactile intermanual intermanual accuracy (H = 31.053, p < 0.001), Gap Score (H = 7.710, p = 0.021), overall bimanual coordination score (H = 19.342, p < 0.001), and bimanual coordination Condition 3 (H = 12.799, p = 0.002).
These results indicate that at least one age group differed from the other groups for the reported outcomes. Post-hoc pairwise comparisons are required to identify the specific age groups between which statistically significant differences occurred.

5.9 Comparison of Task-Based Measures by Sex

Table 5.9 presents the comparison of task-based measures between boys and girls using the Mann-Whitney U test. No statistically significant difference was observed between boys and girls for Transfer Index (p = 0.717), Gap Score (p = 0.661), overall bimanual coordination score (p = 0.080), tactile intermanual intermanual accuracy (p = 0.631), or bimanual coordination Condition 3 (p = 0.590).
Thus, no statistically significant sex differences were observed in the reported task-based measures in the present sample.

5.10 Figures

Figure 5: Sex Distribution of Participants

Figure 5 presents the sex distribution of the participants. Of the 120 participants, 68 (56.7%) were boys and 52 (43.3%) were girls.

Figure 6: Age Distribution of Participants

Figure 6 presents the distribution of participants across individual ages from 6 to 12 years. The largest groups were children aged 10 years (n = 25), 7 years (n = 24), and 8 years (n = 23). The smallest group was children aged 9 years (n = 10).

Figure 7: Age-Specific Median Task Performance

Figure 7 presents the median Transfer Index, Gap Score, and overall bimanual coordination score across individual ages from 6 to 12 years. Higher median Transfer Index and bimanual coordination scores were generally observed in the older age groups. Gap Score values showed variation across the individual age groups.

Figure 8: Association Between Age and Transfer Index

Figure 8 shows a significant positive association between age and Transfer Index (Spearman’s ρ = 0.428, p < 0.001). Although higher Transfer Index values were generally observed among older participants, considerable variation was present within each age group.

Figure 9: Association Between Age and Bimanual Coordination

Figure 9 shows a significant positive association between age and overall bimanual coordination score (Spearman’s ρ = 0.388, p < 0.001). Higher scores were generally observed among older participants, although individual variation was present within each age group.
Note: Check whether the Kruskal-Wallis values in Figures 8 and 9 were calculated for the seven individual ages or the three age bands. They must not conflict with Table 5.8.

CHAPTER VI

DISCUSSION

6.1 Overview of Findings

The present cross-sectional study assessed tactile intermanual transfer, bimanual tapping, and bimanual coordination in 120 typically developing children aged 6-12 years. The findings showed that age was significantly associated with Transfer Index, tactile intermanual intermanual accuracy, Gap Score, overall bimanual coordination score, and selected bimanual coordination conditions. No statistically significant sex differences were observed for the reported task-based outcomes.
The findings provide preliminary descriptive information regarding age-related patterns of tactile intermanual transfer and bimanual coordination performance in the study sample.

6.2 Tactile Intermanual Transfer Performance

The median intramanual accuracy was higher than the median intermanual accuracy. This finding suggests that the tactile transfer task was more demanding when information needed to be integrated across hands than when the task was performed within the same hand. The median Transfer Index was 94.43%, indicating that most children in the present sample achieved high scores on this task.
A total of 105 participants (87.5%) had Transfer Index scores of 80% or higher, whereas 15 participants had scores below 80%. The lower scores observed in some participants should not be interpreted as evidence of neurological impairment or altered corpus-callosum integrity. Task performance may be influenced by several factors, including attention, comprehension, tactile perception, language ability, familiarity with the objects, and fine-motor performance.
The present findings are broadly consistent with previous developmental research indicating that tactile intermanual transfer performance changes across childhood. However, because this study used behavioural task measures and did not include neuroimaging or neurophysiological assessment, it cannot directly determine the structural or functional status of the corpus callosum.

6.3 Bimanual Tapping Performance

The median in-phase tapping accuracy was 100.00%, whereas the median anti-phase tapping accuracy was 94.00%. This indicates that participants generally performed better during in-phase tapping than during anti-phase tapping. The median Gap Score was 4.00%, suggesting that the difference between in-phase and anti-phase performance was small for most children.
In-phase bimanual movements are generally less demanding than anti-phase movements because they require similar actions to be performed simultaneously by both hands. In contrast, anti-phase movements require greater coordination between the two hands and may involve greater demands on timing, attention, motor planning, and inhibition of mirror movements.
Although the present findings are consistent with previous studies reporting age-related changes in bimanual coordination, the study cannot identify the specific neurological mechanism responsible for the observed performance differences. Therefore, the findings should be interpreted as behavioural differences in task performance rather than as direct evidence of corpus-callosum maturation or interhemispheric inhibition.

6.4 Bimanual Coordination Performance

The bimanual coordination task assessed performance across conditions with different coordination demands. Condition 1 showed no variability among participants and was therefore not included in inferential analysis. This finding suggests that Condition 1 may have been too easy for the children in the present sample or may not have been sufficiently sensitive to distinguish between levels of performance.
The median score for Condition 2 was 50.00, while the median score for Condition 3 was 40.00. The overall bimanual coordination score had a median value of 53.33. These findings indicate variability in performance across participants and conditions.
The observed variation may reflect differences in age, fine-motor ability, task comprehension, attention, motor experience, and familiarity with the task. Since the study did not include neuroimaging, electrophysiological testing, or detailed motor assessments, the results cannot be attributed to a single neural mechanism.

6.5 Association Between Age and Task Performance

Age showed a significant positive association with Transfer Index, tactile intermanual intermanual accuracy, overall bimanual coordination score, bimanual coordination Condition 2, and bimanual coordination Condition 3. Age also showed a significant negative association with Gap Score. These findings suggest that older children in the sample tended to show higher performance on several tactile intermanual transfer and bimanual coordination measures and lower Gap Scores.
The results are consistent with previous research reporting age-related differences in sensory transfer and bimanual motor performance during childhood. Developmental changes in motor planning, sensory integration, attention, practice, task familiarity, and neural development may all contribute to this pattern.
However, this was a cross-sectional study. Therefore, the observed associations cannot demonstrate within-child improvement over time or establish that age directly caused differences in performance. Longitudinal studies are needed to determine how individual children change across development.

6.6 Comparison Across Age Groups

Significant differences were observed among the three age groups for Transfer Index, tactile intermanual intermanual accuracy, Gap Score, overall bimanual coordination score, and bimanual coordination Condition 3. These findings support the presence of age-related differences in several task-based measures.
However, significant Kruskal-Wallis test results indicate only that at least one age group differed from the others. Post-hoc pairwise comparisons are necessary to identify the specific age groups that differed. Until these analyses are completed, it should not be stated that one particular age group performed significantly better or worse than another age group.

6.7 Sex Differences

No statistically significant differences were found between boys and girls for Transfer Index, Gap Score, tactile intermanual intermanual accuracy, overall bimanual coordination score, or bimanual coordination Condition 3. This suggests that sex was not significantly associated with the reported outcomes in the present sample.
However, the absence of a statistically significant difference does not prove that no sex differences exist in the wider population. The study was not specifically designed or powered to detect small sex-related differences. Larger studies with balanced recruitment across age and sex groups are needed before drawing firm conclusions.

6.8 Clinical and Educational Implications

The tasks used in this study were brief, non-invasive, and feasible to administer in a school setting. They may be useful for future research examining age-related patterns of tactile intermanual transfer and bimanual coordination in children.
However, the current findings do not establish diagnostic thresholds, screening accuracy, or clinical reference standards. The results should not be used to diagnose ADHD, autism spectrum disorder, developmental coordination disorder, corpus-callosum abnormalities, or other neurodevelopmental conditions.
Before these tasks can be considered for clinical or school-based screening, future studies should establish test-retest reliability, inter-rater reliability, age-specific reference intervals, sensitivity, specificity, and clinical validity in children with relevant neurodevelopmental conditions.

6.9 Strengths and Limitations

A strength of the study was the assessment of sensory transfer and bimanual motor coordination within the same sample of typically developing school-aged children. The study included three task-based measures: tactile intermanual transfer, bimanual tapping, and bimanual coordination. This provided a broad description of task performance across sensory and motor domains.
The study also has several limitations. First, the cross-sectional design allows the identification of associations with age but cannot establish developmental trajectories or causal relationships. Second, convenience sampling was used, which may limit the generalizability of the findings to all school-aged children. Third, the age groups were not equally represented, with a larger proportion of children in the 6-8-year group.
Fourth, the study did not include neuroimaging, electrophysiological measures, or a clinical comparison group. Therefore, behavioural task performance cannot be interpreted as a direct measure of corpus-callosum structure, interhemispheric connectivity, or neurological impairment. Fifth, task performance may have been influenced by attention, comprehension, language, fine-motor ability, fatigue, motivation, and familiarity with the task.
Sixth, bimanual coordination Condition 1 showed no variability and could not be analysed inferentially. The task protocol for this condition should be reviewed before future use. Finally, post-hoc pairwise comparisons were not completed for the significant Kruskal-Wallis findings. These analyses should be performed before final submission of the thesis.

6.10 Overall Interpretation

In this cross-sectional sample of typically developing children aged 6-12 years, age was significantly associated with several behavioural measures of tactile intermanual transfer and bimanual coordination. No statistically significant sex differences were observed for the reported task-based outcomes.
The study provides preliminary descriptive data on age-related patterns of task performance in the sampled children. It does not establish causal developmental change, direct measures of corpus-callosum integrity, formal normative reference values, diagnostic cutoffs, or screening utility. Further longitudinal studies using larger representative samples and validated task protocols are required.

say properly what to remove wt to add properly detailed check

Reading File
Below is the exact editing plan for your Results and Discussion. Follow it as a checklist. I am separating it into:
  • Remove
  • Keep
  • Add
  • Replace with
  • Check before final submission
Do not simply add more text. First remove repetition and unsupported claims, then add only the required content.

1. RESULTS SECTION: What to remove

Remove Paragraph 395 completely

It repeats the demographic information already given in paragraph 394.

Keep only this:

The study included 120 participants. Of these, 59 (49.2%) were aged 6-8 years, 35 (29.2%) were aged 9-10 years, and 26 (21.7%) were aged 11-12 years. There were 68 boys (56.7%) and 52 girls (43.3%).
Do not repeat the same age and sex distribution in another paragraph.

Remove Paragraph 427 completely

This paragraph begins:
“This chart presents the distribution of number of males and females in the study…”

Why remove it

It contains unsupported speculation:
  • “The ratio ... is quite typical”
  • “It may be caused by parental consent...”
  • “This allows increasing the reliability...”
  • “Future research ... may reveal sex differences...”
These statements are not based on your data and do not belong below a demographic figure.

Keep only:

Figure 5 shows the sex distribution of the participants. Of the 120 participants, 68 (56.7%) were boys and 52 (43.3%) were girls.

Remove Paragraph 430 completely and replace it with a short version

Current paragraph is repetitive and includes an incorrect statement:
“Middle age of the group is 9 years, and range of middle age is from 7 to 10 years.”
This is not statistically meaningful.

Replace with:

Figure 6 presents the distribution of participants across individual ages from 6 to 12 years. The largest groups were children aged 10 years (n = 25), 7 years (n = 24), and 8 years (n = 23), whereas the smallest group was children aged 9 years (n = 10).

Remove Paragraph 433 completely

Current:
“This chart depicts the impact of age on the results of performing such tasks…”

Why remove

  • It is vague.
  • It says “impact of age,” which implies causation.
  • It repeats what the figure already shows.

Remove Paragraphs 434, 435, and 436 in their current form

Why

They use incorrect causal claims:
  • “children become older, they learn…”
  • “overall improvement”
  • “Gap Score does not change with age”
The last statement conflicts with your own correlation result:
Gap Score: ρ = −0.245, p = 0.007
That means there was a statistically significant negative association between age and Gap Score. Therefore, you cannot say it “does not change with age.”

Replace all three paragraphs with:

Figure 7 presents age-specific median values for Transfer Index, Gap Score, and overall bimanual coordination. Higher median Transfer Index and bimanual coordination scores were generally observed in older age groups, although the pattern was not strictly linear across all individual ages. Gap Score values also varied across age groups. Correlation analysis showed a weak but statistically significant negative association between age and Gap Score (ρ = −0.245, p = 0.007).

Remove Paragraph 440 in its current form

Current paragraph includes:
“people become better at performing transfer tasks…”

Why remove

This is causal and informal. Your study did not follow the same children over time.

Replace with:

Figure 8 displays individual Transfer Index values across the age range of 6-12 years. Higher Transfer Index values were generally observed among older participants; however, considerable variation was present within each age group. This indicates that age was associated with, but did not fully explain, the variation in Transfer Index scores.

Remove Paragraphs 445 to 449 in their current form

Why remove

They are repetitive and use causal language:
  • “increase in age is accompanied by growth”
  • “bimanual coordination is generally improved”
  • “age may be used as an index”
  • “might be explained by…”
The last sentence is speculation. You did not measure motor experience, task familiarity, or fine-motor ability.

Replace all of them with:

Figure 9 displays individual overall bimanual coordination scores across the age range of 6-12 years. Higher scores were generally observed among older participants, although considerable variability was present within each age group. These findings indicate that age was associated with overall bimanual coordination performance in the present sample.

2. RESULTS SECTION: What to change

A. Change all headings that say “interhemispheric connectivity”

You did not measure connectivity through MRI, EEG, or DTI. You used behavioural tasks.

Change:

Correlation between age and task-based measures of interhemispheric connectivity

To:

Association Between Age and Task-Based Measures of Interhemispheric Function
Or, more precise:
Association Between Age and Tactile Intermanual Transfer and Bimanual Coordination Measures

B. Change all clinical labels unless you have a published validation source

Current terms include:
  • Normal transfer
  • Mild reduction
  • Moderate impairment
  • Severe impairment
  • Significant coordination deficit
  • Intact callosal function
  • Severe disconnection

Why this is a problem

Your study assessed typically developing children. Without a validated clinical scoring protocol, you cannot diagnose:
  • impairment
  • disconnection
  • callosal dysfunction
  • coordination deficit

What to do

If the categories are from a published validated source, add a citation in the table footnote:
“Score categories were based on [Author, Year].”
If you do not have a source, change table labels as follows:
Current wordingSafer wording
Normal transferTransfer Index ≥80%
Mild reductionTransfer Index 60-79%
Moderate impairmentTransfer Index 40-59%
Severe impairmentTransfer Index <40%
Good bimanual independenceGap Score <15%
Moderate coordination difficultyGap Score 15-30%
Significant coordination deficitGap Score >30%
Intact callosal functionRemove completely
Severe disconnectionRemove completely
Then write only the numbers and score categories in Results. Discuss their meaning cautiously in Discussion.

C. Change Paragraph 400

Remove this wording:
“Overall, the findings indicate generally good tactile intermanual transfer ability among the children, supporting effective sensory information transfer between the two hands.”

Replace with:

The median Transfer Index was 94.43% (IQR: 87.31-100.00), with values ranging from 47.05% to 100.00%. The results indicate variability in tactile intermanual transfer task performance within the study sample.

D. Change Paragraph 403

Remove:
“Overall, the findings indicate that tactile intermanual transfer was generally well developed…”

Replace the full paragraph with:

Of the 120 participants, 105 (87.5%) had a Transfer Index score of 80% or higher. Twelve participants (10.0%) had scores between 60% and 79%, and three participants (2.5%) had scores between 40% and 59%. No participant had a Transfer Index score below 40%. The distribution of Transfer Index scores is presented in Table 5.3.

E. Change Paragraph 407

Remove:
“reflecting good bimanual independence”

Replace the final sentences with:

The median Gap Score was 4.00% (IQR: 1.00-6.60), with values ranging from 0% to 50%. In-phase accuracy was higher than anti-phase accuracy in the study sample, and Gap Score values varied between participants.

F. Change Paragraph 410

Remove:
“marked impairment in bimanual tapping was uncommon within this group…”

Replace with:

A total of 113 participants (94.2%) had a Gap Score below 15%, five participants (4.2%) had scores between 15% and 30%, and two participants (1.7%) had scores above 30%. The distribution of Gap Scores is presented in Table 5.5.

G. Add a missing paragraph after Table 5.6

Your Table 5.6 is not properly explained in the Results section.

Add this after Table 5.6:

Table 5.6 presents the descriptive statistics for bimanual coordination performance. Condition 1 showed no variability among participants and was therefore described only. The median score for Condition 2 was 50.00, the median score for Condition 3 was 40.00, and the median overall bimanual coordination score was 53.33. The interpretation of scores should be confirmed according to the original task protocol because the scoring direction and category cutoffs must be clearly stated.
Before inserting it: Verify the median values and the scoring direction from your actual Table 5.6.

H. Correct Paragraph 418

Remove:

“higher age was associated with better…”
“increasing age and improved…”
“age-related improvement…”

Replace the full paragraph with:

Spearman’s rank correlation analysis showed a significant positive association between age and Transfer Index (ρ = 0.428, p < 0.001), TIA intermanual accuracy (ρ = 0.543, p < 0.001), overall bimanual coordination score (ρ = 0.388, p < 0.001), bimanual coordination Condition 2 (ρ = 0.318, p < 0.001), and bimanual coordination Condition 3 (ρ = 0.337, p < 0.001). Age showed a significant negative association with Gap Score (ρ = −0.245, p = 0.007). These results indicate that age was associated with several tactile intermanual transfer and bimanual coordination measures in the present sample.
Correction: Do not write “tactile intermanual intermanual accuracy.” The correct term is either:
  • Tactile intermanual accuracy, or
  • TIA intermanual accuracy
Use one consistently throughout the thesis.

I. Correct Paragraph 421

Remove:

“Kruskal-Walli’s test”
“the null hypothesis ... was rejected”
“age appears to be an important factor associated with the development…”

Replace with:

The Kruskal-Wallis test showed statistically significant differences across the three predefined age groups for Transfer Index (H = 21.069, p < 0.001), TIA intermanual accuracy (H = 31.053, p < 0.001), Gap Score (H = 7.710, p = 0.021), overall bimanual coordination score (H = 19.342, p < 0.001), and Bimanual Coordination Condition 3 (H = 12.799, p = 0.002). These findings indicate that at least one age group differed from another for these measures. Post-hoc pairwise comparisons are required to identify the specific age groups that differed.

J. Correct Paragraph 424

Use sex, not gender, because you are comparing boys and girls.

Replace full paragraph with:

Mann-Whitney U test showed no statistically significant differences between boys and girls for Transfer Index (p = 0.717), Gap Score (p = 0.661), overall bimanual coordination score (p = 0.080), TIA intermanual accuracy (p = 0.631), or Bimanual Coordination Condition 3 (p = 0.590). Thus, no statistically significant sex differences were observed for the reported task-based outcomes in the present sample.

3. RESULTS SECTION: What you must check before submission

1. Table 5.8 versus Figure 8

You have two different Kruskal-Wallis values for Transfer Index:
  • Table 5.8: H = 21.069, p < 0.001
  • Figure 8 text: H = 24.153, p < 0.001
These cannot both represent exactly the same analysis.

Check this:

  • Was Table 5.8 calculated using three age bands?
    • 6-8 years
    • 9-10 years
    • 11-12 years
  • Was Figure 8 calculated using seven individual age groups?
    • age 6, 7, 8, 9, 10, 11, 12
If yes, write this note below the figure:
“The figure presents individual age-group analysis from 6 to 12 years, whereas Table 5.8 presents analysis across the three predefined age bands.”
If not, one statistic is wrong and must be corrected.

2. Table 5.8 versus Figure 9

You have two different Kruskal-Wallis values for bimanual coordination:
  • Table 5.8: H = 19.342, p < 0.001
  • Figure 9 text: H = 19.660, p = 0.003
Again, verify the original statistical output.

3. Do post-hoc analysis

Your Kruskal-Wallis results are significant, but you do not identify which age groups differ.
You need to perform:
  • Dunn’s post-hoc test
  • Bonferroni or Holm correction
Then add a table like:
OutcomeComparisonAdjusted p-valueInterpretation
Transfer Index6-8 vs 9-10[value]Significant/not significant
Transfer Index6-8 vs 11-12[value]Significant/not significant
Transfer Index9-10 vs 11-12[value]Significant/not significant
Do this for every significant outcome, or at minimum for:
  • Transfer Index
  • TIA intermanual accuracy
  • Gap Score
  • Overall bimanual coordination
  • Bimanual Coordination Condition 3

4. DISCUSSION SECTION: What to remove

Remove or rewrite Paragraph 482

Current:
“all major task-based measures ... improved significantly with age…”

Why

  • Not every outcome was significant.
  • Condition 1 could not be analysed.
  • “Improved” implies that the same children were followed over time.
  • Your study is cross-sectional.

Replace with:

This cross-sectional study assessed tactile intermanual transfer, bimanual tapping, and bimanual coordination in 120 typically developing children aged 6-12 years. Age was significantly associated with Transfer Index, TIA intermanual accuracy, Gap Score, overall bimanual coordination score, and selected bimanual coordination conditions. No statistically significant sex differences were observed for the reported outcomes.

Remove this phrase from Paragraph 484

“the split was close enough to support a reasonably powered comparison of sex-related differences.”

Why

You have not shown a power calculation for sex comparison.

Replace with:

Boys constituted 56.7% and girls 43.3% of the sample. The sex-related findings should be interpreted cautiously because the study was not specifically powered to detect small sex differences.

Remove this phrase from Paragraph 484

“detecting behavioural change linked to callosal maturation.”

Why

You did not measure callosal maturation.

Replace with:

“examining age-related differences in behavioural task performance.”

Remove or rewrite the following claims from Paragraph 486

“information relayed ... via the corpus callosum typically incurs some loss...”
“normal transfer category”
“mild-to-moderate reductions in transfer efficiency”

Why

You cannot prove the mechanism or classify children clinically without a validated cutoff system.

Replace with:

Intramanual accuracy was higher than intermanual accuracy in the present sample. This may reflect greater task demands when tactile information must be integrated across hands. The median Transfer Index was 94.43%, and 87.5% of participants had scores of 80% or higher. However, lower scores should not be interpreted as evidence of neurological impairment because performance may be affected by attention, comprehension, tactile perception, language, and fine-motor ability.

Remove or rewrite this sentence from Paragraph 488

“the narrowing gap ... reflects maturing interhemispheric inhibitory control rather than a general motor-skill effect alone.”

Why

Your data cannot distinguish between:
  • inhibition
  • motor skill
  • practice
  • concentration
  • understanding instructions
  • attention
  • fatigue

Replace with:

The lower anti-phase accuracy compared with in-phase accuracy is consistent with the greater coordination demands of anti-phase tapping. The present study cannot determine the specific neural mechanism responsible for this difference.

Remove or rewrite this sentence from Paragraph 490

“reflects a genuine, well-documented developmental process rather than a task-specific artefact.”

Why

This is too certain.

Replace with:

The observed pattern is broadly consistent with previous literature on age-related differences in bimanual coordination. However, the present cross-sectional design cannot establish the specific developmental or neural mechanism underlying these findings.

Remove or rewrite Paragraph 495 conclusion

Current:
“age, rather than sex, is the primary developmental driver…”
“supports the use of a single, sex-combined normative scheme…”

Why

You did not test all possible factors and did not establish norms.

Replace with:

Within this sample, no statistically significant sex differences were observed in the reported task-based outcomes. These results do not establish that sex has no effect in the broader population and do not justify sex-combined normative standards without further research in larger representative samples.

Remove or rewrite Paragraph 499

Current:
“performance ... are shaped primarily by age rather than sex”
“early signs of atypical interhemispheric development”

Why

You cannot identify atypical development or determine the primary cause.

Replace with:

The findings indicate that age was associated with several task-based outcomes in this sample, whereas no statistically significant sex differences were identified. Considerable variation was present within age groups. Lower task scores should not be interpreted as evidence of atypical neurodevelopment because the study did not include diagnostic assessment, clinical comparison groups, or longitudinal follow-up.

Remove Paragraph 501 fully and replace it

Current paragraph claims:
  • tasks may be used for screening
  • children can be flagged
  • tasks may help identify developmental language disorder and dyslexia

Why remove

Your study did not measure:
  • sensitivity
  • specificity
  • predictive value
  • diagnostic accuracy
  • clinical groups
  • validated screening cutoffs

Replace full paragraph with:

The tasks used in this study were brief, non-invasive, and feasible to administer in a school setting. They may be useful for future research investigating age-related patterns of tactile intermanual transfer and bimanual coordination. However, the present findings do not establish diagnostic thresholds, screening accuracy, or clinical reference standards. Further studies are required before these tasks can be considered for school-based or clinical screening.

5. DISCUSSION SECTION: What to add

A. Add a short paragraph on task limitations

Add after the bimanual coordination discussion:
Performance on behavioural tasks may be influenced by factors other than interhemispheric transfer and coordination, including attention, comprehension of instructions, language ability, fine-motor skill, motivation, fatigue, and familiarity with the task. Therefore, task scores should be interpreted as measures of observed behavioural performance rather than direct measures of corpus-callosum structure or brain connectivity.

B. Add a paragraph on sampling limitations

Add under “Strengths and Limitations”:
Convenience sampling was used, and the age groups were not equally represented. Therefore, the study sample may not represent all school-aged children in the wider community. The findings should be generalized only to populations similar to the children included in this study.

C. Add a paragraph on missing clinical validation

Add under “Strengths and Limitations”:
The study included only typically developing children and did not include children with diagnosed neurodevelopmental or neurological conditions. Therefore, the study cannot determine whether the task measures distinguish typical from atypical development or whether they have diagnostic or screening value.

D. Add a paragraph about reliability

Only include this if you did not measure reliability:
Test-retest reliability and inter-rater reliability were not assessed in the present study. Future research should evaluate the consistency of the task protocols and scoring methods before wider clinical application.
If you did assess reliability, report exactly how and give the values.

E. Add a paragraph on no neuroimaging

Add:
No neuroimaging or neurophysiological measures were used in this study. Therefore, the observed task performance cannot be interpreted as a direct measure of corpus-callosum anatomy, white-matter integrity, or functional brain connectivity.

6. DISCUSSION SECTION: Replace the final overall interpretation

Remove current Paragraph 505 fully.

Replace with:

In this cross-sectional sample of typically developing children aged 6-12 years, age was significantly associated with several task-based measures of tactile intermanual transfer and bimanual coordination. No statistically significant sex differences were observed for the reported measures. The study provides preliminary descriptive information on age-related patterns of behavioural task performance in the sampled children. It does not establish causal developmental change, corpus-callosum integrity, normative reference standards, diagnostic cutoffs, or screening utility.

7. Final chapter structure you should use

Results Chapter

  1. Demographic characteristics
  2. Tactile intermanual transfer performance
  3. Distribution of Transfer Index scores
  4. Bimanual tapping performance
  5. Distribution of Gap Scores
  6. Bimanual coordination performance
  7. Association between age and task measures
  8. Comparison across predefined age groups
  9. Comparison by sex
  10. Figures with short factual descriptions only

Discussion Chapter

  1. Overview of main findings
  2. Tactile intermanual transfer findings
  3. Bimanual tapping findings
  4. Bimanual coordination findings
  5. Association with age
  6. Differences between age groups
  7. Sex comparison
  8. Comparison with previous research
  9. Clinical/research implications
  10. Strengths and limitations
  11. Overall interpretation

8. The most important final message

Your study should present this conclusion:
The task-based measures showed age-related differences in tactile intermanual transfer and bimanual coordination among typically developing children aged 6-12 years. These findings are preliminary behavioural observations from a cross-sectional sample and should not be interpreted as direct evidence of corpus-callosum integrity, neurological impairment, diagnostic status, or screening ability.
That is the accurate, thesis-safe version of your study.

Create a final corrected Results chapterst

Reading File
Running Command

python3 - <<'PY' from docx import Document p='/tmp/workspace/attachments/ba2e5cad-efb8-42ec-a4cc-192bd932f29d/final book thesis.docx' d=Document(p) for idx in range(9,18): t=d.tables[idx] print('\nTABLE',idx+1) for r in t.rows: print(' | '.join(' '.join(c.text.split()) for c in r.cells)) PY

Searching PubMed

interhemispheric transfer children

Searching the Web

STROBE cross-sectional study report results summary measures associations guidelines

CHAPTER V

RESULTS

A total of 120 typically developing children aged 6-12 years were included in the study. The results are presented under demographic characteristics, tactile intermanual transfer performance, bimanual tapping performance, bimanual coordination performance, age-related associations, age-group comparisons, and sex-wise comparisons.

5.1 Demographic Characteristics of the Participants

Table 5.1 presents the demographic characteristics of the study participants. Of the 120 children, 59 (49.2%) were aged 6-8 years, 35 (29.2%) were aged 9-10 years, and 26 (21.7%) were aged 11-12 years. The sample included 68 boys (56.7%) and 52 girls (43.3%).
Table 5.1: Demographic Characteristics of the Study Participants
VariableFrequency (n)Percentage (%)
Age group
6-8 years5949.2
9-10 years3529.2
11-12 years2621.7
Sex
Boys6856.7
Girls5243.3
Total120100.0

5.2 Tactile Intermanual Transfer Performance

Table 5.2 presents descriptive statistics for tactile intermanual transfer performance. The median intramanual accuracy was 95.00% (IQR: 75.00-100.00), while the median intermanual accuracy was 85.00% (IQR: 65.00-100.00). The median Transfer Index was 94.43% (IQR: 87.31-100.00), with scores ranging from 47.05% to 100.00%.
Table 5.2: Descriptive Statistics of Tactile Intermanual Transfer Performance
VariableMedian (IQR)Range
Tactile intramanual accuracy (%)95.00 (75.00-100.00)20-100
Tactile intermanual accuracy (%)85.00 (65.00-100.00)15-100
Transfer Index (%)94.43 (87.31-100.00)47.05-100

5.3 Distribution of Transfer Index Scores

Table 5.3 presents the distribution of participants according to Transfer Index score categories. Of the 120 participants, 105 (87.5%) had a Transfer Index score of 80% or higher. Twelve participants (10.0%) had scores between 60% and 79%, and three participants (2.5%) had scores between 40% and 59%. No participant had a score below 40%.
Table 5.3: Distribution of Participants According to Transfer Index Scores
Transfer Index categoryFrequency (n)Percentage (%)
≥80%10587.5
60-79%1210.0
40-59%32.5
<40%00.0
Total120100.0
Note: Use neutral score-category labels unless the terms “normal,” “mild reduction,” and “impairment” are supported by a validated published scoring source.

5.4 Bimanual Tapping Performance

Table 5.4 presents descriptive statistics for bimanual tapping performance. The median in-phase accuracy was 100.00% (IQR: 96.45-100.00), whereas the median anti-phase accuracy was 94.00% (IQR: 90.00-100.00). The median Gap Score was 4.00% (IQR: 1.00-6.60), with values ranging from 0% to 50%.
Table 5.4: Descriptive Statistics of Bimanual Tapping Performance
Bimanual tapping measureMedian (IQR)Range
In-phase accuracy (%)100.00 (96.45-100.00)66.60-100
Anti-phase accuracy (%)94.00 (90.00-100.00)50-100
Gap Score (%)4.00 (1.00-6.60)0-50

5.5 Distribution of Gap Scores

Table 5.5 presents the distribution of Gap Scores. Most participants, 113 (94.2%), had a Gap Score below 15%. Five participants (4.2%) had scores between 15% and 30%, whereas two participants (1.7%) had scores above 30%.
Table 5.5: Distribution of Participants According to Gap Score
Gap Score categoryFrequency (n)Percentage (%)
<15%11394.2
15-30%54.2
>30%21.7
Total120100.0
Note: If your categories are not from a validated source, do not call values above 30% a “significant coordination deficit.” Report the score ranges only.

5.6 Bimanual Coordination Performance

Table 5.6 presents the descriptive statistics for bimanual coordination performance. Condition 1 showed no variability among the participants, with all children obtaining a score of 67.00. Therefore, Condition 1 was described only and was not included in inferential analysis.
For Condition 2, the median score was 50.00 (IQR: 43.00-63.00). For Condition 3, the median score was 40.00 (IQR: 30.00-50.00). The median overall average bimanual coordination score was 53.33 (IQR: 48.62-60.25).
Table 5.6: Descriptive Statistics of Bimanual Coordination Performance
Bimanual coordination measureMean ± SDMedian (IQR)Range
Condition 167.00 ± 0.0067.0067-67
Condition 252.77 ± 14.9350.00 (43.00-63.00)20.00-86.60
Condition 341.38 ± 14.7640.00 (30.00-50.00)10.00-86.60
Overall average bimanual coordination53.79 ± 7.9053.33 (48.62-60.25)32.30-77.90

5.7 Association Between Age and Task-Based Measures

Spearman’s rank correlation analysis was performed to examine the association between age and task-based performance measures. Age showed a significant positive association with Transfer Index (ρ = 0.428, p < 0.001), tactile intermanual accuracy (ρ = 0.543, p < 0.001), overall average bimanual coordination score (ρ = 0.388, p < 0.001), bimanual coordination Condition 2 (ρ = 0.318, p < 0.001), and bimanual coordination Condition 3 (ρ = 0.337, p < 0.001).
Age showed a significant negative association with Gap Score (ρ = -0.245, p = 0.007). Thus, age was significantly associated with several tactile intermanual transfer and bimanual coordination measures in the present sample.
Table 5.7: Correlation Between Age and Task-Based Measures
VariableSpearman’s ρp-value
Transfer Index0.428<0.001
Tactile intermanual accuracy0.543<0.001
Gap Score-0.2450.007
Overall average bimanual coordination0.388<0.001
Bimanual coordination Condition 20.318<0.001
Bimanual coordination Condition 30.337<0.001

5.8 Comparison of Task-Based Measures Across Age Groups

Table 5.8 presents the comparison of task-based measures across the three predefined age groups: 6-8 years, 9-10 years, and 11-12 years. The Kruskal-Wallis test showed statistically significant differences among the age groups for Transfer Index, tactile intermanual accuracy, Gap Score, overall average bimanual coordination, and bimanual coordination Condition 3.
These results indicate that at least one age group differed from another for the reported measures. Post-hoc pairwise comparisons are needed to identify the specific age groups between which statistically significant differences occurred.
Table 5.8: Comparison of Task-Based Measures Across Age Groups
OutcomeKruskal-Wallis Hp-valueResult
Transfer Index21.069<0.001Significant
Tactile intermanual accuracy31.053<0.001Significant
Gap Score7.7100.021Significant
Overall average bimanual coordination19.342<0.001Significant
Bimanual coordination Condition 312.7990.002Significant
Important: Perform Dunn’s post-hoc pairwise analysis with Bonferroni or Holm correction before final submission. Until that is done, do not state which specific age group performed better or worse.

5.9 Comparison of Task-Based Measures by Sex

Table 5.9 presents the comparison of task-based measures between boys and girls. Mann-Whitney U test showed no statistically significant difference between boys and girls for Transfer Index (p = 0.717), Gap Score (p = 0.661), overall average bimanual coordination (p = 0.080), tactile intermanual accuracy (p = 0.631), or bimanual coordination Condition 3 (p = 0.590).
Thus, no statistically significant sex differences were observed for the reported task-based outcomes in the present sample.
Table 5.9: Comparison of Task-Based Measures by Sex
Outcomep-valueResult
Transfer Index0.717Not significant
Gap Score0.661Not significant
Overall average bimanual coordination0.080Not significant
Tactile intermanual accuracy0.631Not significant
Bimanual coordination Condition 30.590Not significant

5.10 Figures

Figure 5: Sex Distribution of Participants

Figure 5 shows the sex distribution of the participants. Of the 120 participants, 68 (56.7%) were boys and 52 (43.3%) were girls.

Figure 6: Distribution of Participants by Individual Age

Figure 6 presents the distribution of participants across the individual ages of 6-12 years. The largest groups were children aged 10 years (n = 25), 7 years (n = 24), and 8 years (n = 23). The smallest group was children aged 9 years (n = 10).

Figure 7: Age-Specific Median Task Performance

Figure 7 presents age-specific median Transfer Index, Gap Score, and overall average bimanual coordination scores. Higher median Transfer Index and overall bimanual coordination scores were generally observed in older age groups. Gap Score values varied across individual ages.

Figure 8: Association Between Age and Transfer Index

Figure 8 illustrates the positive association between age and Transfer Index (Spearman’s ρ = 0.428, p < 0.001). Higher Transfer Index values were generally observed among older participants, although substantial variation was present within individual age groups.

Figure 9: Association Between Age and Overall Bimanual Coordination

Figure 9 illustrates the positive association between age and overall average bimanual coordination score (Spearman’s ρ = 0.388, p < 0.001). Higher bimanual coordination scores were generally observed among older participants, with variation present within individual age groups.

Mandatory final corrections before using this chapter

  1. Do not include the old lengthy explanations below Figures 5-9. The short descriptions above are sufficient.
  2. Confirm whether Figure 8’s H = 24.153 and Figure 9’s H = 19.660 were calculated using individual age groups. If they were, state that clearly in the figure note. If not, remove those conflicting H values.
  3. Use either “tactile intermanual accuracy” or “TIA intermanual accuracy” consistently. Do not use “tactile intermanual intermanual accuracy.”
  4. Retain “normal,” “mild reduction,” “moderate impairment,” and “deficit” only if the table footnote cites a validated source for those cutoffs.
  5. Ensure every table number, figure number, title, and value exactly matches the final tables and statistical output.
This is a shared conversation. Sign in to Orris to start your own chat.