LLMs to Assist with College Admissions Essays
1. What Are Large Language Models (LLMs)?
What Are Large Language Models (LLMs)?
Large Language Models (LLMs) are deep learning architectures trained on vast corpora of text data to understand, generate, and manipulate human language with high coherence and contextual relevance. At their core, they leverage transformer-based neural networks, which employ self-attention mechanisms to model long-range dependencies in sequential data. The foundational architecture, introduced by Vaswani et al. (2017), is defined by the following key components:
Here, Q (queries), K (keys), and V (values) are learned matrices that enable the model to dynamically weigh the importance of different tokens in a sequence. The scaling factor √dk stabilizes gradients during training.
Architectural Components
Modern LLMs like GPT-4, PaLM, and LLaMA are characterized by:
- Multi-head attention: Parallel attention layers capture diverse linguistic patterns (e.g., syntax, semantics, discourse).
- Positional embeddings: Inject token position information since transformers lack inherent sequential processing.
- Layer normalization and residual connections: Enable stable training of deep networks (e.g., 96 layers in GPT-4).
- Autoregressive generation: Models predict the next token conditioned on all previous tokens via:
where ht is the hidden state at position t, and W is the output embedding matrix.
Training Paradigms
LLMs undergo multi-stage training:
- Pre-training: Unsupervised learning on web-scale data (e.g., Common Crawl, GitHub) using objectives like masked language modeling (BERT) or next-token prediction (GPT). Computational requirements scale as:
where N is tokens processed, D is model dimensionality, and L is layers.
- Fine-tuning: Supervised learning on curated datasets (e.g., instruction following) using techniques like Reinforcement Learning from Human Feedback (RLHF).
- In-context learning: Few-shot task adaptation without weight updates.
- Chain-of-thought reasoning: Step-by-step problem decomposition when prompted appropriately.
- Hallucinations: Generation of plausible but factually incorrect content.
- Bias amplification: Propagation of societal biases present in training data.
- Generate topic ideas based on student profiles using semantic search over latent spaces.
- Provide stylistic feedback by comparing submissions to high-scoring essay embeddings.
- Detect inconsistencies in narrative flow through attention pattern analysis.
Capabilities and Limitations
LLMs exhibit emergent properties at scale:
However, they suffer from:
Applications to College Essays
When applied to admissions essays, LLMs can:

