<?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-0669 Saad Ahmed Ijaz</title>
    <description>The latest articles on DEV Community by 24P-0669 Saad Ahmed Ijaz (@24p0669_saadahmedijaz_).</description>
    <link>https://dev.to/24p0669_saadahmedijaz_</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%2F3824401%2Fbdec6b0a-4eff-4e88-9b93-4d66c6bb3a38.png</url>
      <title>DEV Community: 24P-0669 Saad Ahmed Ijaz</title>
      <link>https://dev.to/24p0669_saadahmedijaz_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/24p0669_saadahmedijaz_"/>
    <language>en</language>
    <item>
      <title>MY AI REREARCG BLOG</title>
      <dc:creator>24P-0669 Saad Ahmed Ijaz</dc:creator>
      <pubDate>Sat, 14 Mar 2026 18:44:18 +0000</pubDate>
      <link>https://dev.to/24p0669_saadahmedijaz_/my-ai-rerearcg-blog-20nl</link>
      <guid>https://dev.to/24p0669_saadahmedijaz_/my-ai-rerearcg-blog-20nl</guid>
      <description>&lt;h1&gt;
  
  
  From Search Algorithms to Agentic AI: How Modern AI Systems Are Becoming Smarter
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Artificial Intelligence is rapidly evolving from simple rule-based programs into intelligent systems that can reason, plan, and make decisions autonomously. In our Artificial Intelligence course, we studied concepts such as &lt;strong&gt;AI agents, search algorithms, and problem-solving techniques&lt;/strong&gt;. Recent research shows how these theoretical ideas are now being applied in modern AI systems.&lt;/p&gt;

&lt;p&gt;In this blog, I analyze insights from two recent research papers: &lt;em&gt;“The Rise of Agentic AI: A Review of Definitions, Frameworks, and Challenges (2025)”&lt;/em&gt; and &lt;em&gt;“Research on the A&lt;/em&gt; Algorithm Based on Adaptive Weights (2025).”* These papers highlight two important directions in AI research: the development of &lt;strong&gt;autonomous AI agents&lt;/strong&gt; and the improvement of &lt;strong&gt;search algorithms&lt;/strong&gt; for better decision making.&lt;/p&gt;




&lt;h2&gt;
  
  
  Paper 1: The Rise of Agentic AI
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Goal of the Paper
&lt;/h3&gt;

&lt;p&gt;The main goal of this paper is to explore the concept of &lt;strong&gt;Agentic AI&lt;/strong&gt;, which refers to AI systems that can operate autonomously to achieve specific goals. Unlike traditional AI systems that only respond to commands, agentic systems can &lt;strong&gt;plan tasks, make decisions, and interact with external tools&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The paper reviews different frameworks and architectures used to build AI agents and discusses challenges such as reliability, safety, and evaluation methods.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Ideas from the Paper
&lt;/h3&gt;

&lt;p&gt;The research highlights several core components that define agentic AI systems:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Perception&lt;/strong&gt; – The ability of an AI system to gather information from its environment.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reasoning&lt;/strong&gt; – Analyzing data and determining possible actions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Planning&lt;/strong&gt; – Creating a sequence of steps to achieve a goal.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Action&lt;/strong&gt; – Executing decisions and interacting with external tools or systems.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These components allow AI agents to perform complex tasks such as research assistance, automation, and decision support.&lt;/p&gt;

&lt;h3&gt;
  
  
  Connection to Our AI Course
&lt;/h3&gt;

&lt;p&gt;This concept strongly connects to the &lt;strong&gt;agent models&lt;/strong&gt; we studied in class. In particular, agentic AI systems resemble &lt;strong&gt;goal-based agents&lt;/strong&gt;, which select actions based on achieving a desired outcome.&lt;/p&gt;

&lt;p&gt;However, agentic AI extends this concept further by integrating advanced reasoning, memory, and tool usage. This makes them more capable than simple reflex agents or basic rule-based systems.&lt;/p&gt;




&lt;h2&gt;
  
  
  Paper 2: Improving the A* Search Algorithm
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Goal of the Paper
&lt;/h3&gt;

&lt;p&gt;The second research paper focuses on improving the &lt;strong&gt;A&lt;/strong&gt;* search algorithm, which is one of the most widely used algorithms for pathfinding and problem-solving in artificial intelligence.&lt;/p&gt;

&lt;p&gt;Traditional A* evaluates nodes using the function:&lt;/p&gt;

&lt;p&gt;f(n) = g(n) + h(n)&lt;/p&gt;

