<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 24P-0694 Yasir Ali</title>
    <description>The latest articles on DEV Community by 24P-0694 Yasir Ali (@24p-0694-yasirali).</description>
    <link>https://dev.to/24p-0694-yasirali</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3824409%2F51f2ad54-a83d-431d-bd9c-aad1f49cfe77.jpg</url>
      <title>DEV Community: 24P-0694 Yasir Ali</title>
      <link>https://dev.to/24p-0694-yasirali</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/24p-0694-yasirali"/>
    <language>en</language>
    <item>
      <title>From Textbooks to Real Labs: How Agentic AI &amp; Adaptive A* Are Reshaping Intelligent Systems</title>
      <dc:creator>24P-0694 Yasir Ali</dc:creator>
      <pubDate>Sat, 14 Mar 2026 18:55:27 +0000</pubDate>
      <link>https://dev.to/24p-0694-yasirali/from-textbooks-to-real-labs-how-agentic-ai-adaptive-a-are-reshaping-intelligent-systems-ppp</link>
      <guid>https://dev.to/24p-0694-yasirali/from-textbooks-to-real-labs-how-agentic-ai-adaptive-a-are-reshaping-intelligent-systems-ppp</guid>
      <description>&lt;p&gt;👋 Introduction&lt;br&gt;
Hi! I'm Yasir Ali, a CS student at FAST-NUCES. This blog is part of my AI course assignment where I analyzed two cutting-edge research papers and connected them to core course concepts — Search Algorithms, Intelligent Agents, and CSPs.&lt;/p&gt;

&lt;p&gt;The two papers I chose:&lt;br&gt;
•Paper 1: "The Rise of Agentic AI: A Review of Definitions, Frameworks, and Challenges" (2025)&lt;br&gt;
•Paper 2: "Research on the A* Algorithm Based on Adaptive Weights" (2025)&lt;/p&gt;

&lt;p&gt;I used Google NotebookLM alongside manual reading — a workflow I now recommend to every AI student. Here's what I found.&lt;/p&gt;

&lt;p&gt;📄 Paper 1: The Rise of Agentic AI (2025)&lt;br&gt;
What Is It About?&lt;br&gt;
This paper surveys over 80 definitions of 'AI agents' and proposes a unified framework for Agentic AI — systems that autonomously plan, act, and adapt to achieve long-horizon goals. The authors classify agents along four dimensions: Autonomy, Reactivity, Proactiveness, and Social Ability.&lt;/p&gt;

&lt;p&gt;🔗 Course Connection&lt;br&gt;
In our AI course, we classify agents from Simple Reflex → Model-Based → Goal-Based → Utility-Based. This paper validates that classification and extends it: modern LLM-based agents (like GPT-4 with tools) are utility-based learning agents — just with richer action spaces (web search, code execution, memory).&lt;/p&gt;

&lt;p&gt;The paper's discussion of multi-agent coordination directly mirrors what we study in environment classification: cooperative vs. competitive, single vs. multi-agent. The coordination challenges they describe — deadlocks, redundant actions — are the same problems we analyze in class.&lt;/p&gt;

&lt;p&gt;🧠 Manual Reading vs. NotebookLM&lt;br&gt;
Manual reading gave me the framework — the four dimensions, the taxonomy. But when I asked NotebookLM: "How does this relate to the BDI model?", it surfaced something I missed completely: modern LLM agents simulate Belief-Desire-Intention without explicitly programming it. Beliefs = context window. Desires = system prompt. Intentions = chain-of-thought reasoning. That insight alone was worth the exercise.&lt;/p&gt;

&lt;p&gt;📄 Paper 2: Adaptive Weights in A* (2025)&lt;br&gt;
What Is It About?&lt;br&gt;
Standard A* uses: f(n) = g(n) + h(n). This paper proposes Adaptive Weighted A* (AWA*): f(n) = g(n) + w(n) x h(n), where w(n) changes dynamically based on battery level, obstacle density, and distance to goal. High battery = higher w = faster/greedier. Low battery = lower w = more conservative/optimal.&lt;/p&gt;

&lt;p&gt;🔗 Course Connection&lt;br&gt;
In class we learned: A* is optimal when h is admissible, Greedy Best-First is fast but suboptimal, UCS is optimal but slow. AWA* creates a dynamic dial between these three. When w=1 it's classic A*. When w&amp;gt;1 it approaches Best-First. When w drops, it self-corrects toward UCS. It's not just a performance trick — it's encoding rational decision-making under resource constraints.&lt;/p&gt;

&lt;p&gt;Results: AWA* finds paths 23% faster than standard A* on dynamic grids while staying within 5% of optimal cost. For time-critical disaster rescue, this tradeoff is exactly what's needed.&lt;/p&gt;

&lt;p&gt;🧠 Manual Reading vs. NotebookLM&lt;br&gt;
The weight update math (exponential decay formulas) was hard to parse manually. NotebookLM reframed it perfectly: the weight function encodes urgency. High urgency (low battery) = trust actual cost more. Low urgency = trust heuristic more. That reframing made the whole paper click.&lt;/p&gt;

&lt;p&gt;🎯 Synthesis: How These Papers Connect&lt;br&gt;
Concept Agentic AI Paper    Adaptive A* Paper   Our Course&lt;br&gt;
Decision under constraint   Trust-control tradeoff  Adaptive weight w(n)    Utility-based agents&lt;br&gt;
Dynamic environments    Real-time replanning    Dynamic weight update   Dynamic env classification&lt;br&gt;
Search strategy Goal-based planning f(n) = g + w·h A*, UCS, BFS comparison&lt;/p&gt;

&lt;p&gt;💡 Personal Reflection&lt;br&gt;
Before this assignment, I thought A* was a solved problem. These papers showed me that foundational algorithms have active research frontiers. The adaptive weight idea is simple in hindsight but profound in impact.&lt;/p&gt;

&lt;p&gt;More importantly: using NotebookLM alongside manual reading was a genuinely better workflow than either alone. Manual reading built intuition. NotebookLM surfaced cross-paper connections and answered 'why does this matter?' questions that papers rarely answer directly.&lt;/p&gt;

&lt;p&gt;My advice to fellow AI students: Read the paper first. Then use tools to go deeper. Never the other way around.&lt;/p&gt;

&lt;p&gt;📚 References&lt;br&gt;
•"The Rise of Agentic AI: A Review of Definitions, Frameworks, and Challenges" — arXiv 2025&lt;br&gt;
•"Research on the A* Algorithm Based on Adaptive Weights" — 2025&lt;br&gt;
•Russell &amp;amp; Norvig — Artificial Intelligence: A Modern Approach, 4th Edition&lt;br&gt;
•Google NotebookLM — used for paper analysis&lt;/p&gt;

&lt;p&gt;Written by Yasir Ali | Roll No: [24P-0694] | FAST-NUCES | AI Course&lt;br&gt;
Tagging: @raqeebr (Hashnode) | &lt;a class="mentioned-user" href="https://dev.to/raqeeb_26"&gt;@raqeeb_26&lt;/a&gt; (Dev.to)&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>algorithms</category>
      <category>computerscience</category>
    </item>
  </channel>
</rss>