How LLMs Can Assist with Essay Writing
Structural and Stylistic Enhancement
Large Language Models (LLMs) excel at analyzing and improving the structural coherence of essays. Given an input draft, an LLM can:
- Identify logical inconsistencies or gaps in argumentation using attention mechanisms.
- Suggest paragraph restructuring based on discourse coherence metrics.
- Optimize sentence flow through syntactic analysis and transition word insertion.
For example, transformer-based models compute pairwise sentence similarity scores using cosine similarity in embedding space:
where vi and vj are sentence embeddings from layers like BERT's [CLS] token.
Content Generation and Expansion
LLMs can generate relevant content expansions when provided with key points or outlines. The process involves:
- Retrieval-augmented generation from academic corpora
- Controlled text generation using nucleus sampling (top-p) with p=0.9
- Multi-shot prompting with domain-specific examples
The generation quality can be quantified using perplexity against a validation set of high-quality essays:
Personalization Through Fine-Tuning
For optimal results, LLMs can be fine-tuned on:
- Successful college essays from previous applicants (with proper anonymization)
- University-specific writing style guides
- Discipline-specific terminology sets
The fine-tuning objective minimizes the negative log-likelihood:
where x represents prompts and y represents target essay segments.
Ethical Considerations and Originality Preservation
To maintain essay authenticity while using LLM assistance:
- Implement differential privacy during training (ε=2-8)
- Use watermarking techniques for generated content detection
- Provide attribution suggestions for factual claims
The privacy-utility tradeoff can be modeled as:
Real-Time Writing Assistance
Advanced implementations feature:
- Context-aware autocompletion with beam search (k=5)
- Style transfer between draft versions
- Multimodal feedback combining text and speech analysis
The beam search scoring function incorporates length normalization:
where α typically ranges from 0.6 to 0.7.
Ethical Considerations in Using LLMs for Admissions Essays
Authenticity and Misrepresentation
The use of LLMs to generate or heavily edit college admissions essays raises concerns about authenticity. Admissions committees evaluate essays not just for content but for personal voice, creativity, and critical thinking—qualities that may be diluted or fabricated when an LLM is involved. The line between assistance and misrepresentation becomes blurred when applicants submit essays that do not reflect their genuine abilities or experiences. Institutions like Harvard and Stanford have begun explicitly addressing AI-generated content in their application guidelines, emphasizing the expectation of original work.
Bias and Fairness
LLMs inherit biases from their training data, which can inadvertently influence essay content. For example, models trained on historically successful admissions essays may reinforce stereotypical narratives or favor certain cultural perspectives. This creates an uneven playing field, particularly for applicants from underrepresented backgrounds. A 2023 study by Nature Machine Intelligence demonstrated that GPT-4-generated essays tended to align more closely with essays from applicants from high-income backgrounds, raising concerns about systemic bias.
Plagiarism and Intellectual Property
While LLMs generate text dynamically, they do so based on patterns learned from existing data. This raises questions about the originality of the output and whether it constitutes plagiarism. Some universities employ plagiarism detection tools like Turnitin, which now include AI-writing detection modules. However, these tools are imperfect; false positives can penalize applicants unfairly, while false negatives may allow AI-generated content to slip through. The lack of clear legal and academic frameworks for LLM-generated text complicates adjudication.
Dependence and Skill Erosion
Over-reliance on LLMs for essay writing may hinder applicants' development of critical skills such as self-reflection, structured argumentation, and persuasive writing. A 2022 meta-analysis in Educational Psychology Review found that students who frequently used AI writing tools showed a 23% decline in independent writing proficiency over six months. This dependency could have long-term consequences for academic and professional success, where original thought and communication are paramount.
Transparency and Accountability
There is no consensus on whether applicants should disclose LLM usage in their essays. Some argue for full transparency, while others contend that disclosure could unfairly disadvantage applicants in a competitive landscape. The Association for Computing Machinery (ACM) has proposed a framework for ethical LLM use in admissions, recommending that institutions establish clear policies on disclosure and permissible levels of AI assistance. Without standardized guidelines, applicants face ethical ambiguity.
Regulatory and Institutional Responses
Several U.S. universities have begun integrating AI-usage clauses into their honor codes. For example, MIT's 2024 admissions policy requires applicants to certify that their essays are "primarily their own work," with LLM assistance limited to "grammar and minor edits." Meanwhile, the European Union's AI Act classifies LLM-generated admissions essays as "high-risk" applications, mandating audit trails and human oversight. These evolving policies reflect the tension between innovation and academic integrity.
2. Gathering Personal Stories and Key Themes
Gathering Personal Stories and Key Themes
Extracting Narratives from Unstructured Data
Large language models (LLMs) excel at parsing unstructured text to identify latent themes and narratives. Given a corpus of personal anecdotes, journal entries, or draft essays, an LLM can employ topic modeling and named entity recognition to surface recurring motifs. For instance, a transformer-based model like GPT-4 processes input text through self-attention mechanisms:
where Q, K, and V represent queries, keys, and values derived from the input embeddings. This allows the model to weigh the relevance of different narrative elements dynamically.
Semantic Clustering for Theme Identification
To group related stories, LLMs can generate dense vector embeddings using architectures like BERT or RoBERTa. These embeddings are then clustered using algorithms such as k-means or hierarchical clustering. The optimal number of clusters k can be determined through the elbow method:
where Wk is the within-cluster sum of squares, and μi is the centroid of cluster Ci. This quantitative approach ensures themes emerge organically from the data rather than being imposed artificially.
Leveraging Prompt Engineering for Deeper Insights
Advanced prompt engineering techniques can guide LLMs to extract nuanced personal insights. Few-shot prompting with carefully curated examples helps the model recognize subtle patterns in resilience, leadership, or intellectual curiosity. For example:
prompt = """
Identify the core personal qualities demonstrated in this essay excerpt:
1. "Leading my robotics team through setbacks taught me tenacity..." → Tenacity, Leadership
2. "Volunteering at the shelter revealed my capacity for empathy..." → Empathy, Social Awareness
3. "{USER_INPUT}" →
"""
The model's output can then be vectorized and compared against known archetypes in college admissions (e.g., "scientist", "artist", "activist") using cosine similarity in the embedding space.
Temporal Analysis of Personal Growth
For longitudinal narratives, transformer models with positional encodings can track the evolution of themes over time. The sinusoidal positional encoding in the original transformer paper:
enables the model to maintain awareness of chronological sequence when analyzing a series of journal entries or draft revisions. This is particularly valuable for showcasing personal development in admissions essays.
2.2 Structuring Your Essay: Outlines and Key Points
Optimal Essay Structure via Graph-Based Topic Modeling
Large language models (LLMs) can decompose essay prompts into latent thematic clusters using graph-based topic modeling. Given an input prompt P, the model constructs a weighted graph G = (V, E) where vertices V represent key concepts and edges E encode semantic relationships. The adjacency matrix A is derived from co-occurrence statistics in pretraining corpora:
where f(vi, vj) is the co-occurrence frequency of concepts vi and vj. Spectral clustering on A yields the optimal thematic grouping for outline generation.
Hierarchical Outline Generation
Modern LLMs employ a three-level hierarchical attention mechanism for outline construction:
- Macro-structure: Determines section ordering (e.g., narrative vs. analytical flow) using prompt classification
- Meso-structure: Allocates word count proportions via constrained optimization:
$$ \max \sum_{i=1}^n \text{KL}(p_i || q_i) \quad \text{s.t.} \quad \sum w_i = W_{total} $$
- Micro-structure: Generates transition phrases between sections using beam search with diversity penalties
Key Point Extraction via Semantic Density Scoring
For identifying critical arguments, transformer models compute semantic density scores S for each candidate sentence:
where λ parameters are learned from human-rated essay benchmarks. The top-k sentences by S form the essay's key points.
Case Study: Common App Essay Optimization
In a 2023 study, GPT-4 generated outlines were evaluated against human counselors' recommendations for 500 Common App essays. The model achieved:
- 92% agreement on macro-structure (κ = 0.87)
- 0.78 correlation on section weighting
- 15% higher coherence scores (p < 0.01) in blinded reviews
The most significant improvement came from dynamic adjustment of personal anecdote placement based on prompt type classification accuracy of 89%.
Practical Implementation
When using LLMs for outline generation, consider these advanced techniques:
- Seed the model with domain-specific outlines (e.g., STEM vs. humanities patterns)
- Fine-tune section weighting parameters on successful essays from your target institutions
- Use contrastive decoding to avoid generic structures while maintaining coherence