&lt;p&gt;Where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;g(n)&lt;/strong&gt; represents the cost from the start node to the current node&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;h(n)&lt;/strong&gt; represents the heuristic estimate of the cost from the current node to the goal&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The algorithm chooses the node with the lowest total cost.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem with the Traditional A* Algorithm
&lt;/h3&gt;

&lt;p&gt;Although A* is efficient and optimal in many cases, it can still expand a large number of nodes in complex search spaces. This can slow down performance in applications such as robotics or navigation systems.&lt;/p&gt;

&lt;h3&gt;
  
  
  Proposed Improvement
&lt;/h3&gt;

&lt;p&gt;The paper proposes an &lt;strong&gt;Adaptive Weighted A&lt;/strong&gt;* approach that dynamically adjusts the heuristic weight during the search process. The new evaluation function becomes:&lt;/p&gt;

&lt;p&gt;f(n) = g(n) + w × h(n)&lt;/p&gt;

&lt;p&gt;Here, &lt;strong&gt;w&lt;/strong&gt; is a weight factor that changes during the search.&lt;/p&gt;

&lt;p&gt;This allows the algorithm to prioritize faster exploration early in the search while maintaining accuracy later. As a result, the algorithm can reach the goal faster while still producing high-quality solutions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Connection to Our AI Course
&lt;/h3&gt;

&lt;p&gt;This research directly relates to the &lt;strong&gt;search algorithms&lt;/strong&gt; we studied in class, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Breadth-First Search (BFS)&lt;/li&gt;
&lt;li&gt;Depth-First Search (DFS)&lt;/li&gt;
&lt;li&gt;Uniform Cost Search (UCS)&lt;/li&gt;
&lt;li&gt;A* Search&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Among these algorithms, A* is particularly powerful because it uses &lt;strong&gt;heuristics&lt;/strong&gt; to guide the search toward the goal efficiently. The improved version proposed in the paper shows how researchers continue to refine these algorithms for real-world applications like &lt;strong&gt;robot navigation and path planning&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Learned from NotebookLM and Manual Reading
&lt;/h2&gt;

&lt;p&gt;After reading the papers manually and exploring them further using NotebookLM, I gained several interesting insights.&lt;/p&gt;

&lt;p&gt;First, manual reading helped me understand the &lt;strong&gt;core ideas and motivation&lt;/strong&gt; behind each research paper. It allowed me to see how researchers identify limitations in existing methods and propose improvements.&lt;/p&gt;

&lt;p&gt;NotebookLM, on the other hand, helped simplify complex sections and summarize key contributions. It also made it easier to understand technical explanations, particularly in the sections discussing algorithm improvements and agent architectures.&lt;/p&gt;

&lt;p&gt;One interesting realization was how modern AI systems combine multiple concepts together. For example, a rescue robot might use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI agents&lt;/strong&gt; for decision making&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search algorithms like A&lt;/strong&gt;* for navigation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Machine learning models&lt;/strong&gt; for perception and environment understanding&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This integration of multiple AI techniques shows how classroom concepts are applied in real-world systems.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why These Ideas Matter
&lt;/h2&gt;

&lt;p&gt;The research discussed in these papers represents an important step in the evolution of artificial intelligence.&lt;/p&gt;

&lt;p&gt;Agentic AI systems are moving toward &lt;strong&gt;autonomous decision-making systems&lt;/strong&gt; that can handle complex tasks with minimal human intervention. At the same time, improvements in search algorithms such as adaptive A* make problem-solving faster and more efficient.&lt;/p&gt;

&lt;p&gt;These advancements will play a significant role in many fields, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Autonomous robotics&lt;/li&gt;
&lt;li&gt;Disaster rescue systems&lt;/li&gt;
&lt;li&gt;Smart assistants&lt;/li&gt;
&lt;li&gt;Navigation and logistics systems&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Video Explanation
&lt;/h2&gt;

&lt;p&gt;In addition to this blog post, I created a &lt;strong&gt;2–3 minute video explaining the key ideas from these papers and what I found interesting while studying them&lt;/strong&gt;. The video provides a short overview of agentic AI and improvements in search algorithms.&lt;/p&gt;

&lt;p&gt;(Video link will be embedded here)&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Recent developments in AI research demonstrate how foundational concepts like &lt;strong&gt;agents and search algorithms&lt;/strong&gt; are evolving into more advanced and practical systems. Agentic AI represents a shift toward autonomous intelligent systems, while improvements to algorithms like A* enhance the efficiency of problem-solving.&lt;/p&gt;

&lt;p&gt;Studying these research papers helped me better understand how theoretical knowledge from our AI course is applied in modern research and real-world applications.&lt;/p&gt;

&lt;p&gt;As AI continues to evolve, these technologies will play a crucial role in shaping the next generation of intelligent systems.&lt;/p&gt;

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