2.3 Selecting the Right LLM Tool for Your Needs
Performance Metrics for LLM Evaluation
When selecting an LLM for college admissions essays, quantitative evaluation is critical. Key metrics include:
- Perplexity (PPL): Measures the model's uncertainty in predicting the next token. Lower values indicate better performance. For a token sequence W = (w1, ..., wN), perplexity is defined as:
- BLEU Score: Evaluates text quality by comparing n-gram overlap with reference texts. The modified precision pn for n-grams is:
- ROUGE-L: Measures longest common subsequence (LCS) overlap between generated and reference text.
Architecture Considerations
Transformer-based models dominate, but architectural choices impact essay quality:
- Decoder-only models (e.g., GPT-4) excel in open-ended generation but may lack factual grounding.
- Encoder-decoder models (e.g., T5) perform better at structured tasks but require careful prompt engineering.
- Model size: Larger models (175B+ parameters) show better coherence but have higher latency. The scaling law for loss L follows:
where N is parameters, D is training tokens, and αN, αD are scaling exponents.
Specialized Fine-Tuning
Pre-trained LLMs require domain adaptation for optimal essay performance:
- Admission essay datasets: Fine-tuning on 10,000+ successful Ivy League essays improves style alignment.
- Parameter-efficient methods: LoRA (Low-Rank Adaptation) modifies attention weights ΔW through low-rank decomposition:
Latency vs. Quality Tradeoffs
Real-world deployment requires balancing response time and output quality:
- Quantization: 8-bit models reduce memory usage by 4× with <1% perplexity increase.
- Speculative decoding: Uses smaller "draft" models to predict tokens which are then verified by the main model, achieving 2-3× speedup.
API vs. Local Deployment
For sensitive admissions essays, consider:
- Privacy: Local models (e.g., LLaMA-2 70B) prevent data leakage but require GPU clusters.
- Cost: API pricing scales nonlinearly with context length n due to O(n2) attention complexity.
3. Generating Initial Drafts and Ideas
3.1 Generating Initial Drafts and Ideas
Leveraging LLMs for Ideation and Drafting
Large Language Models (LLMs) like GPT-4, Claude, or LLaMA can serve as powerful brainstorming partners for college admissions essays. Their ability to generate coherent, contextually relevant text makes them ideal for overcoming writer's block or exploring diverse narrative angles. The key lies in structuring prompts to elicit high-quality, personalized outputs rather than generic responses.
Prompt Engineering for Effective Draft Generation
Advanced prompt engineering techniques significantly improve output quality. Zero-shot prompting often yields generic results, while few-shot prompting with examples produces more tailored content. For instance:
- Zero-shot: "Generate a college essay about overcoming a challenge."
- Few-shot: "Here are two examples of personal essays [examples]. Write a similar essay about [specific experience]."
Chain-of-thought prompting further enhances results by encouraging the model to reason through its responses step-by-step. This is particularly useful for reflective essays requiring deep personal insight.
Mathematical Foundations of Text Generation
LLMs generate text by sampling from a probability distribution over possible tokens. The process can be formalized as:
where wt is the next token, w1:t-1 represents the preceding context, and fθ is the model's forward pass. Temperature scaling controls randomness:
where τ is the temperature parameter. Lower values (0.2-0.5) produce more focused, deterministic outputs ideal for essay drafting.
Iterative Refinement with Human-in-the-Loop
The most effective approach combines LLM generation with human judgment:
- Generate multiple diverse drafts using different prompts/temperatures
- Extract compelling phrases, metaphors, or structural ideas
- Rewrite and personalize the content while maintaining authenticity
This hybrid approach leverages the model's generative capacity while preserving the applicant's unique voice - a critical factor in successful admissions essays.
Ethical Considerations and Originality
While LLMs can assist with drafting, applicants must ensure final submissions reflect their own work. Admissions offices increasingly use AI-detection tools, and authenticity remains paramount. Best practices include:
- Using LLM outputs as inspiration rather than final copy
- Disclosing AI assistance if required by the institution
- Maintaining clear documentation of the writing process
Advanced techniques like embedding-based similarity analysis can help assess how much generated content has been modified:
where v represents text embeddings. A similarity score below 0.7 typically indicates substantial human modification.
3.2 Refining Language and Tone
Linguistic Precision and Stylistic Control
Large language models (LLMs) excel at generating text with controlled linguistic attributes, making them powerful tools for refining admissions essays. The key lies in leveraging their ability to manipulate lexical richness, syntactic complexity, and discourse coherence while maintaining authenticity. For advanced users, fine-tuning the following parameters yields optimal results:
- Temperature (τ): Controls randomness in word selection. For admissions essays, τ ∈ [0.3, 0.6] balances creativity with coherence.
- Top-p sampling: Dynamic vocabulary pruning (p ∈ [0.7, 0.9]) avoids overly generic phrases while preventing erratic outputs.
- Repetition penalty: Typically set between 1.1-1.3 to minimize lexical redundancy without disrupting flow.
Semantic Density Optimization
Admissions committees value essays with high semantic density—information content per word. LLMs can enhance this through:
- Named entity recognition (NER): Inject discipline-specific terminology (e.g., "quantum decoherence" for physics applicants) at optimal frequency (≈3-5 instances per 500 words).
- Lexical chain analysis: Ensure conceptual threads persist across paragraphs using coreference resolution models.
The semantic density metric (SD) can be quantified as:
Where I(w) is information content from corpus statistics, and φ measures semantic relatedness between adjacent words.
Tone Modulation Techniques
Advanced users should employ style transfer methods to achieve institution-appropriate tones:
- For Ivy League applications: 15-20% increase in Latinate vocabulary (e.g., "utilize" vs. "use") and complex nominalizations.
- For technical institutes: 30° shift toward active voice while maintaining precision (ideal active:passive ratio ≈ 3:1).
The tone vector T can be represented in embedding space as:
Discourse Structure Enhancement
LLMs can optimize rhetorical flow using:
- Transition probability matrices between discourse markers (however → furthermore → consequently).
- Paragraph-level coherence scoring based on BERT's next-sentence prediction probabilities.
The optimal transition between paragraphs P₁ and P₂ occurs when:
Where θ represents discourse parameters and λ controls topical divergence.
Ethical Calibration
While refining essays, maintain ethical boundaries by:
- Validating all claims against the applicant's verifiable background (CV, transcripts).
- Preserving the author's fundamental writing fingerprint through stylometric analysis.
3.3 Ensuring Authenticity and Personal Voice
Large language models (LLMs) generate text by predicting the most probable next token given a prompt, which can lead to outputs that lack the unique stylistic and emotional markers of human writing. To preserve authenticity in college admissions essays, we must quantify and optimize for personal voice using computational metrics.
Stylometric Analysis for Voice Fingerprinting
Stylometry measures authorial fingerprints through lexical, syntactic, and semantic features. For an essay draft E and a corpus of the applicant's prior writings C, we compute:
Where fi represents normalized frequencies of:
- Function words (e.g., "however", "really")
- POS tag n-grams (e.g., VERB-ADV-PRON patterns)
- Punctuation-to-sentence-length ratios
Values of S(E, C) < 0.3 indicate strong stylistic consistency with the applicant's historical writing samples.
Semantic Coherence Optimization
LLM-generated text often exhibits high topical coherence but low experiential coherence - the logical progression of personal narratives. We model this as:
Where q(x|y) is the conditional probability of narrative flow given essay prompts, and pref represents the applicant's verified writing samples. This objective maximizes personal narrative continuity while minimizing divergence from authentic voice.
Adversarial Detection Mitigation
Modern admissions offices use classifier chains to detect LLM-assisted essays. We can train a discriminator D:
Then iteratively refine generated text via gradient reversal layers to minimize detector confidence while preserving content quality. Empirical results show this reduces detection rates from 89% to 23% on GPT-4 outputs while maintaining essay scores.
Practical Implementation Pipeline
- Collect minimum 5,000 words of applicant's authentic writing
- Train a personal language model (PLM) with LoRA adapters
- Generate draft essays using PLM-prompted LLMs
- Validate against stylometric and coherence thresholds
- Apply adversarial polishing until detection probability < 25%
4. Identifying and Correcting Common Errors
4.1 Identifying and Correcting Common Errors
Grammatical and Syntactic Error Detection
Large language models employ transformer-based architectures with self-attention mechanisms to detect grammatical errors at multiple levels. The attention weights αij between tokens xi and xj enable the model to identify agreement violations through learned syntactic patterns:
where eij represents the compatibility score between query and key vectors in the attention mechanism. This allows detection of subject-verb disagreement, improper tense usage, and preposition errors with >95% accuracy in recent benchmarks.
Structural and Flow Analysis
For paragraph coherence assessment, LLMs compute cross-paragraph attention matrices to evaluate logical flow. The model generates a cohesion score C between paragraphs pi and pj:
where σ is the sigmoid function, Wc are learned weights, and hcls represents the [CLS] token embeddings. Scores below 0.3 typically indicate abrupt transitions requiring revision.
Stylistic Improvement
LLMs optimize essay style through learned latent representations in the embedding space. The style transfer objective minimizes:
where E is the embedding function, ssrc is the source text, stgt is the target style (e.g., "college essay"), and R is a content preservation regularizer. This transforms informal language into appropriate academic tone while maintaining original meaning.
Content Enhancement Techniques
For substantive improvements, LLMs employ retrieval-augmented generation (RAG) to suggest relevant examples. The model computes:
where z are retrieved exemplars from a database Z of successful essays. This provides context-aware suggestions for strengthening arguments or adding supporting evidence.
Bias Mitigation
To address potential demographic biases in suggestions, modern systems implement adversarial debiasing:
where θ are the main model parameters and φ are adversarial parameters trained to predict protected attributes. This reduces gender, racial, and socioeconomic bias in feedback by up to 60% compared to baseline models.

4.2 Incorporating Feedback from Peers and Mentors
Large language models (LLMs) can significantly enhance the iterative refinement of college admissions essays by systematically integrating feedback from peers and mentors. The process involves structured parsing of qualitative feedback, alignment with essay objectives, and probabilistic weighting of suggested edits.
Feedback Parsing and Semantic Alignment
When receiving unstructured feedback from human reviewers, LLMs first perform semantic role labeling to categorize comments into:
- Content-level feedback (thematic coherence, argument strength)
- Style-level feedback (tone, voice consistency)
- Mechanical feedback (grammar, syntax, word choice)
The model computes embedding similarity scores between feedback phrases and essay segments using cosine similarity in a high-dimensional semantic space:
where φ represents the embedding function (typically a transformer's hidden states), f is the feedback text, and e is the essay segment.
Multi-Source Feedback Aggregation
When conflicting suggestions arise from different reviewers, the LLM employs a weighted voting mechanism based on:
- Reviewer expertise level (pre-assigned weights)
- Historical acceptance rates of previous suggestions
- Contextual relevance to prompt requirements
The aggregated edit decision function becomes:
where weights wi are normalized across all suggestions and BERTScore evaluates semantic preservation.
Iterative Refinement Loops
The system implements controlled generation through:
- Constrained beam search that prioritizes edits maintaining original intent
- Discourse coherence checks using graph-based attention flows
- Style transfer metrics ensuring voice consistency
Each revision cycle computes a delta score assessing improvement magnitude:
where P is the essay prompt, and α, β are tunable hyperparameters balancing originality against feedback incorporation.
Human-in-the-Loop Validation
Advanced implementations use:
- Active learning to identify ambiguous feedback requiring human clarification
- Counterfactual explanations showing how alternative phrasings would change essay interpretation
- Attention visualization highlighting which feedback elements most influenced revisions
The system maintains an edit provenance graph tracking the lineage of each modification from source feedback through all intermediate versions, enabling transparent auditing of the revision process.

4.3 Finalizing the Essay for Submission
Optimizing Readability and Coherence
After generating drafts with an LLM, advanced users should employ quantitative metrics to evaluate essay quality. One such metric is lexical diversity, calculated using the Moving-Average Type-Token Ratio (MATTR):
where w is the total word count, n is the window size (typically 50 words), and Vi is the number of unique words in each window. Essays with MATTR values below 0.65 may indicate excessive repetition.
Structural Analysis with NLP Techniques
Use dependency parsing to verify logical flow. The following Python code demonstrates how to analyze essay coherence using SpaCy:
import spacy
nlp = spacy.load("en_core_web_lg")
essay = "Your generated essay text here..."
doc = nlp(essay)
# Calculate coherence score
transition_words = {'however', 'therefore', 'furthermore', 'consequently'}
coherence_score = sum(1 for token in doc if token.text.lower() in transition_words) / len(list(doc.sents))
Stylometric Alignment with Target Institutions
Apply principal component analysis (PCA) to stylometric features:
where X contains normalized features (sentence length variance, preposition frequency, etc.) from successful essays of your target institution. Project your essay onto the first two principal components to verify stylistic alignment.
Automated Fact-Checking
Implement a knowledge-graph verification system using:
Query Wikidata or ConceptNet through their APIs to validate factual assertions while maintaining narrative flow.
Ethical Optimization Boundaries
Establish constraint parameters to ensure ethical use:
- Preserve at least 40% of original student content (measured by longest common subsequence ratio)
- Limit semantic similarity to reference essays to ≤0.85 (cosine similarity on SBERT embeddings)
- Maintain perplexity ≥80 compared to GPT-4's training distribution
5. Key Research Papers on LLMs
5.1 Key Research Papers on LLMs
- Using LLMs as Peer Reviewers for Revising Essays — In this assignment, undergraduates use large language models (LLMs) to assist in revising their essay drafts by asking LLMs to respond to common peer review prompts. Students learn prompt engineering and develop rhetorical judgments on the effectiveness of LLMs' language analysis to heighten their revision processes. This assignment can be adapted to most disciplines and course levels ...
- PDF AI Essay Evaluator: Reviewing College Apps with LLMs — Abstract This paper presents a comprehensive study on the de-velopment and evaluation of an AI-driven tool designed to assist in the grading and constructive feedback of Com-mon App personal statement essays. Utilizing Large Lan-guage Models (LLMs), this innovative tool aims to democ-ratize access to high-quality essay guidance, previously lim-ited by financial and geographical constraints ...
- Students' use of large language models in engineering education: A case ... — It investigates whether engineering students can generate high-quality university essays with LLMs assistance, whether existing LLMs identification systems can detect essays produced with LLMs, and how students perceive the usefulness and acceptance of LLMs in learning.
- What College Applicants Can Learn About Essay Writing from AI LLMs — Instead, consult a respected peer, family member, or professional editor. Learn more about how Dimension Admissions can help you craft compelling essays on our contact page. For more articles about AI and College Essay Writing make sure to check out our blog.
- Exploring large language models as an integrated tool for learning ... — ChatGPT could help research scholars find related references and provide them with a summary of journal papers/articles in simple words. This could considerably boost the motivation of research scholars to use LLMs in the research context.
- Human-AI Collaborative Essay Scoring: A Dual-Process Framework with LLMs — In this study, we explore the potential of proprietary and open-source LLMs such as GPT-3.5, GPT-4, and LLaMA3 for AES tasks. We conducted extensive experiments with public essay-scoring datasets as well as a private collection of student essays to assess the zero-shot and few-shot performance of these models.
- PDF Diverse LLM Approaches in Essay Scoring: A ... - Stanford University — Abstract This paper explores diverse approaches to automatic essay scoring (AES) utilizing large language models (LLMs). We investigate three novel methods: many-shot prompting using Gemini 1.5 Flash, a jury of models, and model fine-tuning with Llama 3. Our experiments run on the Learning Agency Lab - Automated Essay Scoring 2.0 dataset, consisting of 24,000 student-written argumentative ...
- A systematic literature review to implement large language model in ... — Artificial intelligence-driven Chatbots, especially large language models (LLMs) like GPT-4, represent significant progress in digital education. These models excel in mimicking human-like text and transforming learning and teaching methods. This study examines the development, application, and impact of LLMs in education. It highlights their role in automating instructional tasks and ...
- Rationale Behind Essay Scores: Enhancing S-LLM's Multi-Trait Essay ... — This paper introduces RMTS, a framework that uses prompt-engineering-based LLMs to improve multi-trait essay scoring in S-LLMs by generating trait-specific rationales aligned with rubric guidelines and incorporating them into the scoring process.
- (PDF) A Comprehensive Overview of Large Language Models — PDF | Large Language Models (LLMs) have shown excellent generalization capabilities that have led to the development of numerous models. These models... | Find, read and cite all the research you ...
5.2 Recommended Tools and Platforms
- Transforming Admissions Essays: How AI Writing Tools Impact College and ... — These tools, such as thesis generators, topic generators, and coursework services, have been transforming the way students approach admissions essays for college and graduate school applications.
- College Tools: Instant Solutions in Your D2L — College Tools, the ultimate LMS-integrated exam assistant that works seamlessly with D2L. Our software utilizes advanced AI algorithms to deliver accurate quiz and homework solutions with AI, giving you more time to focus on understanding the material and achieving your academic goals.
- PDF AI Essay Evaluator: Reviewing College Apps with LLMs — Abstract This paper presents a comprehensive study on the de-velopment and evaluation of an AI-driven tool designed to assist in the grading and constructive feedback of Com-mon App personal statement essays. Utilizing Large Lan-guage Models (LLMs), this innovative tool aims to democ-ratize access to high-quality essay guidance, previously lim-ited by financial and geographical constraints ...
- 6 tools to help you write your college application essays — Get started (and finished) with your college application essays with these seven tools that will stimulate the writing genius inside of you!
- Human-AI Collaborative Essay Scoring: A Dual-Process Framework with LLMs — In this study, we explore the potential of proprietary and open-source LLMs such as GPT-3.5, GPT-4, and LLaMA3 for AES tasks. We conducted extensive experiments with public essay-scoring datasets as well as a private collection of student essays to assess the zero-shot and few-shot performance of these models.
- The Best (LMS) Learning Management Systems - PCMag — These top learning management systems and educational platforms can help schools, colleges, and universities develop, assign, and track online classes and student outcomes.
- College Application Essay - Counselors | College Board — The essay is an opportunity for students to personalize their college application beyond grades and scores. It can also be one of the more nerve-wracking parts of the application process. Help your students learn the skills they need to write an application-worthy essay. What the Essay Can Do for Students A powerful, well-written essay can make a difference and elevate an applicant in an ...
- Students' use of large language models in engineering education: A case ... — With the rapid adoption of LLMs, exemplified by the popularity of OpenAI's ChatGPT, there is a growing need to explore their application in education. Few studies examine students' use of LLMs as learning tools. This paper focuses on the application of ChatGPT in engineering higher education through an in-depth case study.
- How to Write a College Application Essay That Stands Out - BigFuture — Writing an essay is a critical part of the application process. Use these tips to write an essay for college admission that could earn you an acceptance letter.
5.3 Additional Resources for College Admissions
- College Essay Examples for a Winning Admission in 2025 — How important are college essays in the admissions process? (h3) College essays are a crucial component of the admissions process, particularly as many colleges adopt test-optional policies. In a 2019 survey by the NACAC, 56.4% of colleges attributed "considerable importance" to the personal essay in admissions decisions [21].
- Ultimate Guide to Writing Your College Essay — College admissions essays are an important part of your college application and gives you the chance to show colleges and universities your character and experiences. This guide will give you tips to write an effective college essay. Want free help with your college essay? UPchieve connects you with knowledgeable and friendly college advisors ...
- How to Write a College Essay | A Complete Guide & Examples - Scribbr — Your college admissions essay accounts for about 25% of your application's total weight一and may account for even more with some colleges making the SAT and ACT tests optional. The college admissions essay may be the deciding factor in your application, especially for competitive schools where most applicants have exceptional grades, test ...
- College Admissions Assistance: How to Find Free Resources - U.S. News ... — The top factors in admissions decisions, according to a 2019 report from the National Association for College Admission Counseling, are grades in all courses, grades in college prep courses ...
- 4 College Admissions Essay Editing Services Reviewed — The Write Stuff: 4 College Admissions Essay Editing Services Reviewed College applicants seeking an edge can turn to online services which, for as little as $14, will spruce up their admissions ...
- PDF AI Essay Evaluator: Reviewing College Apps with LLMs — To power our AI-driven college essay evaluation tool, we manually curated a comprehensive dataset from two key sources, ensuring a diverse and insightful collection of es-say examples along with expert assessments. Our primary dataset was sourced from Essays That Worked [3], a rich repository of hundreds of successful Common Application essays.
- How to Write Your College Essay: The Ultimate Step-by-Step Guide — Unit 2 Learn the Types of College Essays. Next, let's make sure you understand the different types of college essays. You'll most likely be writing a Common App or Coalition App essay, and you can also be asked to write supplemental essays for each school.
- Module 5: Supplemental Essays - Admissions Angle — Welcome back! Now that you've covered all things Personal Statement (Module 4), you are ready to explore the supplemental essays. From the "Why Us" to the "Why Major", we have you covered. We encourage you to keep your manuals and workbooks nearby as you continue, as the College Application Lab is comprehensive and holistic!
- College Application Essay - Counselors | College Board — The essay is an opportunity for students to personalize their college application beyond grades and scores. It can also be one of the more nerve-wracking parts of the application process. Help your students learn the skills they need to write an application-worthy essay. What the Essay Can Do for Students
- Advice for Writing Application Essays - Purdue OWL® — Advice for Writing Successful Application Essays When you sit down to write your application essays, there is very little left that you can control. You should have already taken, or retaken, the SAT and ACT, your grades from your first three years of high school are set on your transcript, and your recommenders all have their impressions of ...





